* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f6f8;
  --bg-soft: #eef2f5;
  --surface: #ffffff;
  --surface-soft: #f8fafb;
  --surface-alt: #f1f4f6;
  --line: #dfe5ea;
  --line-strong: #ccd5dc;
  --text: #16212a;
  --text-strong: #0d171f;
  --muted: #5e6c77;
  --brand-green: #4f9b37;
  --brand-lime: #c7da18;
  --brand-orange: #ef7f22;
  --live-red: #cf1d24;
  --shadow-sm: 0 10px 24px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 16px 36px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 24px 56px rgba(16, 24, 40, 0.1);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(79, 155, 55, 0.04), transparent 180px),
    linear-gradient(180deg, #f8fafb 0%, #f3f6f8 44%, #eef2f5 100%);
  font-family: "Exo 2", "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.broadcast-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(13, 23, 31, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.broadcast-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.signal-pill,
.preview-label,
.section-kicker,
.news-meta span,
.gallery-meta span,
.article-meta span,
.contact-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-pill,
.preview-label {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid #e4e9ed;
  background: #fff;
}

.signal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--live-red);
  box-shadow: 0 0 0 0 rgba(207, 29, 36, 0.45);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(207, 29, 36, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(207, 29, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(207, 29, 36, 0);
  }
}

.broadcast-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header {
  padding: 18px 0 4px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #edf1e8 100%);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
}

.brand strong,
.site-nav a,
.page-hero h1,
.section-head h2,
.content-panel h2,
.news-feature h3,
.news-card h3,
.team-card h3,
.contact-form h3,
.live-sidecard h3,
.article-shell h1,
.related-card h3,
.service-card h3,
.section-nav-card strong {
  font-family: "Oxanium", "Exo 2", sans-serif;
}

.brand strong {
  display: block;
  color: var(--text-strong);
  font-size: 1.16rem;
  letter-spacing: 0.03em;
}

.brand span {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #43515d;
  transition: 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-strong);
  background: #f4f6f8;
  border-color: #e4e9ed;
}

.site-nav a.active {
  color: var(--text-strong);
  background: linear-gradient(135deg, #f4f9de, #fbfddc);
  border-color: rgba(199, 218, 24, 0.42);
  box-shadow: 0 8px 18px rgba(199, 218, 24, 0.18);
}

.section-block {
  padding: 34px 0;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--brand-green);
}

.page-hero,
.live-player,
.live-sidecard,
.media-card,
.content-panel,
.service-card,
.news-feature,
.news-card,
.gallery-item,
.live-video-card,
.team-card,
.team-photo-card,
.contact-card,
.contact-form,
.article-shell,
.related-card,
.section-nav-card,
.stat-card,
.gallery-modal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: var(--shadow-md);
}

.page-hero::before,
.live-player::before,
.live-sidecard::before,
.service-card::before,
.news-feature::before,
.news-card::before,
.team-card::before,
.related-card::before,
.section-nav-card::before,
.article-shell::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-lime), var(--brand-orange));
}

.page-hero {
  max-width: 960px;
  padding: 32px;
}

.page-hero h1 {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.page-hero p,
.section-head p,
.content-panel p,
.live-sidecard p,
.news-feature p,
.news-card p,
.team-card p,
.contact-card,
.contact-form label,
.rich-copy p,
.article-body,
.related-card p,
.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-green), #61b346);
  box-shadow: 0 10px 24px rgba(79, 155, 55, 0.18);
}

.btn-live {
  color: #fff;
  background: linear-gradient(135deg, #dc262f, #b11116);
  box-shadow: 0 10px 24px rgba(207, 29, 36, 0.18);
}

.btn-secondary {
  color: var(--text-strong);
  background: linear-gradient(135deg, var(--brand-lime), #ebf474);
  box-shadow: 0 10px 24px rgba(199, 218, 24, 0.16);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: #fff;
}

.hero-strip,
.services-grid,
.news-grid,
.gallery-grid,
.live-video-grid,
.team-grid,
.related-grid,
.section-nav-grid,
.contact-cards {
  display: grid;
  gap: 18px;
}

.hero-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 18px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-strong);
  font-size: 1.18rem;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.6;
}

.section-head {
  max-width: 740px;
  margin-bottom: 22px;
}

.section-head h2,
.content-panel h2 {
  margin: 0 0 10px;
  color: var(--brand-green);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  letter-spacing: -0.03em;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.live-layout,
.split-section,
.team-layout,
.contact-layout,
.news-feature,
.gallery-modal-card {
  display: grid;
  gap: 22px;
}

.live-layout {
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  align-items: stretch;
}

.live-main-column {
  display: grid;
  gap: 16px;
}

.live-player {
  min-height: 430px;
  padding: 16px;
}

.live-player iframe,
.live-player .live-placeholder {
  width: 100%;
  min-height: 396px;
  border: 0;
  border-radius: 18px;
}

.live-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn-live-social {
  color: var(--text-strong);
  border-color: var(--line);
  background: #fff;
}

.live-placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(79, 155, 55, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fafb 0%, #edf2f5 100%);
}

.live-placeholder--poster {
  background-position: center;
  background-size: cover;
}

.live-placeholder-overlay {
  max-width: 580px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.live-placeholder p {
  margin: 16px 0 0;
  max-width: 460px;
  color: var(--muted);
}

.live-offline-title {
  margin: 0;
  color: var(--text-strong);
  font-family: "Oxanium", "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.live-sidecard,
.content-panel,
.contact-card,
.contact-form,
.news-card,
.service-card,
.team-card,
.related-card {
  padding: 24px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 13px 14px;
  border: 1px solid #e7ecef;
  border-radius: 14px;
  background: #f9fbfc;
  color: #31404b;
}

.split-section {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.media-card img,
.team-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.rich-copy p {
  margin-top: 0;
}

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

.service-card h3,
.news-card h3,
.team-card h3,
.related-card h3,
.news-feature h3 {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-size: 1.34rem;
}

.news-feature {
  display: block;
  margin-bottom: 18px;
  padding: 0;
}

.news-feature img,
.news-card img,
.gallery-item img,
.live-video-card img,
.related-card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.news-feature img {
  aspect-ratio: 1 / 1;
}

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

.news-card {
  padding: 0;
}

body[data-page="home"] .news-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-news-card {
  padding: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-news-card:hover,
.home-news-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.home-news-link {
  display: block;
}

.home-news-card img {
  width: 100%;
  height: 240px;
  margin-bottom: 14px;
  border-radius: 18px;
  object-fit: cover;
}

.home-news-card h3 {
  margin: 0 0 8px;
  color: var(--text-strong);
  font-size: 1.2rem;
}

.home-news-card p {
  margin: 0;
}

.news-meta,
.gallery-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.news-meta span,
.gallery-meta span,
.article-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f6f8;
  border: 1px solid #e3e8ed;
  color: var(--brand-green);
}

.news-link,
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--brand-green);
  font-weight: 700;
}

.news-feed-card {
  overflow: hidden;
}

.news-feed-card .feed-image-link {
  display: block;
}

.feed-post-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px 14px;
}

.feed-author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.feed-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-orange));
  color: #fff;
  font-family: "Oxanium", "Exo 2", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.feed-meta {
  min-width: 0;
}

.feed-meta strong {
  display: block;
  color: var(--text-strong);
  font-size: 1rem;
}

.feed-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.feed-badge {
  padding: 7px 11px;
  border-radius: 999px;
  background: #f3f6f8;
  border: 1px solid #e3e8ed;
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feed-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 20px 0;
}

.feed-share-row--compact {
  padding-top: 12px;
}

.feed-action {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.feed-action:hover,
.feed-action:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.feed-copy {
  display: grid;
  gap: 10px;
  padding: 16px 20px 22px;
}

.feed-engagement-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 0;
}

.like-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.like-button:hover,
.like-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.like-button.is-liked {
  color: #fff;
  border-color: #cf1d24;
  background: linear-gradient(135deg, #dc262f, #b11116);
}

.like-icon {
  font-size: 1rem;
  line-height: 1;
}

.feed-copy h3 {
  margin: 0;
}

.feed-caption {
  margin: 0;
}

.feed-link {
  margin-top: 2px;
}

body[data-page="news"] .page-hero {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

body[data-page="news"] .page-hero .section-kicker {
  justify-content: center;
}

body[data-page="news"] .page-hero p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.news-page-hero {
  padding-bottom: 26px;
}

.news-feed-layout {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(280px, 320px);
  gap: 24px;
  align-items: start;
  justify-content: center;
}

.news-feed-layout--single {
  grid-template-columns: minmax(0, 760px);
}

.news-feed-main {
  display: grid;
  gap: 22px;
}

.news-feed-sidebar {
  position: sticky;
  top: 110px;
}

.news-profile-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: var(--shadow-sm);
}

.news-profile-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.news-profile-head img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #edf1e8 100%);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
}

.news-profile-head strong {
  display: block;
  color: var(--text-strong);
  font-family: "Oxanium", "Exo 2", sans-serif;
  font-size: 1.08rem;
}

.news-profile-head span,
.news-profile-card p,
.news-profile-stats span {
  color: var(--muted);
}

.news-profile-card p {
  margin: 16px 0 0;
  line-height: 1.65;
}

.news-profile-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.news-profile-stats div {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--surface-soft);
}

.news-profile-stats strong {
  display: block;
  color: var(--text-strong);
  font-family: "Oxanium", "Exo 2", sans-serif;
  font-size: 1.2rem;
}

.news-profile-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

body[data-page="news"] .news-section .container {
  width: min(calc(100% - 32px), 1120px);
}

body[data-page="news"] .news-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

body[data-page="news"] .news-feature {
  margin-bottom: 0;
}

body[data-page="news"] .news-feed-card,
body[data-page="news"] .news-feature {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="news"] .news-feed-card {
  box-shadow: var(--shadow-sm);
}

body[data-page="news"] .feed-post-head {
  padding: 16px 18px 12px;
}

body[data-page="news"] .feed-share-row {
  padding: 12px 18px 0;
}

body[data-page="news"] .feed-engagement-row {
  padding: 12px 18px 0;
}

body[data-page="news"] .feed-copy {
  padding: 14px 18px 22px;
}

body[data-page="news"] .feed-action {
  min-width: 112px;
}

body[data-page="news"] .feed-caption {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-share {
  margin: 0 0 18px;
}

.article-share-bottom {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

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

.live-video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.live-video-card {
  overflow: hidden;
  padding: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.live-video-card:hover,
.live-video-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.live-video-link {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.live-video-card img,
.live-video-fallback {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.live-video-fallback {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(79, 155, 55, 0.28), transparent 34%),
    linear-gradient(135deg, #111827, #7d1b24);
  color: #fff;
  font-family: "Oxanium", "Exo 2", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-video-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.live-video-body span {
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-video-body h3 {
  margin: 0;
  color: var(--text-strong);
  line-height: 1.25;
}

.live-video-body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.live-video-body small {
  color: var(--muted);
  font-weight: 700;
}

.gallery-item {
  padding: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.gallery-item img {
  height: 240px;
  margin-bottom: 14px;
}

.gallery-open-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.gallery-actions,
.gallery-modal-actions {
  display: grid;
  gap: 12px;
}

.gallery-actions {
  margin-top: 16px;
}

.gallery-actions .feed-share-row,
.gallery-modal-actions .feed-share-row,
.gallery-actions .feed-share-row--compact,
.gallery-modal-actions .feed-share-row--compact,
.gallery-actions .feed-engagement-row,
.gallery-modal-actions .feed-engagement-row {
  padding: 0;
}

.gallery-item h3 {
  margin: 0 0 8px;
  color: var(--text-strong);
  font-size: 1.2rem;
}

.news-empty,
.gallery-empty,
.service-empty,
.team-empty {
  text-align: center;
}

.news-empty p,
.gallery-empty p,
.service-empty p,
.team-empty p {
  margin-bottom: 0;
}

.team-layout {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

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

.team-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  align-items: start;
}

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

.contact-card span {
  margin-bottom: 10px;
  color: var(--brand-green);
}

.contact-card a,
.contact-card strong {
  color: var(--text-strong);
  font-size: 1.05rem;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.1);
  color: #854d0e;
  font-size: 0.94rem;
  line-height: 1.45;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: 13px 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(79, 155, 55, 0.4);
  box-shadow: 0 0 0 4px rgba(79, 155, 55, 0.08);
}

.form-status {
  min-height: 24px;
  margin: 0;
}

.section-nav-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-nav-card {
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.section-nav-card:hover,
.section-nav-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.section-nav-card span {
  color: var(--brand-orange);
}

.section-nav-card strong {
  color: var(--text-strong);
  font-size: 1.24rem;
  line-height: 1.45;
}

.site-footer {
  margin-top: 28px;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(13, 23, 31, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 6px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 24, 29, 0.42);
  backdrop-filter: blur(10px);
  z-index: 60;
}

.gallery-modal-card {
  width: min(100%, 980px);
  padding: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}

.gallery-modal-card img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #f3f6f8;
  border-radius: 18px;
}

.gallery-modal-actions + .gallery-modal-actions {
  margin-top: 12px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  border-radius: 999px;
  padding: 11px 17px;
  background: #fff;
  color: var(--text-strong);
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.article-page {
  min-height: 100vh;
}

.article-hero {
  padding: 32px 0 22px;
}

.article-shell {
  padding: 30px;
}

.article-shell h1 {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

.article-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
  margin: 16px 0 22px;
}

.article-body {
  font-size: 1.08rem;
}

.article-body p {
  margin-top: 0;
}

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

.related-card img {
  aspect-ratio: 1 / 1;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  .live-layout,
  .split-section,
  .team-layout,
  .contact-layout,
  .news-feature,
  .gallery-modal-card,
  .news-feed-layout {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .news-grid,
  .gallery-grid,
  .live-video-grid,
  .team-grid,
  .related-grid,
  .contact-cards,
  .section-nav-grid,
  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-card img,
  .team-photo-card img {
    min-height: 360px;
  }

  body[data-page="news"] .news-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="news"] .page-hero {
    max-width: 760px;
  }

  body[data-page="news"] .news-section .container {
    width: min(calc(100% - 32px), 760px);
  }

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

@media (min-width: 761px) {
  .gallery-item img,
  .home-news-card img,
  body[data-page="news"] .news-card img {
    object-fit: contain;
    background: #f3f6f8;
  }

  body[data-page="news"] .news-feature img,
  body[data-page="news"] .related-card img,
  .article-cover {
    object-fit: contain;
    background: #f3f6f8;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 14px), var(--container));
  }

  .broadcast-inner,
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .broadcast-inner {
    min-height: 42px;
    gap: 8px;
    padding: 8px 0;
  }

  .broadcast-inner p {
    font-size: 0.86rem;
  }

  .site-header {
    padding: 12px 0 2px;
  }

  .header-inner {
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    width: 56px;
    height: 56px;
    padding: 6px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand span {
    font-size: 0.85rem;
  }

  .site-nav {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 9px 13px;
    font-size: 0.9rem;
  }

  .section-nav-card {
    width: 100%;
  }

  .hero-actions,
  .services-grid,
  .news-grid,
  .gallery-grid,
  .live-video-grid,
  .team-grid,
  .related-grid,
  .contact-cards,
  .section-nav-grid,
  .hero-strip {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .live-sidecard,
  .content-panel,
  .contact-card,
  .contact-form,
  .team-card,
  .news-card,
  .service-card,
  .article-shell,
  .section-nav-card,
  .news-feature {
    padding: 18px;
  }

  .news-grid,
  .gallery-grid,
  .live-video-grid {
    gap: 18px;
  }

  body[data-page="home"] .news-grid {
    grid-template-columns: 1fr;
  }

  .home-news-card,
  .gallery-item,
  .live-video-card,
  body[data-page="news"] .news-card {
    width: 100%;
    max-width: 100%;
    padding: 14px;
  }

  .section-block {
    padding: 24px 0;
  }

  .page-hero {
    padding: 18px;
    border-radius: 18px;
  }

  .page-hero h1,
  .section-head h2,
  .content-panel h2,
  .article-shell h1 {
    line-height: 1.08;
  }

  .page-hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .page-hero p,
  .section-head p,
  .news-card p,
  .news-feature p,
  .service-card p,
  .team-card p,
  .related-card p {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin: 18px 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-head {
    margin-bottom: 16px;
  }

  .section-kicker {
    margin-bottom: 10px;
  }

  .live-player {
    min-height: 310px;
    padding: 12px;
  }

  .live-player iframe,
  .live-player .live-placeholder {
    min-height: 270px;
  }

  .live-placeholder {
    padding: 22px;
  }

  .news-feature,
  .article-shell {
    border-radius: 20px;
  }

  .news-feature img,
  .news-card img,
  .related-card img,
  .gallery-item img,
  .live-video-card img {
    border-radius: 14px;
  }

  .gallery-item img {
    height: 220px;
    object-fit: cover;
  }

  .home-news-card img {
    height: 220px;
  }

  .feed-post-head {
    padding: 16px 16px 12px;
  }

  .feed-share-row,
  .feed-share-row--compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 0 0;
  }

  .feed-engagement-row {
    padding: 12px 0 0;
  }

  .feed-copy {
    padding: 14px 0 4px;
  }

  .feed-action {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 9px 8px;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
    font-size: 0.85rem;
  }

  .like-button {
    width: 100%;
    min-height: 42px;
    justify-content: center;
  }

  .gallery-actions,
  .gallery-modal-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .gallery-actions .feed-share-row,
  .gallery-modal-actions .feed-share-row,
  .gallery-actions .feed-share-row--compact,
  .gallery-modal-actions .feed-share-row--compact,
  .gallery-actions .feed-engagement-row,
  .gallery-modal-actions .feed-engagement-row {
    padding-left: 0;
    padding-right: 0;
  }

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

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
  }

  .footer-inner {
    gap: 10px;
  }

  .footer-inner p {
    font-size: 0.9rem;
  }
}
