.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Main content */
.main__wrapper {
  margin-top: calc(var(--header-height) + 7rem);
  padding-bottom: 4rem;
}

.news-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.news__header {
  text-align: center;
  margin-bottom: 3rem;
}

.news__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.news__date {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--color-text-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  background-color: var(--color-hover-2);
}

.news__description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.75rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* Slideshow */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 500px;
  margin-bottom: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
  font-size: 1rem;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-border);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-border);
}

/* News content */
.news__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.news__article {
  line-height: 1.8;
}

.article__subtitle {
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border);
}

.article__text {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-text);
}

.article__list {
  margin: 1.5rem 0 2rem;
  list-style: none;
}

.article__list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  background-color: var(--color-hover-2);
  padding: 1rem;
  border-radius: 8px;
  transition: transform var(--transition-speed);
}

.article__list li:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.list__icon {
  color: var(--color-border);
  font-size: 1.3rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.list__text {
  font-size: 1.5rem;
}

.list__text strong {
  font-weight: 600;
  color: var(--color-primary);
}

.news__image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.grid__item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed);
}

.grid__item:hover {
  transform: translateY(-10px);
}

.grid__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.article__quote {
  background-color: var(--color-hover-2);
  padding: 2rem;
  border-left: 4px solid var(--color-border);
  margin: 2rem 0;
  position: relative;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.quote__icon {
  font-size: 2rem;
  color: var(--color-border);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.quote__text {
  font-style: italic;
  font-size: 2rem;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.quote__author {
  text-align: right;
  font-weight: 600;
  color: var(--color-primary);
}

/* Responsive styles */

@media screen and (max-width: 992px) {
  .news__title {
    font-size: 2.2rem;
  }

  .slideshow-container {
    height: 400px;
  }

  .news__image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .news__title {
    font-size: 1.8rem;
  }

  .news__description {
    font-size: 1.1rem;
  }

  .slideshow-container {
    height: 300px;
  }

  .article__subtitle {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  .news__title {
    font-size: 1.5rem;
  }

  .slideshow-container {
    height: 250px;
  }

  .news__image-grid {
    grid-template-columns: 1fr;
  }

  .article__list li {
    flex-direction: column;
  }

  .list__icon {
    margin-bottom: 0.5rem;
  }
}
