.seminar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.product-item {
  border: 1px solid #ddd;
  padding: 16px;
  
  background: #fff;
  border-radius: 8px;
}

.product-image img {
  width: 100%;
  height: auto;

  margin: 0 auto 16px;
  display: block;
}

.product-title {
  font-size: 18px;
  margin: 8px 0;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin: 8px 0 16px;
  text-align: left;
  line-clamp: 5;
  display: -webkit-box; /* Enable the WebKit box model */
  -webkit-line-clamp: 5; /* Number of lines to show */
  -webkit-box-orient: vertical; /* Set the box orientation */
  overflow: hidden; /* Hide overflowing content */
  text-overflow: ellipsis; /* Add ellipsis (...) for clipped text */
}

.view-more-button {
  display: inline-block;
  padding: 10px 16px;
  background-color: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.view-more-button:hover {
  background-color: #005177;
}
