.news-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 30px 0;
}

.news-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.news-item:not(:has(.news-media)) {
  grid-template-columns: 1fr;
}

.news-media {
  position: relative;
}

.news-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--background-alt);
}

.news-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.news-slide.is-active {
  opacity: 1;
}

.news-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(60, 60, 60, 0.55);
  color: #fff;
  font-size: 26px;
  line-height: 44px;
  cursor: pointer;
  padding: 0;
}

.news-nav:hover {
  background: rgba(20, 60, 100, 0.8);
}

.news-prev {
  left: 10px;
}

.news-next {
  right: 10px;
}

.news-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.news-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
}

.news-dot.is-active {
  background: #1f6f9f;
}

.news-title {
  color: #1f3f8f;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 12px;
  text-align: left;
}

[data-dark=true] .news-title {
  color: var(--secondary);
}

.news-text p {
  margin: 6px 0;
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 700px) {
  .news-item,
  .news-item:not(:has(.news-media)) {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/*# sourceMappingURL=news.css.map */