/* ================= GENERAL STYLES ================= */
.section-padding {
  padding-bottom: 60px;
}
.headline-link {
  text-decoration: none;
  color: var(--text-black);
  transition: color 0.2s ease;
}
.headline-link:hover {
  color: var(--bd-red);
}

.news-img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  background-color: #f0f0f0;
  aspect-ratio: 16 / 10;
}

.title-lg {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  margin: 15px 0 10px;
}
.title-md {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  margin: 12px 0 10px;
}
.excerpt {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 0;
}

.editorial-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 30px 0;
  border: none;
}

/* ================= HEALTH SECTION SPECIFIC ================= */
.v-divider {
  border-right: 1px solid var(--border-color);
  padding-right: 25px;
}
.v-padding {
  padding-left: 25px;
}
.news-list-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f2f2f2;
}
.news-list-item:last-child {
  border-bottom: none;
}
.list-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
  margin: 0;
}
.img-list {
  width: 150px;
  flex-shrink: 0;
}

/* ================= LIFESTYLE SECTION SPECIFIC ================= */
.ls-col-divider {
  border-right: 1px solid var(--border-color);
  padding-right: 15px;
}
.ls-col-padding {
  padding-left: 15px;
}
.ls-item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 12px 0 8px;
}
.ls-item-excerpt {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

/* Responsive */
@media (max-width: 991px) {
  .v-divider,
  .ls-col-divider {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-right: 0;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .v-padding,
  .ls-col-padding {
    padding-left: 0;
  }
  .news-list-item {
    padding-bottom: 20px;
  }
}
