/* ====================================================
   News pages — list (mockup) + read
   ==================================================== */

:root {
  --news-navy: #001f3f;
  --news-navy-soft: #123a66;
  --news-red: #c8102e;
  --news-red-hover: #a50d25;
  --news-bg: #f7f9fc;
  --news-border: #e3e9f0;
  --news-muted: #64748b;
  --news-shadow: 0 2px 12px rgba(0, 31, 63, 0.06);
  --news-shadow-lg: 0 8px 28px rgba(0, 31, 63, 0.1);
  --news-radius-btn: 8px;
  --news-radius-card: 12px;
  --news-radius-media: 10px;
}

body.page-news {
  background: var(--news-bg);
}

/* ── Hero ── */
.news-hero {
  position: relative;
  min-height: 280px;
  background: url('https://images.unsplash.com/photo-1599640842225-85d111c60e6b?auto=format&fit=crop&w=1920&q=80') center 35% / cover no-repeat;
  display: flex;
  align-items: stretch;
}

.news-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 38%, rgba(0,45,114,0.35) 68%, rgba(0,45,114,0.55) 100%);
}

.news-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 1rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  margin-bottom: 0.65rem;
}

.news-breadcrumb a {
  color: var(--news-muted);
  text-decoration: none;
}

.news-breadcrumb a:hover { color: var(--news-navy-soft); }

.news-breadcrumb-sep { color: #cbd5e1; }

.news-breadcrumb-current {
  color: var(--news-red);
  font-weight: 600;
}

.news-hero-title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: var(--news-navy);
  margin: 0 0 0.35rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.news-hero-desc {
  font-size: 0.98rem;
  color: var(--news-muted);
  margin: 0;
  max-width: 640px;
  line-height: 1.55;
}

/* ── Layout shell ── */
.news-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.35rem 1rem 4rem;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.75rem;
  align-items: start;
  margin-top: 0;
  position: relative;
  z-index: 5;
}

.news-main {
  min-width: 0;
}

/* ── Category tabs ── */
.news-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.news-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: var(--news-radius-btn);
  border: 1px solid var(--news-border);
  background: #fff;
  color: var(--news-navy);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.news-cat-tab i {
  font-size: 0.78rem;
  opacity: 0.85;
}

.news-cat-tab:hover {
  border-color: #cbd5e1;
  box-shadow: var(--news-shadow);
}

.news-cat-tab.is-active {
  background: var(--news-red);
  border-color: var(--news-red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.28);
}

.news-cat-tab.is-active i {
  color: #fff;
  opacity: 1;
}

/* ── Featured article ── */
.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid var(--news-border);
  border-radius: 12px;
  box-shadow: var(--news-shadow);
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.35rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.news-featured:hover {
  border-color: #cbd5e1;
  box-shadow: var(--news-shadow-lg);
}

.news-featured-media {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  min-height: 100%;
}

.news-featured-media-inner {
  position: relative;
  flex: 1 1 auto;
  min-height: 220px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8eef5;
}

.news-featured-media-inner img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.news-featured-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  display: inline-flex;
  background: var(--news-red);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.62rem;
  border-radius: 6px;
  line-height: 1.2;
}

.news-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
  min-height: 100%;
  padding: 1.15rem 1.35rem 1.15rem 0.35rem;
}

.news-featured-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.news-featured-title {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  color: var(--news-navy);
  line-height: 1.4;
  margin: 0;
}

.news-featured-excerpt {
  margin: 0;
  color: var(--news-navy);
  opacity: 0.88;
  font-size: 0.86rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.15rem;
}

.news-featured-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--news-navy);
}

.news-featured-date i {
  color: var(--news-navy-soft);
  font-size: 0.78rem;
}

.news-featured-cta,
.news-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.95rem;
  border: 1.5px solid var(--news-red);
  border-radius: var(--news-radius-btn);
  background: #fff;
  color: var(--news-red);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.news-card-cta {
  font-size: 0.72rem;
  padding: 0.34rem 0.75rem;
}

.news-featured:hover .news-featured-cta,
.news-card:hover .news-card-cta {
  background: var(--news-red);
  color: #fff;
}

/* ── News grid cards ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--news-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--news-shadow);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.news-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--news-shadow-lg);
}

.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e8eef5;
  overflow: hidden;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.04);
}

.news-card-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--news-red);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 5px;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 0.85rem 0.9rem 0.95rem;
  gap: 0.45rem;
  min-height: 0;
}

.news-card-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--news-navy);
  line-height: 1.35;
  min-height: calc(2 * 1.35 * 0.92rem);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-excerpt {
  margin: 0;
  font-size: 0.78rem;
  color: var(--news-navy);
  opacity: 0.88;
  line-height: 1.55;
  min-height: calc(3 * 1.55 * 0.78rem);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1 auto;
}

.news-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.55rem;
  border-top: 1px solid #eef2f6;
  min-height: 2.35rem;
}

.news-card-date {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--news-navy);
  min-width: 0;
  flex: 1 1 auto;
}

/* ── Pagination ── */
.news-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 2rem;
}

.news-page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--news-border);
  background: #fff;
  color: var(--news-navy);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.news-page-btn:hover {
  border-color: #cbd5e1;
}

.news-page-btn.is-active,
.news-page-btn.is-active:hover {
  background: var(--news-red);
  border-color: var(--news-red);
  color: #fff;
}

/* ── Sidebar widgets ── */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 1rem;
}

.news-widget {
  background: #fff;
  border: 1px solid var(--news-border);
  border-radius: 12px;
  box-shadow: var(--news-shadow);
  padding: 1rem 1rem 1.05rem;
}

.news-widget-title {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--news-navy);
}

.news-widget-desc {
  margin: -0.35rem 0 0.75rem;
  font-size: 0.78rem;
  color: var(--news-muted);
  line-height: 1.5;
}

.news-search-form {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--news-border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.news-search-form input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  padding: 0.65rem 0.75rem;
  font-size: 0.84rem;
  color: var(--news-navy);
  background: transparent;
}

.news-search-form input:focus {
  outline: none;
}

.news-search-form button {
  flex: 0 0 auto;
  width: 42px;
  border: none;
  background: var(--news-red);
  color: #fff;
  cursor: pointer;
}

.news-search-form button:hover {
  background: var(--news-red-hover);
}

.news-mobile-search {
  display: none;
}

.news-side-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0.5rem;
}

.news-side-cats li {
  min-width: 0;
  display: flex;
}

.news-side-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  min-height: 42px;
  height: 100%;
  padding: 0.5rem 0.55rem;
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius-btn);
  background: #fff;
  text-decoration: none;
  color: var(--news-navy);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.2;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.news-side-cat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-width: 0;
  flex: 1 1 auto;
}

.news-side-cat-label i {
  flex-shrink: 0;
  width: 0.85rem;
  font-size: 0.72rem;
  color: var(--news-navy-soft);
  text-align: center;
}

.news-side-cat-label > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-side-cat:hover {
  border-color: #cbd5e1;
  background: #fafbfd;
  box-shadow: var(--news-shadow);
}

.news-side-cat.is-active {
  border-color: rgba(200, 16, 46, 0.35);
  background: rgba(200, 16, 46, 0.06);
  color: var(--news-red);
}

.news-side-cat.is-active .news-side-cat-label i {
  color: var(--news-red);
}

.news-side-cat-count {
  flex: 0 0 auto;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #e8f0fa;
  color: var(--news-navy);
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-side-cat.is-active .news-side-cat-count {
  background: rgba(200, 16, 46, 0.12);
  color: var(--news-red);
}

.news-recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-recent-link {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.news-recent-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #e8eef5;
}

.news-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-recent-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.news-recent-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--news-navy);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-recent-date {
  font-size: 0.72rem;
  color: var(--news-muted);
}

.news-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.news-newsletter-form input {
  width: 100%;
  border: 1px solid var(--news-border);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font-size: 0.84rem;
}

.news-newsletter-form input:focus {
  outline: 2px solid rgba(200, 16, 46, 0.18);
  border-color: #cbd5e1;
}

.news-newsletter-btn {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: var(--news-red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
}

.news-newsletter-btn:hover {
  background: var(--news-red-hover);
}

/* ── Empty state ── */
.news-empty {
  background: #fff;
  border: 1px solid var(--news-border);
  border-radius: 14px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--news-muted);
  box-shadow: var(--news-shadow);
}

.news-empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(0, 31, 63, 0.06);
  color: var(--news-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

/* ====================================================
   Read page
   ==================================================== */

body.page-news-read {
  background: var(--news-bg);
}

.news-read-page {
  padding: 1.35rem 0 4rem;
}

.news-read-shell {
  max-width: 1200px;
}

.news-read-shell > .news-breadcrumb {
  margin-bottom: 1rem;
}

.news-read-layout {
  align-items: start;
}

.news-read-main {
  min-width: 0;
}

.news-read-hero {
  position: relative;
  background: #fff;
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius-card);
  overflow: hidden;
  box-shadow: var(--news-shadow);
  margin-bottom: 1.35rem;
  min-height: 280px;
}

.news-read-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #e8eef5;
}

.news-read-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    #fff 0%,
    #fff 34%,
    rgba(255, 255, 255, 0.94) 44%,
    rgba(255, 255, 255, 0.72) 52%,
    rgba(255, 255, 255, 0.2) 62%,
    transparent 74%
  );
  pointer-events: none;
}

.news-read-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.news-read-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 1.35rem 0 0 1.35rem;
}

.news-read-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: min(100%, 560px);
  padding-right: 1.25rem;
  flex: 1 1 auto;
}

.news-read-hero-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--news-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  line-height: 1.2;
}

.news-read-hero-title {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--news-navy);
  line-height: 1.4;
}

.news-read-hero-lead {
  margin: 0;
  color: var(--news-navy-soft);
  font-size: 0.86rem;
  line-height: 1.65;
  opacity: 0.92;
}

.news-read-hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.news-read-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.85rem 0;
}

.news-read-hero-meta-sep {
  width: 1px;
  height: 14px;
  background: #cbd5e1;
  flex-shrink: 0;
}

.news-read-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--news-navy);
}

.news-read-hero-meta-item i {
  color: var(--news-navy-soft);
  font-size: 0.82rem;
}

.news-read-share {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem 0.7rem 1.1rem;
  background: #fff;
  border-radius: 12px 0 0 0;
  flex-shrink: 0;
}

.news-read-share-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--news-navy);
  margin-right: 0.1rem;
  white-space: nowrap;
}

.news-read-share-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
  font-size: 0.82rem;
}

.news-read-share-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.news-read-share-btn--facebook {
  background: #1877f2;
  color: #fff;
}

.news-read-share-btn--line {
  background: #06c755;
  color: #fff;
}

.news-read-share-btn--link {
  background: var(--news-navy);
  color: #fff;
}

.news-read-share-btn.is-copied {
  background: #16a34a;
  color: #fff;
}

.news-read-article {
  background: #fff;
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius-card);
  box-shadow: var(--news-shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1.75rem;
}

.news-read-body {
  color: var(--news-navy);
  line-height: 1.85;
  font-size: 0.95rem;
}

.news-read-body h2,
.news-read-body h3,
.news-read-body h4 {
  color: var(--news-navy);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.news-read-body h2 { font-size: 1.25rem; }
.news-read-body h3 { font-size: 1.08rem; }
.news-read-body h4 { font-size: 0.98rem; }

.news-read-body p { margin-bottom: 1.1rem; }

.news-read-body a {
  color: var(--news-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-read-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.25rem 0;
}

.news-read-body blockquote {
  margin: 1.5rem 0;
  padding: 1.15rem 1.25rem 1.15rem 3.25rem;
  background: #eef4fb;
  border: none;
  border-radius: 10px;
  position: relative;
  font-weight: 700;
  color: var(--news-navy);
  line-height: 1.65;
}

.news-read-body blockquote::before {
  content: "\201C";
  position: absolute;
  left: 1rem;
  top: 0.55rem;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--news-navy-soft);
  font-family: Georgia, serif;
}

.news-read-body ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.25rem;
}

.news-read-body ul li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.55rem;
}

.news-read-body ul li::before {
  content: "\2713";
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.12);
  color: var(--news-red);
  font-size: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-read-booking-inline {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--news-border);
}

.news-read-booking-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--news-red);
  border-radius: var(--news-radius-btn);
  color: var(--news-red);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.news-read-booking-link:hover {
  background: var(--news-red);
  color: #fff;
}

.news-read-related {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--news-border);
}

.news-read-related-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--news-navy);
}

.news-read-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.news-read-related-card {
  background: #fff;
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius-card);
  overflow: hidden;
  box-shadow: var(--news-shadow);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.news-read-related-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--news-shadow-lg);
}

.news-read-related-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-read-related-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e8eef5;
}

.news-read-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-read-related-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  background: var(--news-red);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.18rem 0.42rem;
  border-radius: 4px;
}

.news-read-related-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0.55rem;
  padding: 0.75rem 0.8rem 0.85rem;
}

.news-read-related-card-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--news-navy);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(2 * 1.35 * 0.82rem);
}

.news-read-related-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.45rem;
  border-top: 1px solid #eef2f6;
}

.news-read-related-date {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--news-navy);
}

.news-read-related-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--news-red);
  white-space: nowrap;
}

.news-read-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 1rem;
}

.news-side-cats--stack {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.news-side-cat--row {
  min-height: 40px;
}

.news-read-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--news-red);
  text-decoration: none;
}

.news-read-view-all:hover {
  text-decoration: underline;
}

.news-read-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.news-read-social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--news-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--news-navy);
  text-decoration: none;
  background: #fff;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.news-read-social-link:hover {
  background: var(--news-red);
  border-color: var(--news-red);
  color: #fff;
}

.news-read-email-field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--news-border);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  background: #fff;
}

.news-read-email-field i {
  color: var(--news-muted);
}

.news-read-email-field input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 0.82rem;
  color: var(--news-navy);
}

.news-read-email-field input:focus {
  outline: none;
}

.news-read-promo {
  position: relative;
  min-height: 220px;
  border-radius: var(--news-radius-card);
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1599640842225-85d111c60e6b?auto=format&fit=crop&w=800&q=80') center / cover no-repeat;
  box-shadow: var(--news-shadow);
}

.news-read-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 31, 63, 0.15) 0%, rgba(0, 31, 63, 0.72) 100%);
}

.news-read-promo-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 220px;
  justify-content: flex-end;
  padding: 1rem;
}

.news-read-promo-title {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.news-read-promo-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  line-height: 1.45;
}

.news-read-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--news-radius-btn);
  background: var(--news-red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: background 0.15s ease;
}

.news-read-promo-btn:hover {
  background: var(--news-red-hover);
  color: #fff;
}

.news-read-promo-btn--inline {
  margin-top: 1rem;
}

.news-read-shell > .news-empty {
  margin-top: 1rem;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .news-layout {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .news-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .news-widget--newsletter {
    grid-column: 1 / -1;
  }

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

  .news-featured {
    grid-template-columns: 1fr;
  }

  .news-featured-media {
    padding: 0.85rem 0.85rem 0;
  }

  .news-featured-body {
    padding: 0.85rem 0.85rem 1rem;
  }

  .news-featured-foot {
    flex-wrap: wrap;
  }

  .news-read-layout {
    align-items: stretch;
  }

  .news-read-sidebar {
    position: static;
  }

  .news-read-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .news-hero {
    min-height: 220px;
  }

  .news-hero-inner {
    padding: 1.35rem 1rem 2rem;
    justify-content: flex-end;
  }

  .news-hero-title {
    font-size: 1.55rem;
  }

  .news-hero-desc {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .news-shell {
    padding: 1rem 1rem 5.5rem;
  }

  .news-cat-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.15rem;
  }

  .news-cat-tabs::-webkit-scrollbar {
    display: none;
  }

  .news-cat-tab {
    flex: 0 0 auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }

  .news-mobile-search {
    display: block;
    margin-bottom: 1rem;
  }

  .news-mobile-search .news-search-form {
    border-radius: var(--news-radius-btn);
  }

  .news-mobile-search .news-search-form button {
    width: 46px;
    border-radius: 0 var(--news-radius-btn) var(--news-radius-btn) 0;
  }

  .news-sidebar {
    display: none;
  }

  .news-featured {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    overflow: hidden;
  }

  .news-featured-media {
    padding: 0;
  }

  .news-featured-media-inner {
    min-height: 190px;
    border-radius: var(--news-radius-card) var(--news-radius-card) 0 0;
  }

  .news-featured-media-inner img {
    min-height: 190px;
  }

  .news-featured-body {
    padding: 0.85rem 1rem 1rem;
    gap: 0.55rem;
  }

  .news-featured-title {
    font-size: 1rem;
    line-height: 1.45;
  }

  .news-featured-excerpt,
  .news-featured-cta {
    display: none;
  }

  .news-featured-foot {
    justify-content: flex-start;
    padding-top: 0;
    margin-top: 0;
  }

  .news-featured-date {
    font-size: 0.76rem;
    color: var(--news-muted);
    font-weight: 500;
  }

  .news-featured-date i {
    color: var(--news-muted);
  }

  .news-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .news-card {
    height: auto;
  }

  .news-card-link {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem;
  }

  .news-card-media {
    flex: 0 0 96px;
    width: 96px;
    aspect-ratio: 1;
    min-height: 96px;
    border-radius: 8px;
  }

  .news-card-body {
    flex: 1 1 auto;
    justify-content: center;
    padding: 0;
    gap: 0.35rem;
    min-width: 0;
  }

  .news-card-excerpt,
  .news-card-cta {
    display: none;
  }

  .news-card-title {
    min-height: auto;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .news-card-foot {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    min-height: auto;
    justify-content: flex-start;
  }

  .news-card-date {
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--news-muted);
    flex: 0 1 auto;
  }

  .news-card-date i {
    color: var(--news-muted);
  }

  .news-card-badge {
    font-size: 0.58rem;
    padding: 0.18rem 0.42rem;
    top: 0.45rem;
    left: 0.45rem;
    border-radius: 4px;
    text-transform: none;
    letter-spacing: 0;
  }

  .news-card:hover .news-card-media img {
    transform: none;
  }

  .news-read-page {
    padding: 1rem 0 5.5rem;
  }

  .news-read-hero {
    min-height: auto;
  }

  .news-read-hero-inner {
    min-height: auto;
    padding: 0;
  }

  .news-read-hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.88) 68%,
      #fff 100%
    );
  }

  .news-read-hero-copy {
    max-width: none;
    padding: 1rem 1rem 0;
  }

  .news-read-hero-foot {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .news-read-hero-meta {
    padding: 0.65rem 1rem 0;
  }

  .news-read-share {
    align-self: flex-end;
    border-radius: 12px 0 0 0;
    padding: 0.55rem 0.75rem 0.55rem 0.85rem;
    margin-top: 0.35rem;
    margin-right: 0;
  }

  .news-read-share-label {
    display: inline;
    font-size: 0.7rem;
  }

  .news-read-article {
    padding: 1rem;
    margin-bottom: 0;
  }

  .news-read-related-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .news-read-related-title {
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
  }

  .news-read-related-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .news-read-related-card:hover {
    border-color: transparent;
    box-shadow: none;
  }

  .news-read-related-link {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .news-read-related-media {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    aspect-ratio: auto;
    border-radius: 8px;
  }

  .news-read-related-badge,
  .news-read-related-cta {
    display: none;
  }

  .news-read-related-body {
    padding: 0;
    gap: 0.2rem;
    flex: 1 1 auto;
    min-width: 0;
  }

  .news-read-related-card-title {
    font-size: 0.8rem;
    min-height: auto;
    line-height: 1.35;
  }

  .news-read-related-foot {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    justify-content: flex-start;
  }

  .news-read-related-date {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--news-muted);
  }

  .news-read-related-date i {
    display: none;
  }

  .news-read-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .news-read-body {
    font-size: 0.92rem;
  }
}
