/* NL News - NewsEdge style theme (professional orange) */
:root {
  --nl-orange: #c45c26;
  --nl-orange-hover: #a84d1f;
  --nl-header-bg: #1a1a1a;
  --nl-text: #1a1a1a;
  --nl-text-muted: #4b5563;
  --nl-border: #e5e7eb;
  --nl-card-shadow: 0 1px 3px rgba(0,0,0,.08);
  --nl-card-shadow-hover: 0 4px 12px rgba(0,0,0,.12);
  --max-width: 1280px;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; line-height: 1.5; color: var(--nl-text); background: #fff; }

/* ========== HEADER ========== */
.news-header {
  background: var(--nl-header-bg);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
}
.news-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
}
.news-logo-title { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.news-logo-tagline { font-size: 0.75rem; color: rgba(255,255,255,.7); margin-top: -2px; }
.news-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.news-nav a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-nav a:hover { color: #fff; }
.news-nav a.active { color: var(--nl-orange); }
.news-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-header-actions a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
}
.news-header-actions a:hover { color: #fff; }
.news-header-actions .sep { width: 1px; height: 20px; background: rgba(255,255,255,.3); }
.news-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* Search: expandable box */
.news-search-wrap { position: relative; }
.news-search-toggle {
  background: none; border: none; color: rgba(255,255,255,.9); padding: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.news-search-toggle:hover { color: #fff; }
.news-search-drop {
  position: absolute; top: 100%; right: 0; margin-top: 8px; width: 0; overflow: hidden; opacity: 0; transition: width .25s ease, opacity .2s ease; z-index: 110;
}
.news-search-drop.is-open { width: min(420px, 90vw); opacity: 1; }
.news-search-form {
  display: flex; background: #fff; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,.2); overflow: hidden;
}
.news-search-input {
  flex: 1; border: none; padding: 14px 18px; font-size: 1rem; font-family: inherit; min-width: 0;
}
.news-search-input:focus { outline: none; }
.news-search-submit {
  background: var(--nl-orange); color: #fff; border: none; padding: 14px 20px; font-weight: 600; font-size: 0.875rem; cursor: pointer; white-space: nowrap;
}
.news-search-submit:hover { background: var(--nl-orange-hover); }

/* Weather link in header */
.news-weather-link {
  display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.9); text-decoration: none; font-size: 0.875rem;
}
.news-weather-link:hover { color: #fff; }
.news-weather-icon { font-size: 1.1rem; }
.news-weather-label { display: none; }
@media (min-width: 640px) { .news-weather-label { display: inline; } }

/* Hamburger: visible only on mobile */
.news-menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px;
  background: none; border: none; color: #fff; cursor: pointer;
}
.news-menu-toggle span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 1px; transition: transform .2s ease, opacity .2s ease; }
.news-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.news-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.news-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== CONTAINER ========== */
.news-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TICKER ========== */
.news-ticker {
  background: #fff;
  border-bottom: 1px solid var(--nl-border);
  padding: 12px 0;
}
.news-ticker-inner {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.news-ticker-btn {
  background: var(--nl-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  flex-shrink: 0;
  border: none;
  cursor: default;
}
.news-ticker-content {
  flex: 1;
  min-width: 0;
  margin-left: 16px;
  overflow: hidden;
}
.news-ticker-scroll {
  display: flex;
  white-space: nowrap;
  animation: news-ticker 28s linear infinite;
}
.news-ticker-scroll:hover { animation-play-state: paused; }
.news-ticker-scroll a {
  display: inline-block;
  margin-right: 32px;
  color: var(--nl-text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
}
.news-ticker-scroll a:hover { color: var(--nl-orange); }
@keyframes news-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== INFO BAR ========== */
.news-infobar {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  padding: 8px 0;
}
.news-infobar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-size: 0.875rem;
  color: var(--nl-text-muted);
}
.news-infobar span { display: inline-flex; align-items: center; gap: 6px; }
.news-infobar svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--nl-orange); }

/* ========== HERO GRID ========== */
.news-hero {
  background: #fff;
  padding: 32px 0 40px;
}
.news-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1023px) {
  .news-hero-grid { grid-template-columns: 1fr; }
}
.news-hero-main {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e7eb;
  min-height: 420px;
  text-decoration: none;
  color: #fff;
}
.news-hero-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.news-hero-main:hover img { transform: scale(1.03); }
.news-hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 40%, transparent 70%);
}
.news-hero-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--nl-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}
.news-hero-main-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}
.news-hero-main-caption .meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 8px;
}
.news-hero-main-caption h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-hero-main:hover .news-hero-main-caption h2 { color: var(--nl-orange); }

.news-hero-right {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 20px;
}
.news-hero-top {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e7eb;
  aspect-ratio: 21/10;
  text-decoration: none;
  color: #fff;
}
.news-hero-top img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.news-hero-top:hover img { transform: scale(1.03); }
.news-hero-top .news-hero-main-overlay { background: linear-gradient(to top, rgba(0,0,0,.8), transparent 50%); }
.news-hero-tag.blue { background: #2563eb; }
.news-hero-tag.green { background: #059669; }
.news-hero-tag.pink { background: #db2777; }
.news-hero-tag.orange { background: var(--nl-orange); }
.news-hero-top-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; }
.news-hero-top-caption h3 { margin: 0; font-size: 1.125rem; font-weight: 700; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-hero-top:hover .news-hero-top-caption h3 { color: var(--nl-orange); }

.news-hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.news-hero-small {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e7eb;
  aspect-ratio: 4/3;
  text-decoration: none;
  color: #fff;
}
.news-hero-small img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.news-hero-small:hover img { transform: scale(1.03); }
.news-hero-small .news-hero-main-overlay { background: linear-gradient(to top, rgba(0,0,0,.8), transparent 50%); }
.news-hero-small-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; }
.news-hero-small-caption h3 { margin: 0; font-size: 0.875rem; font-weight: 700; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-hero-small:hover .news-hero-small-caption h3 { color: var(--nl-orange); }

/* ========== AD BANNER ========== */
.news-ad-banner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 24px;
}
.news-ad-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #4169e1;
  border-radius: 8px;
  padding: 0 32px;
  min-height: 180px;
  gap: 24px;
}
.news-ad-banner-text { color: #fff; font-weight: 700; font-size: 1.5rem; line-height: 1.3; }
.news-ad-banner-text span { display: block; }
.news-ad-banner-btn {
  background: #fff;
  color: #4169e1;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.news-ad-banner-label { color: #fff; font-size: 0.875rem; text-align: right; }
.news-ad-banner-label span { display: block; }
.news-ad-banner--category { margin-top: 40px; padding-top: 0; }
.news-ad-banner-custom { width: 100%; min-height: 90px; }
@media (max-width: 767px) {
  .news-ad-banner-inner { flex-wrap: wrap; padding: 24px; justify-content: center; text-align: center; }
  .news-ad-banner-label { text-align: center; }
}

.news-photo-gallery { padding: 40px 0; background: #f9fafb; }
.news-photo-gallery-title { font-size: 1.25rem; margin: 0 0 20px; font-weight: 700; color: var(--nl-text); }
.news-photo-gallery-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.news-photo-gallery-badge {
  background: #2563eb;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border-radius: 4px;
  flex-shrink: 0;
}
.news-photo-gallery-line {
  flex: 1;
  border-bottom: 2px dotted #2563eb;
  opacity: 0.8;
}
.news-photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .news-photo-gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.news-photo-gallery-item { margin: 0; }
.news-photo-gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; display: block; }
.news-photo-gallery-item figcaption,
.news-photo-gallery-caption { display: block; font-size: 0.8125rem; color: var(--nl-text-muted); padding: 8px 0 0; }
.news-photo-gallery-item:hover img { opacity: 0.92; }
.news-photo-gallery-cat-link:hover { background: #e2e8f0 !important; color: var(--nl-orange); }
.news-photo-gallery-cat-box:hover { box-shadow: 0 4px 12px rgba(0,0,0,.1); border-color: var(--nl-orange); color: var(--nl-orange); }

/* ========== WORLD SECTION (1 large + 6 small grid, red header) ========== */
.news-world {
  padding: 0 0 40px;
  background: #fff;
}
.news-world-header {
  background: #c41e3a;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  margin-bottom: 0;
}
.news-world-header a { color: inherit; text-decoration: none; }
.news-world-header a:hover { color: rgba(255,255,255,.9); }
.news-world-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-top: none;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.news-world-main {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid #e5e7eb;
}
.news-world-main:hover .news-world-main-title { color: var(--nl-orange); }
.news-world-main-image {
  display: block;
  aspect-ratio: 16/10;
  background: #e5e7eb;
  overflow: hidden;
  margin-bottom: 12px;
}
.news-world-main-image img { width: 100%; height: 100%; object-fit: cover; }
.news-world-main-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-world-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
}
.news-world-card {
  display: flex;
  flex-direction: column;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
}
.news-world-card:nth-child(odd) { border-left: none; }
.news-world-card:nth-child(5),
.news-world-card:nth-child(6) { border-bottom: none; }
.news-world-card:hover .news-world-card-title { color: var(--nl-orange); }
.news-world-card-image {
  display: block;
  aspect-ratio: 16/10;
  background: #e5e7eb;
  overflow: hidden;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.news-world-card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-world-card-title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
@media (max-width: 1023px) {
  .news-world-grid { grid-template-columns: 1fr; }
  .news-world-main { border-right: none; border-bottom: 1px solid #e5e7eb; }
  .news-world-side { grid-template-rows: auto; }
  .news-world-card:nth-child(5),
  .news-world-card:nth-child(6) { border-bottom: 1px solid #e5e7eb; }
  .news-world-card:nth-child(odd) { border-left: 1px solid #e5e7eb; }
}
@media (max-width: 639px) {
  .news-world-side { grid-template-columns: repeat(2, 1fr); }
  .news-world-card:nth-child(odd) { border-left: 1px solid #e5e7eb; }
}

/* ========== CATEGORY SECTION (Latest News style per category) ========== */
.news-category-section { padding: 40px 0 32px; }
.news-category-section:nth-child(even) { background: #f9fafb; }
.news-category-section .news-latest-head { margin-bottom: 20px; }

/* ========== LATEST NEWS ========== */
.news-latest {
  background: #f9fafb;
  padding: 40px 0 48px;
}
.news-latest-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.news-latest-badge {
  background: var(--nl-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border-radius: 4px;
  flex-shrink: 0;
}
.news-latest-line {
  flex: 1;
  border-bottom: 2px dotted var(--nl-orange);
  opacity: .8;
}
.news-latest-arrows {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.news-latest-arrows button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--nl-border);
  background: #fff;
  color: var(--nl-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-latest-arrows button:hover { border-color: var(--nl-orange); color: var(--nl-orange); }

.news-latest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) { .news-latest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .news-latest-grid { grid-template-columns: 1fr; } }

.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--nl-card-shadow);
  border: 1px solid #f3f4f6;
  transition: box-shadow .2s ease;
}
.news-card:hover { box-shadow: var(--nl-card-shadow-hover); }
.news-card-image {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  background: #e5e7eb;
  overflow: hidden;
}
.news-card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--nl-orange);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.news-card-body { padding: 16px; }
.news-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-title a { color: var(--nl-text); text-decoration: none; }
.news-card-title a:hover { color: var(--nl-orange); }
.news-card-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--nl-text-muted);
}
.news-card-meta span { display: inline-flex; align-items: center; gap: 4px; }
.news-card-meta svg { width: 14px; height: 14px; color: var(--nl-orange); flex-shrink: 0; }
.news-card-meta a { color: inherit; text-decoration: none; }
.news-card-meta a:hover { color: var(--nl-text); }

/* ========== CATEGORY PAGE ========== */
.news-category-page { padding: 32px 0 56px; background: #f9fafb; min-height: 40vh; }
.news-category-breadcrumb {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nl-text-muted);
  margin-bottom: 20px;
}
.news-category-breadcrumb a { color: var(--nl-text-muted); text-decoration: none; }
.news-category-breadcrumb a:hover { color: var(--nl-orange); }
.news-category-breadcrumb-sep { margin: 0 10px; opacity: .5; }
.news-category-breadcrumb-current { color: var(--nl-text); font-weight: 600; }

.news-category-hero { margin-bottom: 36px; }
.news-category-hero-title {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--nl-text);
}
.news-category-hero-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--nl-orange);
  border-radius: 2px;
  margin-top: 14px;
}
.news-category-hero-lead {
  margin: 12px 0 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--nl-text-muted);
  max-width: 36em;
}

.news-category-empty {
  background: #fff;
  border-radius: 12px;
  padding: 48px 24px;
  text-align: center;
  color: var(--nl-text-muted);
  box-shadow: var(--nl-card-shadow);
}

.news-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) { .news-category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .news-category-grid { grid-template-columns: repeat(2, 1fr); } }
.news-category-card-excerpt,
.news-category-grid .news-card-body .news-category-card-excerpt {
  margin: 8px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--nl-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-category-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.news-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-pagination-item a,
.news-pagination-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--nl-text);
  background: #fff;
  border: 1px solid var(--nl-border);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.news-pagination-item a:hover {
  border-color: var(--nl-orange);
  color: var(--nl-orange);
  background: #fffaf7;
}
.news-pagination-item.news-pagination-active span {
  background: var(--nl-orange);
  color: #fff;
  border-color: var(--nl-orange);
}
.news-pagination-item.news-pagination-disabled span {
  color: var(--nl-text-muted);
  background: #f3f4f6;
  cursor: not-allowed;
}

/* ========== ARTICLE DETAIL (with sidebar) ========== */
.news-article-wrap { padding: 32px 0 48px; background: #f9fafb; }
.news-article-breadcrumb {
  font-size: 0.875rem;
  color: var(--nl-text-muted);
  margin-bottom: 24px;
}
.news-article-breadcrumb a { color: var(--nl-text-muted); text-decoration: none; }
.news-article-breadcrumb a:hover { color: var(--nl-orange); }
.news-article-breadcrumb-sep { margin: 0 6px; opacity: .7; }
.news-article-breadcrumb-current { color: var(--nl-text); }

.news-article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1023px) { .news-article-layout { grid-template-columns: 1fr; } }

.news-article-main { background: #fff; border-radius: 12px; box-shadow: var(--nl-card-shadow); overflow: hidden; }
.news-article-header { padding: 24px 24px 0; }
@media (min-width: 768px) { .news-article-header { padding: 32px 40px 0; } }
.news-article-title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--nl-text);
}
.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  font-size: 0.875rem;
  color: var(--nl-text-muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--nl-border);
}
.news-article-author { color: var(--nl-orange); font-weight: 600; text-decoration: none; }
.news-article-author:hover { text-decoration: underline; }
.news-article-date::before,
.news-article-reading::before,
.news-article-views::before { content: "·"; margin-right: 20px; color: var(--nl-border); }
.news-article-date::before { display: none; }

.news-article-figure { margin: 0; }
.news-article-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #e5e7eb;
}
.news-article-figcaption {
  padding: 12px 24px 24px;
  font-size: 0.8125rem;
  color: var(--nl-text-muted);
}
@media (min-width: 768px) { .news-article-figcaption { padding-left: 40px; padding-right: 40px; } }

.news-article-gallery { margin: 24px 0; padding: 0 24px; }
@media (min-width: 768px) { .news-article-gallery { padding-left: 40px; padding-right: 40px; } }
.news-article-gallery-title { font-size: 1.125rem; margin: 0 0 16px; font-weight: 700; color: var(--nl-text); }
.news-article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .news-article-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.news-article-gallery-item { margin: 0; }
.news-article-gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; display: block; }
.news-article-gallery-caption { font-size: 0.8125rem; color: var(--nl-text-muted); padding: 8px 0 0; }

.news-article-video { margin: 24px 0; padding: 0 24px; }
@media (min-width: 768px) { .news-article-video { padding-left: 40px; padding-right: 40px; } }
.news-article-video-wrap { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; background: #000; }
.news-article-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.news-article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 24px;
}
@media (min-width: 768px) { .news-article-share { padding-left: 40px; padding-right: 40px; } }
.news-article-share-label { font-size: 0.875rem; font-weight: 600; color: var(--nl-text-muted); }
.news-article-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.news-article-share-btn:hover { transform: scale(1.08); opacity: .95; }
.news-article-share-twitter { background: #000; }
.news-article-share-facebook { background: #1877f2; }
.news-article-share-linkedin { background: #0a66c2; }
.news-article-share-whatsapp { background: #25d366; }

.news-article-body {
  padding: 0 24px 32px;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--nl-text);
}
@media (min-width: 768px) { .news-article-body { padding-left: 40px; padding-right: 40px; } }
.news-article-body.prose p { margin: 0 0 1.25em; }
.news-article-body.prose h2 { font-size: 1.35rem; margin: 1.5em 0 .5em; font-weight: 700; }
.news-article-body.prose h3 { font-size: 1.15rem; margin: 1.25em 0 .4em; font-weight: 700; }
.news-article-body.prose ul, .news-article-body.prose ol { margin: 0 0 1.25em; padding-left: 1.5em; }
.news-article-body.prose a { color: var(--nl-orange); text-decoration: none; }
.news-article-body.prose a:hover { text-decoration: underline; }
.news-article-body.prose img { max-width: 100%; height: auto; border-radius: 8px; }

.news-article-tags {
  padding: 24px 24px 32px;
  border-top: 1px solid var(--nl-border);
}
@media (min-width: 768px) { .news-article-tags { padding-left: 40px; padding-right: 40px; } }
.news-article-tags-label { font-size: 0.875rem; font-weight: 600; color: var(--nl-text-muted); margin-right: 12px; }
.news-article-tag {
  display: inline-block;
  margin: 4px 8px 4px 0;
  padding: 6px 14px;
  background: #f3f4f6;
  color: var(--nl-text);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
}
.news-article-tag:hover { background: var(--nl-orange); color: #fff; }

/* Comments */
.news-article-comments { padding: 32px 24px 40px; border-top: 1px solid var(--nl-border); background: #fafafa; }
@media (min-width: 768px) { .news-article-comments { padding-left: 40px; padding-right: 40px; } }
.news-article-comments-title { margin: 0 0 20px; font-size: 1.25rem; font-weight: 700; }
.news-article-comments-success { background: #dcfce7; color: #166534; padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 0.875rem; }
.news-article-comment-form { margin-bottom: 32px; }
.news-article-comment-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 639px) { .news-article-comment-form-row { grid-template-columns: 1fr; } }
.news-article-comment-field { margin-bottom: 16px; }
.news-article-comment-field label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--nl-text); }
.news-article-comment-field input,
.news-article-comment-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--nl-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.news-article-comment-field textarea { resize: vertical; min-height: 100px; }
.news-article-comment-error { display: block; font-size: 0.8125rem; color: #dc2626; margin-top: 4px; }
.news-article-comment-submit {
  padding: 12px 24px;
  background: var(--nl-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
}
.news-article-comment-submit:hover { background: var(--nl-orange-hover); }
.news-article-comment-list { list-style: none; margin: 0; padding: 0; }
.news-article-comment-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--nl-border);
}
.news-article-comment-item:last-child { border-bottom: none; }
.news-article-comment-author { display: block; font-size: 0.9375rem; color: var(--nl-text); margin-bottom: 4px; }
.news-article-comment-date { font-size: 0.8125rem; color: var(--nl-text-muted); }
.news-article-comment-body { margin: 8px 0 0; font-size: 0.9375rem; line-height: 1.6; color: var(--nl-text); }
.news-article-comment-empty { padding: 24px 0; color: var(--nl-text-muted); font-size: 0.9375rem; }

/* Sidebar */
.news-article-sidebar { position: sticky; top: 88px; }
@media (max-width: 1023px) { .news-article-sidebar { position: static; } }
.news-article-sidebar-block {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--nl-card-shadow);
  padding: 24px;
  margin-bottom: 24px;
}
.news-article-sidebar-title {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nl-text);
  border-bottom: 3px solid var(--nl-orange);
  padding-bottom: 8px;
  display: inline-block;
}
.news-article-sidebar-card {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--nl-border);
  text-decoration: none;
  color: inherit;
}
.news-article-sidebar-card:last-child { border-bottom: none; padding-bottom: 0; }
.news-article-sidebar-card:hover .news-article-sidebar-card-title { color: var(--nl-orange); }
.news-article-sidebar-card-img {
  flex-shrink: 0;
  width: 90px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  background: #e5e7eb;
}
.news-article-sidebar-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-article-sidebar-card-content { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.news-article-sidebar-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-article-sidebar-card-meta { font-size: 0.75rem; color: var(--nl-text-muted); margin-top: 4px; }
.news-article-sidebar-empty { margin: 0; font-size: 0.875rem; color: var(--nl-text-muted); }
.news-article-sidebar-text { margin: 0 0 14px; font-size: 0.875rem; color: var(--nl-text-muted); line-height: 1.5; }
.news-article-sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-article-sidebar-form input {
  padding: 10px 14px;
  border: 1px solid var(--nl-border);
  border-radius: 8px;
  font-size: 1rem;
}
.news-article-sidebar-form button {
  padding: 10px 16px;
  background: var(--nl-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.news-article-sidebar-form button:hover { background: var(--nl-orange-hover); }

/* ========== FOOTER ========== */
.news-footer {
  background: var(--nl-header-bg);
  color: rgba(255,255,255,.85);
  padding: 48px 0 32px;
  margin-top: 48px;
  font-size: 0.9375rem;
}
.news-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.news-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 1023px) { .news-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .news-footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.news-footer-col h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px 0;
}
.news-footer-col h4 a { color: inherit; text-decoration: none; }
.news-footer-col h4 a:hover { color: #fff; }
.news-footer-col ul { list-style: none; margin: 0; padding: 0; }
.news-footer-col li { margin-bottom: 8px; font-size: 0.875rem; }
.news-footer a { color: inherit; text-decoration: none; }
.news-footer a:hover { color: #fff; }
.news-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 32px;
}
.news-footer-bottom-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}
.news-footer .brand { font-weight: 600; color: #fff; font-size: 1.125rem; }
.news-footer-copy { font-size: 0.875rem; color: rgba(255,255,255,.65); }
.news-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  font-size: 0.875rem;
}
.news-footer-bottom-links a:not(:last-child)::after {
  content: "·";
  margin-left: 20px;
  color: rgba(255,255,255,.5);
  pointer-events: none;
}

/* ========== STATIC PAGES (About, Advertising, Contact, Imprint) ========== */
.news-page {
  padding: 32px 0 64px;
  background: linear-gradient(180deg, #f3f4f6 0%, #f9fafb 12%, #fff 30%);
  min-height: 50vh;
}
/* Tüm linkler mavi olmasın; sayfa içi stil */
.news-page a {
  color: var(--nl-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease, box-shadow .2s ease;
}
.news-page a:hover {
  color: var(--nl-orange-hover);
  text-decoration: none;
  box-shadow: 0 1px 0 0 currentColor;
}

.news-page-breadcrumb {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nl-text-muted);
  margin-bottom: 24px;
}
.news-page-breadcrumb a { color: var(--nl-text-muted); text-decoration: none; }
.news-page-breadcrumb a:hover { color: var(--nl-orange); box-shadow: none; }
.news-page-breadcrumb-sep { margin: 0 10px; opacity: .5; }
.news-page-breadcrumb-current { color: var(--nl-text); font-weight: 600; }

.news-page-card-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(0,0,0,.04);
}
@media (min-width: 768px) { .news-page-card-wrap { padding: 0; } }

.news-page-hero {
  padding: 40px 28px 36px;
  border-bottom: 1px solid var(--nl-border);
  background: #fff;
}
@media (min-width: 768px) { .news-page-hero { padding: 52px 44px 40px; } }

.news-page-hero-title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4vw, 2.125rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--nl-text);
  letter-spacing: -0.03em;
}
.news-page-hero-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--nl-orange);
  border-radius: 2px;
  margin-top: 16px;
}
.news-page-hero-lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--nl-text-muted);
  max-width: 36em;
}

.news-page-content-area {
  padding: 32px 28px 48px;
}
@media (min-width: 768px) { .news-page-content-area { padding: 40px 44px 56px; } }

.news-page-block {
  margin-bottom: 36px;
  padding-left: 0;
  border-left: none;
}
.news-page-block:last-child { margin-bottom: 0; }
.news-page-block h2 {
  margin: 0 0 14px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nl-text-muted);
}
.news-page-block p {
  margin: 0 0 14px;
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--nl-text);
}
.news-page-block p:last-child { margin-bottom: 0; }
.news-page-block a {
  color: var(--nl-orange);
  font-weight: 600;
}
.news-page-block a:hover { color: var(--nl-orange-hover); box-shadow: 0 1px 0 0 currentColor; }

.news-page-list {
  margin: 0 0 14px;
  padding-left: 1.35em;
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--nl-text);
}
.news-page-list li { margin-bottom: 10px; }
.news-page-list li:last-child { margin-bottom: 0; }
.news-page-list strong { color: var(--nl-text); }

.news-page-block-highlight {
  background: linear-gradient(135deg, #fffaf7 0%, #fff6f0 100%);
  border: 1px solid rgba(196, 92, 38, .12);
  border-radius: 12px;
  padding: 26px 28px;
  margin-top: 12px;
}
.news-page-block-highlight h2 { color: var(--nl-orange); font-weight: 700; }

.news-page-block-note {
  font-size: 0.9375rem;
  color: var(--nl-text-muted);
  padding: 24px 0 0;
  margin-top: 32px;
  border-top: 1px solid var(--nl-border);
}

/* Contact page grid – üç kutu eşit genişlik */
.news-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
@media (min-width: 640px) {
  .news-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}
.news-page-card {
  background: #f5f5f5;
  border: none;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: box-shadow .2s ease, background .2s ease;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-page-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  background: #fafafa;
}
.news-page-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  color: var(--nl-orange);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.news-page-card h2 {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nl-text);
}
.news-page-card p {
  margin: 0 0 10px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--nl-text-muted);
}
.news-page-link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nl-orange) !important;
  text-decoration: none;
}
.news-page-link:hover { color: var(--nl-orange-hover) !important; box-shadow: 0 1px 0 0 currentColor; }

/* Utility */
.news-placeholder { background: #d1d5db; }

/* ========== AUTHOR PAGE ========== */
.news-author-page { padding: 24px 0 48px; background: #f9fafb; min-height: 40vh; }
.news-author-breadcrumb {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nl-text-muted);
  margin-bottom: 24px;
}
.news-author-breadcrumb a { color: var(--nl-text-muted); text-decoration: none; }
.news-author-breadcrumb a:hover { color: var(--nl-orange); }
.news-author-breadcrumb-sep { margin: 0 10px; opacity: .5; }
.news-author-breadcrumb-current { color: var(--nl-text); font-weight: 600; }

.news-author-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--nl-border);
}
@media (max-width: 639px) {
  .news-author-header { flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 20px 0; }
}
.news-author-avatar-wrap { flex-shrink: 0; }
.news-author-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--nl-border);
}
.news-author-info { min-width: 0; }
.news-author-name {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--nl-text);
}
.news-author-name::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--nl-orange);
  border-radius: 2px;
  margin-top: 12px;
}
@media (max-width: 639px) { .news-author-name::after { margin-left: auto; margin-right: auto; } }
.news-author-bio {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--nl-text-muted);
  max-width: 42em;
}
@media (max-width: 639px) { .news-author-bio { margin-left: auto; margin-right: auto; } }

.news-author-articles-section { margin-top: 8px; }
.news-author-articles-title {
  margin: 0 0 24px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nl-text-muted);
}
.news-author-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) { .news-author-articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .news-author-articles-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.news-author-card .news-card-body { padding: 16px; }
.news-author-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 48px 24px;
  text-align: center;
  font-size: 1rem;
  color: var(--nl-text-muted);
}
.news-author-pagination { margin-top: 40px; }

/* ========== MOBILE: HAMBURGER MENU – SOLDAN AÇILAN DRAWER ========== */
.news-nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 95;
  opacity: 0; transition: opacity .25s ease;
}
.news-nav-overlay[aria-hidden="false"] { display: block; opacity: 1; }

@media (max-width: 767px) {
  .news-header { height: 64px; }
  .news-header-inner {
    padding: 0 16px;
    gap: 0;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
  }
  .news-logo { grid-column: 1; justify-self: start; }
  .news-nav {
    position: fixed; top: 0; left: 0; width: 280px; max-width: 85vw; height: 100vh;
    background: var(--nl-header-bg); z-index: 100; overflow-y: auto;
    flex-direction: column; align-items: stretch; padding: 24px 0; gap: 0;
    box-shadow: 4px 0 24px rgba(0,0,0,.2);
    transform: translateX(-100%); transition: transform .3s ease;
  }
  .news-nav.is-open { transform: translateX(0); }
  .news-nav a {
    padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem;
  }
  .news-header-actions { display: contents; }
  .news-search-wrap { grid-column: 2; justify-self: center; }
  .news-weather-link {
    grid-column: 3;
    justify-self: end;
    gap: 6px;
    font-size: 0.8125rem;
    padding: 6px 4px;
  }
  .news-weather-label { display: inline !important; }
  .news-menu-toggle { display: flex; grid-column: 4; justify-self: end; }
  .news-logo-title { font-size: 1.1rem; }
  .news-logo-tagline { font-size: 0.7rem; }
  .news-container { padding-left: 16px; padding-right: 16px; }

  /* Arama kutusu: ekranda tam ortada ve tam görünsün */
  .news-search-wrap { position: relative; }
  .news-search-drop {
    right: auto;
    left: 50%;
    margin-left: 0;
    margin-top: 8px;
    transform: translateX(-50%);
    width: min(360px, calc(100vw - 32px));
  }
  .news-search-drop.is-open {
    width: min(360px, calc(100vw - 32px));
  }
  .news-search-form { min-width: 0; }
  .news-search-input { min-width: 0; }
}
body.news-menu-open { overflow: hidden; }

.news-infobar-weather { color: var(--nl-orange); text-decoration: none; font-weight: 600; }
.news-infobar-weather:hover { text-decoration: underline; }

/* Weather slider in infobar */
.news-infobar-weather-slider-wrap { display: inline-flex; align-items: center; }
.news-infobar-weather-slider {
  display: inline-flex; align-items: center; gap: 8px; position: relative; color: var(--nl-orange); text-decoration: none; font-weight: 600;
}
.news-infobar-weather-slider:hover { text-decoration: none; }
.news-infobar-weather-slider-icon { flex-shrink: 0; width: 16px; height: 16px; color: var(--nl-orange); }
.news-infobar-weather-slider .news-infobar-weather-slide {
  display: none; white-space: nowrap;
}
.news-infobar-weather-slider .news-infobar-weather-slide.active { display: inline; }
.news-infobar-weather-city { color: #1a1a1a; font-weight: 700; }
.news-infobar-weather-detail { color: var(--nl-orange); font-size: 0.875em; font-weight: 600; }

/* ========== WEATHER PAGE ========== */
.news-weather-page { padding: 24px 0 48px; background: #f9fafb; min-height: 50vh; }
.news-weather-breadcrumb { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--nl-text-muted); margin-bottom: 20px; }
.news-weather-breadcrumb a { color: var(--nl-text-muted); text-decoration: none; }
.news-weather-breadcrumb a:hover { color: var(--nl-orange); }
.news-weather-breadcrumb-sep { margin: 0 10px; opacity: .5; }
.news-weather-breadcrumb-current { color: var(--nl-text); font-weight: 600; }
.news-weather-page-title { margin: 0 0 24px; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: var(--nl-text); }
.news-weather-city-select-wrap { margin-bottom: 32px; }
.news-weather-city-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; color: var(--nl-text); }
.news-weather-city-search {
  width: 100%; max-width: 320px; padding: 12px 16px; border: 1px solid var(--nl-border); border-radius: 8px; font-size: 1rem; margin-bottom: 12px;
}
.news-weather-city-search:focus { outline: none; border-color: var(--nl-orange); box-shadow: 0 0 0 3px rgba(196,92,38,.15); }
.news-weather-city-list { display: flex; flex-wrap: wrap; gap: 8px; }
.news-weather-city-chip {
  display: inline-block; padding: 8px 16px; background: #fff; border: 1px solid var(--nl-border); border-radius: 8px;
  color: var(--nl-text); text-decoration: none; font-size: 0.9375rem; font-weight: 500; transition: all .2s ease;
}
.news-weather-city-chip:hover { border-color: var(--nl-orange); color: var(--nl-orange); }
.news-weather-city-chip.active { background: var(--nl-orange); border-color: var(--nl-orange); color: #fff; }
.news-weather-today {
  background: #fff; border-radius: 12px; padding: 28px; margin-bottom: 32px; box-shadow: var(--nl-card-shadow); border: 1px solid var(--nl-border);
}
.news-weather-today-title { margin: 0 0 20px; font-size: 1.25rem; font-weight: 700; color: var(--nl-text); }
.news-weather-today-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; margin-bottom: 24px; }
.news-weather-today-main { }
.news-weather-today-label { margin: 0 0 4px; font-size: 0.875rem; color: var(--nl-text-muted); }
.news-weather-today-temp { margin: 0; font-size: 3rem; font-weight: 800; color: var(--nl-text); line-height: 1.1; }
.news-weather-today-desc { margin: 8px 0 0; font-size: 1rem; color: var(--nl-text-muted); }
.news-weather-today-sun { font-size: 0.9375rem; color: var(--nl-text-muted); }
.news-weather-meta-label { font-weight: 600; color: var(--nl-text); margin-right: 6px; }
.news-weather-metrics { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; padding-top: 20px; border-top: 1px solid var(--nl-border); }
.news-weather-metric { font-size: 0.9375rem; color: var(--nl-text-muted); }
.news-weather-metric-icon { margin-right: 6px; }
.news-weather-metric strong { color: var(--nl-text); }
.news-weather-hourly { margin-bottom: 32px; }
.news-weather-hourly-title { margin: 0 0 16px; font-size: 1.125rem; font-weight: 700; color: var(--nl-text); }
.news-weather-hourly-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 12px; }
.news-weather-hourly-item {
  flex-shrink: 0; width: 120px; padding: 14px; background: #fff; border-radius: 8px; border: 1px solid var(--nl-border);
  display: flex; flex-direction: column; gap: 4px; font-size: 0.875rem;
}
.news-weather-hourly-time { font-weight: 600; color: var(--nl-text); }
.news-weather-hourly-temp { font-size: 1.25rem; font-weight: 700; color: var(--nl-orange); }
.news-weather-hourly-desc { color: var(--nl-text-muted); }
.news-weather-hourly-precip, .news-weather-hourly-wind { font-size: 0.75rem; color: var(--nl-text-muted); }

/* 7-day forecast */
.news-weather-week { margin-bottom: 32px; }
.news-weather-week-title { margin: 0 0 16px; font-size: 1.125rem; font-weight: 700; color: var(--nl-text); }
.news-weather-week-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px;
  background: #fff; border-radius: 12px; padding: 20px; box-shadow: var(--nl-card-shadow); border: 1px solid var(--nl-border);
}
@media (max-width: 1023px) { .news-weather-week-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 639px) { .news-weather-week-grid { grid-template-columns: repeat(2, 1fr); } }
.news-weather-week-day {
  display: flex; flex-direction: column; gap: 6px; padding: 14px; background: #f8fafc; border-radius: 8px; text-align: center;
}
.news-weather-week-date { font-size: 0.875rem; font-weight: 700; color: var(--nl-text); }
.news-weather-week-desc { font-size: 0.75rem; color: var(--nl-text-muted); line-height: 1.3; }
.news-weather-week-high { font-size: 1.25rem; font-weight: 700; color: var(--nl-orange); }
.news-weather-week-low { font-size: 0.9375rem; color: var(--nl-text-muted); }

.news-weather-map { margin-bottom: 24px; }
.news-weather-map-title { margin: 0 0 12px; font-size: 1.125rem; font-weight: 700; color: var(--nl-text); }
.news-weather-map-container { height: 400px; border-radius: 12px; overflow: hidden; border: 1px solid var(--nl-border); background: #e5e7eb; }
.news-weather-empty { margin: 0; padding: 48px 24px; text-align: center; color: var(--nl-text-muted); font-size: 1.0625rem; }

/* Weather icons (sun, cloud, rain, snow, overcast) */
.weather-icon { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; }
.weather-icon svg { width: 100%; height: 100%; display: block; }
.weather-icon-lg svg { width: 80px; height: 80px; }
.weather-icon-md svg { width: 48px; height: 48px; }
.weather-icon-sm svg { width: 36px; height: 36px; }
.news-weather-today-icon { margin-bottom: 8px; }
.news-weather-week-icon { margin: 4px 0; }
.news-weather-hourly-icon { margin: 4px 0; }

@media (max-width: 479px) {
  .news-header-inner { padding: 10px 14px 14px; }
  .news-container { padding-left: 14px; padding-right: 14px; }
  .news-hero-main-caption h2 { font-size: 1.25rem; }
  .news-article-header { padding: 20px 16px 0 !important; }
  .news-article-title { font-size: 1.35rem; }
  .news-article-body.prose,
  .news-article-share,
  .news-article-tags,
  .news-article-comments { padding-left: 16px !important; padding-right: 16px !important; }
  .news-article-figcaption { padding-left: 16px !important; padding-right: 16px !important; }
  .news-footer-inner { padding: 24px 16px; }
  .news-footer-bottom-links { justify-content: center; }
}

/* ========== COOKIE CONSENT (GDPR / AVG, English) ========== */
body.nl-cookie-open { overflow: hidden; }
.nl-cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
}
.nl-cookie-banner[hidden] { display: none !important; }
.nl-cookie-banner:not([hidden]) { pointer-events: auto; }
.nl-cookie-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}
.nl-cookie-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 24px 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--nl-border);
  margin-bottom: max(8px, env(safe-area-inset-bottom));
}
.nl-cookie-title {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--nl-text);
}
.nl-cookie-text {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--nl-text-muted);
}
.nl-cookie-link {
  color: var(--nl-orange);
  font-weight: 600;
  text-decoration: none;
}
.nl-cookie-link:hover { text-decoration: underline; }
.nl-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nl-cookie-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.nl-cookie-btn-primary {
  background: var(--nl-orange);
  color: #fff;
}
.nl-cookie-btn-primary:hover { background: var(--nl-orange-hover); }
.nl-cookie-btn-secondary {
  background: #f1f5f9;
  color: var(--nl-text);
  border: 1px solid var(--nl-border);
}
.nl-cookie-btn-secondary:hover { background: #e2e8f0; }
@media (min-width: 640px) {
  .nl-cookie-banner {
    align-items: center;
    padding: 24px;
  }
  .nl-cookie-panel { margin-bottom: 0; }
}
