/* The Activist TV — public styles */
:root {
  --color-primary: #c90104;
  --color-secondary: #0b1f3a;
  --color-text: #1a1a1a;
  --color-muted: #5a6570;
  --color-bg: #f5f6f8;
  --color-white: #ffffff;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
}

a { color: var(--color-secondary); text-decoration: none; }
a:hover { color: var(--color-primary); }

h1, h2, h3, h4, h5, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-secondary);
}

/* Top bar — always one row */
.top-bar {
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.85rem;
}
.top-bar a { color: #fff; opacity: 0.9; }
.top-bar a:hover { opacity: 1; color: #fff; }

.top-bar-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.top-bar-brand {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.top-bar-site {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}
.slogan-chip {
  display: inline-block;
  flex-shrink: 0;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}
.top-bar-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.15rem;
  flex: 0 0 auto;
}
.top-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff !important;
  opacity: 0.92;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.top-social:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.top-social svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* Brand */
.brand-wrap { background: #fff; }
.brand-wrap-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.brand-logo-link {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  max-height: 64px;
  width: auto;
  display: block;
}

@media (max-width: 767.98px) {
  /* Center main logo on phone/tablet portrait */
  .brand-wrap-inner {
    justify-content: center;
  }
  .brand-logo {
    max-height: 56px;
  }
}

@media (max-width: 575.98px) {
  .top-bar {
    padding-top: 0.3rem !important;
    padding-bottom: 0.3rem !important;
  }
  .top-bar-inner {
    gap: 0.35rem;
  }
  /* Brand name sits in logo below — keep slogan + icons on one row */
  .top-bar-site {
    display: none;
  }
  .slogan-chip {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
    padding: 0.18rem 0.4rem;
  }
  .top-social {
    width: 26px;
    height: 26px;
  }
  .top-social svg {
    width: 15px;
    height: 15px;
  }
}

/* Navbar — desktop enterprise bar */
.navbar-activist {
  --nav-h: 54px;
  background: var(--color-primary) !important;
  padding: 0 !important;
  min-height: var(--nav-h);
}
.navbar-activist > .container {
  min-height: var(--nav-h);
  display: flex;
  align-items: center; /* mobile: brand + toggler vertically centered */
}
.navbar-activist .navbar-collapse {
  align-items: stretch;
}
@media (min-width: 992px) {
  .navbar-activist > .container {
    align-items: stretch; /* desktop: full-height active links */
  }
}
.navbar-activist .navbar-nav-desktop {
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  min-height: var(--nav-h);
}
.navbar-activist .navbar-nav-desktop .nav-item {
  display: flex;
  align-items: stretch;
}
.navbar-activist .nav-link {
  display: flex;
  align-items: center;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  padding: 0 1.15rem !important;
  margin: 0;
  min-height: var(--nav-h);
  line-height: 1;
  border-radius: 0;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.navbar-activist .nav-link.dropdown-toggle {
  gap: 0.35rem;
}
.navbar-activist .nav-link.dropdown-toggle::after {
  margin-left: 0.2rem;
  vertical-align: 0.1em;
}
.navbar-activist .nav-link:hover,
.navbar-activist .nav-link:focus,
.navbar-activist .nav-link.active,
.navbar-activist .nav-item.dropdown.show > .nav-link,
.navbar-activist .nav-item.active > .nav-link {
  background: var(--color-secondary);
  color: #fff !important;
}

/* AMG + Archived — distinct end-of-bar items */
.navbar-activist .nav-item-amg {
  margin-left: auto;
}
.navbar-activist .nav-link-amg {
  gap: 0.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  background: #e8b923;
  color: #0b1f3a !important;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.navbar-activist .nav-link-amg:hover,
.navbar-activist .nav-link-amg:focus,
.navbar-activist .nav-link-amg.active {
  background: #f0c84a !important;
  color: #0b1f3a !important;
}
.navbar-activist .nav-amg-icon {
  flex-shrink: 0;
  color: #0b1f3a;
}
.navbar-activist .nav-link-archived {
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}
.navbar-activist .nav-link-archived:hover,
.navbar-activist .nav-link-archived:focus,
.navbar-activist .nav-link-archived.active {
  background: #071526 !important;
  color: #fff !important;
}
.navbar-activist .nav-archived-icon {
  flex-shrink: 0;
  opacity: 0.95;
}
.mobile-nav-link-amg {
  margin-top: 0.35rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  background: rgba(232, 185, 35, 0.18);
  color: #ffe08a !important;
}
.mobile-nav-link-amg.active {
  background: #e8b923 !important;
  color: #0b1f3a !important;
}
.mobile-nav-link-archived {
  color: #ffd7d7 !important;
}
.navbar-activist .dropdown-menu {
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  min-width: 230px;
  padding: 0.35rem 0;
  margin-top: 0 !important;
}
.navbar-activist .dropdown-item {
  font-weight: 600;
  color: var(--color-secondary);
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
}
.navbar-activist .dropdown-item:hover,
.navbar-activist .dropdown-item:focus,
.navbar-activist .dropdown-item.active {
  background: var(--color-primary);
  color: #fff;
}
.navbar-activist .dropdown-submenu { position: relative; }
.navbar-activist .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0;
  margin-top: 0;
}
.navbar-activist .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.55);
  display: none; /* desktop: no hamburger */
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0;
  padding: 0.4rem 0.55rem;
  line-height: 1;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile-only brand label in red bar */
.navbar-brand-mobile {
  display: none; /* desktop: hide "The Activist TV" label */
  align-items: center;
  align-self: center;
  color: #fff !important;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0;
  margin-right: auto;
  height: var(--nav-h);
  max-width: calc(100% - 60px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
  .navbar-activist .navbar-toggler {
    display: inline-flex;
  }
  .navbar-brand-mobile {
    display: inline-flex;
  }
}

/* Offcanvas mobile nav */
.offcanvas-activist {
  background: var(--color-secondary);
  color: #fff;
  width: min(320px, 88vw);
}
.offcanvas-activist .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
}
.offcanvas-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}
.offcanvas-brand-logo {
  display: block;
  max-height: 42px;
  width: auto;
  max-width: 210px;
  background: #fff;
  padding: 0.25rem 0.4rem;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
}
.mobile-nav-link,
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 0;
  min-height: 48px;
}
.mobile-nav-link.active,
.mobile-nav-toggle.is-active {
  color: #fff !important;
  background: rgba(201, 1, 4, 0.35);
  padding-left: 0.65rem;
  padding-right: 0.65rem;
  margin: 0 -0.15rem;
}
.mobile-nav-toggle.is-open {
  color: #fff !important;
}
.mobile-nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  opacity: 0.85;
}
.mobile-nav-toggle.is-open .mobile-nav-chevron {
  transform: rotate(180deg);
}
.mobile-nav-submenu {
  display: none;
  padding: 0.15rem 0 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav-submenu.is-open {
  display: block;
}
.mobile-nav-submenu[hidden] {
  display: none !important;
}
.mobile-nav-submenu a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.55rem 0;
  font-weight: 500;
  font-size: 0.95rem;
}
.mobile-nav-submenu a:hover {
  color: #fff;
}
.mobile-nav-subsub {
  padding-left: 0.75rem !important;
  opacity: 0.9;
}

/* Hero / cards */
.news-card {
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
  border: 1px solid #e8ecf1;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.12);
}
.news-card .news-thumb-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-card .thumb {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  display: block;
  background: #dde1e6;
}

/* Full-height enterprise text card (no featured image) */
.news-card:has(.news-textcard) {
  border-color: #d7dee8;
  box-shadow: 0 1px 0 rgba(11, 31, 58, 0.04);
}
.news-textcard {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: #eef2f7;
}
.news-textcard-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.news-card .thumb-wm-svg {
  width: 100%;
  height: 100%;
  display: block;
  color: rgba(11, 31, 58, 0.11);
  pointer-events: none;
}
.news-textcard-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-height: 280px;
  height: 100%;
  padding: 1.25rem 1.2rem 1.15rem;
  background:
    linear-gradient(180deg, rgba(238, 242, 247, 0.2) 0%, rgba(238, 242, 247, 0.72) 42%, rgba(238, 242, 247, 0.94) 100%);
}
.news-textcard-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.22rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-secondary);
}
.news-textcard-title {
  margin: 0 0 0.7rem;
  max-width: 100%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: #0b1f3a;
  background: #fff;
  box-shadow: 0 0 0 0.28em #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.news-textcard-desc {
  margin: 0 0 0.85rem;
  max-width: 100%;
}
.news-textcard-desc span {
  display: inline;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 0 0 0.22em var(--color-primary);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.news-textcard-meta {
  margin-top: auto;
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.01em;
}
.news-textcard-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-secondary);
}
.news-textcard:hover .news-textcard-cta {
  color: var(--color-primary);
}
.news-card .card-body {
  padding: 1rem 1.1rem 1.2rem;
  margin-top: auto;
}
.news-card .cat-badge {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
}
.news-card h3, .news-card h2 {
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0.45rem 0;
}
.news-meta {
  color: var(--color-muted);
  font-size: 0.82rem;
}

.section-title {
  border-left: 4px solid var(--color-primary);
  padding-left: 0.75rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-slide {
  position: relative;
  min-height: 360px;
  background: var(--color-secondary) center/cover no-repeat;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,.15) 0%, rgba(11,31,58,.85) 100%);
}
.hero-slide .caption {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
}
.hero-slide .caption h2 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}
.hero-slide .caption a { color: #fff; }
.carousel-control-prev-icon,
.carousel-control-next-icon { filter: drop-shadow(0 0 4px rgba(0,0,0,.6)); }

.sidebar-box {
  background: #fff;
  padding: 1.1rem;
  margin-bottom: 1.25rem;
}
.follow-us-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.follow-us-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #fff !important;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.follow-us-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  color: #fff !important;
}
.follow-us-btn--yt { background: #c90104; }
.follow-us-btn--fb { background: #0b1f3a; }
.follow-us-btn--ig { background: #111827; }
.trending-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #eceff2;
}
.trending-item:last-child { border-bottom: 0; }
.trending-thumb {
  flex: 0 0 84px;
  width: 84px;
  height: 64px;
  display: block;
  overflow: hidden;
  background: #0b1f3a;
}
.trending-item img,
.trending-thumb-watermark {
  width: 84px;
  height: 64px;
  object-fit: cover;
  display: block;
}
.trending-thumb-watermark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0b1f3a, #8a0103);
  padding: 0.25rem;
}
.trending-thumb-watermark img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  background: #fff;
  padding: 0.1rem;
}
.trending-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1;
  min-width: 1.5rem;
}

/* Article */
.article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  background: #dde1e6;
}
.article-content {
  background: #fff;
  padding: clamp(1rem, 3vw, 2rem);
  font-size: 1.08rem;
  line-height: 1.75;
}
.article-content img {
  max-width: 100%;
  height: auto;
}
.article-content figure {
  margin: 1.5rem auto;
  text-align: center;
  max-width: 100%;
}
.article-content figure img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.article-content figcaption {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Responsive embeds (YouTube / iframe pasted from TinyMCE) */
.article-content .article-embed,
.article-content .ratio {
  width: 100%;
  max-width: 100%;
  margin: 1.25rem 0;
}
.article-content .article-embed iframe,
.article-content .article-embed embed,
.article-content .article-embed video,
.article-content .ratio iframe,
.article-content .ratio embed,
.article-content .ratio video,
.article-content iframe.embed-media,
.article-content video.embed-media {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  border: 0;
}
/* Fallback if an iframe slipped past the PHP wrapper */
.article-content > iframe,
.article-content p > iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto !important;
  min-height: 200px;
  border: 0;
}
.author-box {
  background: #fff;
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.author-box img,
.author-box .author-photo {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  object-fit: contain;
  border-radius: 0;
  background: #f1f3f5;
  border: 1px solid #e5e7eb;
}
.author-box .author-photo-link {
  flex: 0 0 auto;
  line-height: 0;
}

/* Public editor / profile page */
.editor-profile {
  background: #fff;
  border-left: 4px solid var(--color-primary);
  padding: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 1.5rem;
}
.editor-profile-media {
  margin: 0 0 1rem;
}
.editor-profile-photo {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  background: #f1f3f5;
  border: 1px solid #e5e7eb;
}
.editor-profile-body h1 {
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .editor-profile {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .editor-profile-media {
    margin: 0;
    flex: 0 0 220px;
  }
  .editor-profile-photo {
    max-width: 220px;
  }
  .editor-profile-body {
    flex: 1;
    min-width: 0;
  }
}

/* Share */
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--color-secondary);
  color: #fff !important;
  transition: transform .15s ease, background .15s ease;
}
.share-btn:hover { transform: translateY(-2px); background: var(--color-primary); color: #fff !important; }
.share-wa { background: #25d366; }
.share-fb { background: #1877f2; }
.share-x { background: #111; }
.share-in { background: #0a66c2; }
.share-tg { background: #229ed9; }
.share-copy { background: var(--color-secondary); }

/* Breadcrumb */
.breadcrumb-activist {
  background: transparent;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: var(--color-secondary);
  color: rgba(255,255,255,.85);
  margin-top: 3rem;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: #ffb3b4; }
.site-footer h5 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
}
.footer-logo { max-height: 70px; background: #fff; padding: 0.35rem 0.5rem; }
.social-round {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff !important;
  margin-right: 0.35rem;
}
.social-round:hover { background: var(--color-primary); }

.btn-primary-atv {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
}
.btn-primary-atv:hover {
  background: #a00003;
  border-color: #a00003;
  color: #fff;
}
.btn-secondary-atv {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
  font-weight: 700;
}
.btn-secondary-atv:hover {
  background: #071526;
  border-color: #071526;
  color: #fff;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.pagination-panel {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.pagination-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
}
.pagination-step-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 44px;
  min-width: 96px;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff !important;
  background: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  text-decoration: none;
  line-height: 1;
}
.pagination-step-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff !important;
}
.pagination-step-btn.is-disabled {
  background: #e8edf3;
  border-color: #e8edf3;
  color: #94a3b8 !important;
  pointer-events: none;
}
.pagination-status {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}
.pagination-status strong {
  color: var(--color-secondary);
  font-size: 1.05rem;
}
.pagination-status-sep {
  opacity: 0.6;
}
.pagination-google {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.pagination-google .page-item {
  margin: 0;
}
.pagination-google .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  border-radius: 0;
  min-width: 42px;
  min-height: 42px;
  padding: 0.4rem 0.55rem;
  text-align: center;
  font-weight: 700;
  border: 1px solid #d7dde5;
  background: #fff;
  line-height: 1;
}
.pagination-google .page-item.active .page-link {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.pagination-google .page-item.disabled .page-link {
  color: #94a3b8;
  background: transparent;
  border-color: transparent;
}
.pagination-google .page-ellipsis {
  min-width: 1.25rem;
  min-height: auto;
  padding: 0.2rem;
  color: #64748b;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .pagination-panel {
    gap: 0.75rem;
  }
  .pagination-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.4rem;
    padding: 0.55rem;
    background: #fff;
    border: 1px solid #e5e9ef;
  }
  .pagination-step-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 0.88rem;
  }
  .pagination-step-btn:first-child {
    justify-self: stretch;
  }
  .pagination-step-btn:last-child {
    justify-self: stretch;
  }
  .pagination-status {
    justify-content: center;
    font-size: 0.85rem;
  }
  .pagination-google {
    gap: 0.35rem;
    padding: 0.15rem 0 0.25rem;
  }
  .pagination-google .page-link {
    min-width: 44px;
    min-height: 44px;
    font-size: 0.92rem;
  }
}

.search-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 .2rem rgba(201,1,4,.15);
}
.search-input-group {
  min-width: 280px;
}
.search-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}
.search-submit-btn svg {
  display: block;
}

@media (max-width: 991.98px) {
  .brand-logo { max-height: 52px; }
  .navbar-activist .dropdown-submenu > .dropdown-menu {
    left: 0;
    position: static;
    box-shadow: none;
    padding-left: 1rem;
  }
}

/* Contact page */
.contact-page {
  padding: clamp(1.25rem, 3vw, 2.25rem) 0 2.5rem;
}
.contact-page-header {
  margin-bottom: 1.5rem;
}
.contact-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.contact-lead {
  color: var(--color-muted, #6c757d);
  font-size: 1.05rem;
}
.contact-card {
  background: #fff;
  border: 1px solid #e6e9ee;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  height: 100%;
}
.contact-card-body {
  padding: clamp(1.15rem, 3vw, 1.75rem);
}
.contact-card--info {
  border-top: 3px solid var(--color-primary);
}
.contact-card--form {
  border-top: 3px solid var(--color-secondary);
}
.contact-info-block {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.contact-info-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 1, 4, 0.08);
  color: var(--color-primary);
}
.contact-info-title {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
  color: var(--color-secondary);
}
.contact-info-text {
  color: #334155;
  line-height: 1.65;
  font-size: 0.98rem;
}
.contact-divider {
  height: 1px;
  background: #eef1f5;
  margin: 1.25rem 0;
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-secondary);
  color: #fff !important;
  transition: transform 0.15s ease, background 0.15s ease;
}
.contact-social-btn:hover {
  background: var(--color-primary);
  color: #fff !important;
  transform: translateY(-2px);
}
.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #eef1f5;
  padding: 0.75rem 0.9rem;
}
.contact-note svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--color-secondary);
}
.contact-form-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  color: var(--color-secondary);
}
.contact-form-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.15rem;
  color: var(--color-secondary);
}
.contact-form-sub {
  color: #64748b;
  font-size: 0.92rem;
}
.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.4rem;
}
.contact-label svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.contact-form .form-control {
  border-color: #d7dde5;
  border-radius: 0;
}
.contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(201, 1, 4, 0.12);
}
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
}
.contact-success {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
@media (max-width: 575.98px) {
  .contact-form .form-control-lg {
    font-size: 1rem;
    min-height: 48px;
  }
  .contact-social-btn {
    width: 48px;
    height: 48px;
  }
}

/* Archived news (legacy WordPress table `p`) */
.archive-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}
.archive-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.18rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #334155;
}
.archive-card {
  border-style: dashed;
}
.archive-article {
  background: #fff;
  border: 1px solid #e5e9ef;
  padding: clamp(1rem, 3vw, 1.75rem);
}
.archive-article-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.35rem 0 0.5rem;
  color: var(--color-secondary);
}
.archive-article-hero {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
  background: #e9eef5;
}
.archive-article-content img {
  max-width: 100%;
  height: auto;
}
