/* 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;
  }
}

/* ================= FILTER SECTION ================= */
.filter-container {
  background-color: #ebf1f5;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
}

.filter-label {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-label i {
  color: var(--bd-red);
}

.form-select-custom {
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
  padding: 8px 12px;
  color: #333;
  cursor: pointer;
}
.form-select-custom:focus {
  box-shadow: none;
  border-color: var(--bd-blue);
}

.btn-search {
  background-color: #0d47a1;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 8px 20px;
  width: 100%;
  transition: 0.3s;
}
.btn-search:hover {
  background-color: #002171;
  color: white;
}

/* ================= TYPOGRAPHY ================= */
.news-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #000;
}
.news-title a:hover {
  color: var(--bd-red);
}

/* Sub-heading color styles */
.text-blue-part {
  color: var(--bd-blue);
}
.text-black-part {
  color: var(--text-black);
}

.news-excerpt {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 0;
}

.img-fluid-custom {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  background-color: #eee;
}

/* ================= COLUMN STYLES ================= */
.col-divider {
  border-right: 1px solid var(--border-color);
  padding-right: 20px;
}
.col-padding-left {
  padding-left: 20px;
}

/* Column 2 Item Style */
.col2-news-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.col2-news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.col2-header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}
.col2-title {
  flex: 1;
}
.col2-thumb {
  width: 150px;
  flex-shrink: 0;
}

/* Column 3 Item Style */
.col3-news-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  min-height: 110px; /* Adjusting height to align with Col 2 */
}
.col3-title {
  flex: 1;
}
.col3-thumb {
  width: 120px;
  flex-shrink: 0;
}

/* Ad Box */
.ad-box-rect {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  color: #aaa;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .col-divider {
    border-right: none;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .col-padding-left {
    padding-left: 0;
  }
}
