/* News listing + detail. Tokens only. */

.news-page .eyebrow { margin-top: 24px; }
.news-listing,
#deniz-urunleri-dunyasindan { min-width: 0; }

/* WoT manset shape — corporate Enlem chrome. No tabloid, no glass, no waves. */
.news-slider {
  min-width: 0;
  max-width: 100%;
}
.news-slider:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}
.news-slider__viewport {
  position: relative;
  min-width: 0;
}
.news-slider__stage {
  position: relative;
  background: var(--navy);
  border: 1px solid var(--border);
  overflow: hidden;
}
.news-slider__slide {
  display: none;
  position: relative;
  min-width: 0;
}
.news-slider__slide.is-active {
  display: block;
}
.news-slider__link {
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  background: var(--navy);
}
.news-slider__link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 1200;
  object-fit: contain;
  object-position: center;
  background: var(--navy);
}
.news-slider__caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  background: var(--navy);
  color: #fff;
}
.news-slider__title {
  display: block;
  font-family: var(--font);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 28ch;
}
.news-slider__summary {
  display: block;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  max-width: 62ch;
}
.news-slider__credit {
  margin: 0;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 0;
}
.news-slider__arrow {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.news-slider__arrow--prev { left: 12px; }
.news-slider__arrow--next { right: 12px; }
.news-slider__arrow:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}
.news-slider__pager {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 16px 2px 4px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.news-slider__page {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}
.news-slider__page.is-current {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}
.news-slider__page:hover:not(.is-current) {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

@media (max-width: 800px) {
  .news-slider__caption {
    padding: 12px 16px;
  }
  .news-slider__title { max-width: none; }
  .news-slider__summary {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-slider__arrow--prev { left: 8px; }
  .news-slider__arrow--next { right: 8px; }
}
@media (max-width: 390px) {
  .news-slider__page {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
}
.news-card__figure {
  margin: 0;
}
.news-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  text-decoration: none;
}
.news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news-card__body { padding: 16px 0 0; }
.news-card__body h3 { margin: 0 0 8px; }
.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}
.news-card__cat {
  font-weight: 600;
  color: var(--brand-primary);
}
.news-card__summary {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--text);
}
.news-card__source {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.news-card__cta {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: var(--brand-primary);
}
.news-card__cta:hover { color: var(--text); }

.news-detail__intro h1 { max-width: 22ch; }
.news-detail__date {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--text-secondary);
}

.news-hero {
  margin: 32px 0 0;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
}
.news-hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.news-credit {
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.news-body {
  max-width: 62ch;
  margin: 32px 0 0;
}
.news-body h2 {
  margin: 32px 0 12px;
  font-size: 22px;
  max-width: none;
}
.news-body ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}
.news-body blockquote {
  margin: 24px 0 0;
  padding: 12px 0 0 16px;
  border-left: 2px solid var(--border);
  color: var(--text-secondary);
}
.news-body blockquote p { margin: 0; }

.news-source {
  max-width: 62ch;
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.news-source h2 {
  font-size: 22px;
  max-width: none;
}

@media (max-width: 1100px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-detail__intro h1 { font-size: 36px; }
}
