.article-images-list .article-image {
  margin-bottom: 1.5rem;
}

/* Mobile-first typography */
.article-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1E1E1E;
}

.article-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #1E1E1E;
}

.article-text a {
  color: #3366CC;
  text-decoration: none;
}

.article-text a:hover {
  text-decoration: underline;
}

/* Section Divider */
.section-divider {
  max-width: 600px;
  border: none;
  border-top: 1px solid #3366CC;
  opacity: 1;
}

/* News Slider Section - Mobile-first */
.news-slider-section {
  max-width: 1200px !important;
  margin: 0 auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.slider-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1E1E1E;
}

.news-slider {
  padding: 2px;
}

.news-slider-track {
  transition: transform 0.4s ease-in-out;
}

/* Mobile-first: 2 cards per row */
.news-card {
  min-width: calc(100% - 12px);
  flex: 0 0 calc(100% - 12px);
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
}

.news-card:hover {
  border-color: #3366CC;
  box-shadow: 0 2px 8px rgba(51, 102, 204, 0.15);
  text-decoration: none;
}

.news-card:focus {
  outline: 2px solid #3366CC;
  outline-offset: 2px;
  border-color: #3366CC;
}

.news-card:focus:not(:focus-visible) {
  outline: none;
}

.news-card:focus-visible {
  outline: 2px solid #3366CC;
  outline-offset: 2px;
}

.news-card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 4px;
  background-color: #E3E3E3;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  /* 18px */
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1E1E1E;
  margin: 0;
}

.news-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  /* fs-6 */
  font-weight: 400;
  line-height: 1.4;
  color: #757575;
  margin: 0;
  /* Multi-line ellipsis */
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Slider Navigation Buttons - Mobile-first */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #3366CC;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #FFFFFF;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-nav:hover {
  background: #2855AA;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-nav-prev {
  left: 0.5rem;
  /* 8px */
}

.slider-nav-next {
  right: 0.5rem;
  /* 8px */
}

.slider-nav svg {
  width: 28px;
  height: 28px;
}

.slider-nav svg path {
  stroke: #FFFFFF;
}

/* Tablet landscape and up (lg: 992px) */
@media (min-width: 992px) {

  /* Typography scales up */
  .article-heading,
  .slider-heading {
    font-size: 1.5rem;
    /* fs-4 */
  }

  .news-card-title {
    font-size: 1.375rem;
    /* 22px */
  }

  /* News cards: 3 columns */
  .news-card {
    min-width: calc(33.333% - 16px);
    flex: 0 0 calc(33.333% - 16px);
  }

  /* Slider nav: larger buttons */
  .slider-nav {
    width: 32px;
    height: 32px;
  }

  .slider-nav svg {
    width: 32px;
    height: 32px;
  }

  .slider-nav-prev {
    left: 1rem;
    /* 16px */
  }

  .slider-nav-next {
    right: 1rem;
    /* 16px */
  }
}

/* Large desktop and up (xxl: 1400px) */
@media (min-width: 1400px) {
  /* Optional: Add any enhancements for extra-large screens */
  /* Could increase spacing, font sizes, or other refinements */
}
