/* conference List Section */
.event-card-row {
  margin-bottom: -24px;
}
.event-card-row .event-card-column {
  margin-bottom: 24px;
}
.event-card {
  border-radius: 10px;
  overflow: hidden;
}
.event-img-container {
  overflow: hidden;
  border-radius: 12px;
  display: block;
}

.event-img-container img {
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.event-card:hover .event-img-container img {
  scale: 1.2;
}

.event-card-detail {
  padding: 16px 0;
}
.event-date {
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  margin-bottom: 0;
  color: #565656;
}
.event-name {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news-content {
  margin: 4px 0 16px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* Responsive */
@media (max-width: 767px) {
  .text-sm {
    font-size: 14px;
    line-height: 20px;
  }
  .event-location {
    gap: 4px;
    margin: 2px 0 8px;
  }
  .underline-link {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 575px) {
  .our-product-breadcrumb {
    background-position: top right -300px;
  }

  .event-card-detail {
    padding: 12px;
  }
  .event-date {
    margin-bottom: 4px;
  }
  .event-location {
    gap: 0;
    font-size: 12px;
    line-height: 18px;
    margin: 4px 0;
  }
  .event-location::before {
    scale: 0.9;
  }
}
