/* Custom Container 1376px */
@media (min-width: 1400px) {
  .container-custom {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

@media (max-width: 1399px) {
  .container-custom {
    width: 100%;
    padding: 0 15px;
  }
}

/* ================= LIFESTYLE SECTION STYLES ================= */

/* Section Wrapper with Background */
.lifestyle-wrapper {
  height: 100%;
  border-radius: 4px;
  border-bottom: 2px solid #ccc;
}

/* Logo Header Style (Full Width, No CSS Border) */
.logo-header-box {
  text-align: center;
  padding: 0;
  /* Remove padding */
  margin-bottom: 5px;
  border: none;
  /* Remove borders as logo has them */
  width: 100%;
}

.section-logo {
  width: 100%;
  /* Full Width */
  height: auto;
  display: block;
}

/* Images */
.news-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  background-color: #ddd;
  margin-bottom: 10px;
}

/* Typography */
.title-md {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #000;
}

.title-sm {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
  color: #000;
}

.excerpt {
  font-size: 16px;
  color: #333;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Left Sub-Column (Big News) */
.main-sub-col {
  padding-right: 15px;
  /* Reduced padding */
  border-right: 1px solid var(--border-color);
  /* Right Divider */
}

/* Right Sub-Column (List) */
.list-sub-col {
  padding-left: 15px;
  /* Reduced padding */
}

/* List Item Style */
.list-news-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  /* Reduced gap */
  align-items: flex-start;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  /* Bottom Divider */
}

.list-news-item:last-child {
  border-bottom: none;
}

.list-title {
  flex: 1;
}

.list-thumb {
  width: 110px;
  flex-shrink: 0;
}

.list-thumb img {
  margin-bottom: 0;
  aspect-ratio: 16/10;
}

/* Bottom Divider for Main Col - REMOVED per instruction */
/* .main-col-divider {
            border-bottom: 1px solid var(--border-color);
            margin-top: 15px;
            padding-bottom: 15px; 
        } */

/* Responsive */
@media (max-width: 991px) {
  .lifestyle-wrapper {
    margin-bottom: 30px;
  }

  .main-sub-col {
    border-right: none;
    padding-right: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
  }

  .list-sub-col {
    padding-left: 0;
  }
}
