/* News cards: aspect-ratio image + equal-height layout */
.news_page .row > [class*="col-"] {
  display: flex;
}

.news_page .v2_bnc_news_item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 0;
  background: #fff;
}

.news_page .v2_bnc_news_item:hover h3 a {
  color: #1db4c3 !important;
}

.news_page .v2_bnc_news_item_img {
  position: relative;
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 0;
  background: #eef2f3;
}

.news_page .v2_bnc_news_item_img a {
  display: block;
  width: 100%;
  height: 100%;
}

.news_page .v2_bnc_news_item_img img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 !important;
  transition: transform 0.35s ease;
}

.news_page .v2_bnc_news_item:hover img {
  transform: scale(1.06);
}

.news_page .v2_bnc_news_item_content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 12px 14px 14px;
}

.news_page .v2_bnc_news_item_content h3 a {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 0;
  line-height: 1.4;
}

.news_page .v2_bnc_news_item_content .news_short {
  font-size: 14px;
  color: #696969;
  line-height: 1.5;
  min-height: 0 !important;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news_page .v2_bnc_news_item_content .news_short:empty {
  display: none;
}

.news_page .v2_bnc_news_item_content .view_more {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
}

.news_page .v2_bnc_news_item_content .view_more a {
  color: #fff;
  display: inline-block;
  background: #1db4c3;
  padding: 8px 14px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.v2_bnc_news .v2_bnc_news_item_img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 9;
  background: #eef2f3;
}

.v2_bnc_news .v2_bnc_news_item_img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .news_page .v2_bnc_news_item_content .news_short {
    display: none;
  }
}
