.news2-hero {
  padding: 28px 15px 12px;
}

.news2-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.news2-hero-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.news2-hero-card:hover {
  box-shadow: 0 8px 28px rgba(57, 153, 152, 0.18);
  transform: translateY(-2px);
}

.news2-hero-thumb {
  display: block;
  overflow: hidden;
}

.news2-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.news2-hero-card:hover .news2-hero-thumb img {
  transform: scale(1.04);
}

.news2-hero-card--lead .news2-hero-thumb {
  height: 320px;
}

.news2-hero-card:not(.news2-hero-card--lead) .news2-hero-thumb {
  height: 200px;
}

.news2-hero-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news2-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  background: #399998;
  border-radius: 3px;
  line-height: 1.5;
  text-decoration: none;
}

.news2-tag--sm {
  font-size: 10px;
  padding: 2px 8px;
  margin-bottom: 2px;
}

.news2-hero-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

.news2-hero-card--lead .news2-hero-title {
  font-size: 24px;
}

.news2-hero-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

.news2-hero-title a:hover {
  color: #399998;
}

.news2-hero-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.news2-main {
  padding: 8px 15px 40px;
}

.news2-ad-slot {
  margin: 8px 0 28px;
  text-align: center;
}

.news2-section {
  margin-bottom: 36px;
}

.news2-section-title {
  position: relative;
  margin: 0 0 22px;
  padding: 0 0 12px 14px;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  border-bottom: 2px solid #eee;
}

.news2-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 22px;
  background: #399998;
  border-radius: 2px;
}

.news2-card-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.news2-card-grid .td-block-span4 {
  float: none;
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
  min-height: auto !important;
  max-height: none !important;
  overflow: visible;
  box-sizing: border-box;
}

.news2-card {
  height: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.news2-card:hover {
  box-shadow: 0 6px 20px rgba(57, 153, 152, 0.14);
  border-color: #d4ecec;
}

.news2-card .td-module-image {
  overflow: hidden;
}

.news2-card .td-module-image img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.news2-card:hover .td-module-image img {
  transform: scale(1.05);
}

.news2-card-body {
  padding: 14px 16px 18px;
}

.news2-card .entry-title.td-module-title {
  margin: 6px 0 8px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.news2-card .entry-title.td-module-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

.news2-card .td-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: #777;
  margin: 0;
}

.td-category-grid {
  background: #f8fafa;
}

.td-main-content-wrap {
  background: #f8fafa;
}

@media screen and (max-width: 1018px) {
  .news2-hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news2-hero-card--lead .news2-hero-thumb,
  .news2-hero-card:not(.news2-hero-card--lead) .news2-hero-thumb {
    height: 220px;
  }

  .news2-card-grid .td-block-span4 {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .news2-hero {
    padding: 16px 15px 8px;
  }

  .news2-hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news2-hero-card--lead .news2-hero-thumb {
    height: 200px;
  }

  .news2-hero-card:not(.news2-hero-card--lead) .news2-hero-thumb {
    height: 180px;
  }

  .news2-hero-title {
    font-size: 18px;
  }

  .news2-hero-card--lead .news2-hero-title {
    font-size: 20px;
  }

  .news2-section-title {
    font-size: 19px;
  }

  .news2-card-grid .td-block-span4 {
    width: 100%;
    margin-bottom: 16px;
  }

  .news2-card .td-module-image img {
    height: 200px;
  }
}
