:root {
  --color-primary: #1a2744;
  --color-primary-hover: #253659;
  --color-gold: #C9A96E;
  --color-gold-hover: #b8914f;
  --color-bg: #f8f8f8;
  --font-main: 'Inter', system-ui, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

* { box-sizing: border-box; }

body {
  font-family: var(--font-main);
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #222;
}

main { flex: 1; }

/* ─── Header ─────────────────────────────────────────────── */

.site-header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
}
.logo-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.logo-tagline {
  font-size: 0.68rem;
  color: #999;
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.main-nav a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--color-primary); }

/* Header right */
.header-right { flex-shrink: 0; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.phone-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  white-space: nowrap;
}
.phone-sub {
  font-size: 0.68rem;
  color: #999;
  line-height: 1.2;
  white-space: nowrap;
}

/* Header CTA button */
.btn-header-cta {
  display: inline-block;
  background: var(--color-primary);
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-header-cta:hover { background: var(--color-primary-hover); }

/* Mobile nav */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mobile-nav a {
  display: block;
  padding: 0.5rem 0;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ─── Hero ────────────────────────────────────────────────── */

.hero-section {
  padding: 2rem 0 3rem;
  background-image:
    linear-gradient(to right, #fff 38%, rgba(255,255,255,0.7) 58%, transparent 78%),
    url('/static/img/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  min-height: 380px;
  overflow: hidden;
}

.hero-left {
  padding-right: 2rem;
  padding-bottom: 2rem;
}

.hero-heading {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Hero buttons */
.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background 0.15s;
  border: none;
}
.btn-hero-primary {
  background: var(--color-primary);
  color: #fff !important;
}
.btn-hero-primary:hover { background: var(--color-primary-hover); }

.btn-hero-secondary {
  background: var(--color-gold);
  color: #fff !important;
}
.btn-hero-secondary:hover { background: var(--color-gold-hover); }

/* Hero features */
.hero-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 0.5rem 0 0;
  margin-top: 0;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.hero-feature-text {
  font-size: 0.76rem;
  color: var(--color-primary);
  line-height: 1.45;
}

@media (max-width: 991.98px) {
  .hero-section {
    background-image:
      linear-gradient(to bottom, rgba(255,255,255,0.95) 70%, rgba(255,255,255,0.5) 100%),
      url('/static/img/hero-bg.jpg');
    background-position: center;
  }
  .hero-left { padding-right: 0; }
}

/* ─── Common buttons ──────────────────────────────────────── */

.btn-gold {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}
.btn-gold:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: #fff;
}
.btn-outline-gold {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: #fff;
}

/* ─── Cards ───────────────────────────────────────────────── */

.search-card {
  background: #fff;
  border: 1px solid #e0d9d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.search-card .form-control,
.search-card .form-select {
  border-color: #d5cec5;
  background-color: #fdfaf7;
  font-size: 0.9rem;
}
.search-card .form-control:focus,
.search-card .form-select:focus {
  border-color: var(--color-gold);
  box-shadow: none;
}

.sidebar-card {
  background: #fff;
  border: 1px solid #e0d9d0;
  border-radius: 0.5rem;
  padding: 1.25rem;
}

/* ─── Typography helpers ──────────────────────────────────── */

.results-count {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* ─── Pagination ──────────────────────────────────────────── */

.pagination .page-link {
  color: #444;
  border-color: #ddd;
  background-color: transparent;
  min-width: 2.2rem;
  text-align: center;
}
.pagination .page-item.active .page-link {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.pagination .page-link:hover {
  background-color: #f0ebe4;
  color: #1a1a1a;
  border-color: #ddd;
}

/* ─── Page content (CMS pages) ────────────────────────────── */

.detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-back {
  font-size: 0.875rem;
  color: #555;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.detail-back:hover { color: var(--color-gold); }

.detail-content {
  font-size: 0.975rem;
  color: #333;
  line-height: 1.8;
}
.detail-content p { margin-bottom: 1rem; }
.detail-content h2 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-weight: 700; font-size: 1.25rem; }
.detail-content h3 { margin-top: 1.25rem; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.95rem; font-family: var(--font-main); color: #1a1a1a; }
.detail-content img { max-width: 100%; height: auto; border-radius: 4px; }
.detail-content a { color: var(--color-gold); text-decoration: underline; }
.detail-content a:hover { color: var(--color-gold-hover); }

/* ─── Newspapers section ──────────────────────────────────── */

.newspapers-section {
  background: #fff;
  padding: 3rem 0 2.5rem;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.newspapers-heading {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.newspapers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 3rem;
  margin-bottom: 2rem;
}
.newspaper-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.newspaper-logo:hover { opacity: 1; }
.newspaper-logo img {
  max-height: 44px;
  width: auto;
  display: block;
}

.newspapers-cta { text-align:center; }
.newspapers-btn {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 0.3rem;
  text-decoration: none;
}
.newspapers-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ─── How it works ────────────────────────────────────────── */

.hiw-section {
  background: #fff;
  padding: 3.5rem 0;
  border-bottom: 1px solid #e8e8e8;
}
.hiw-heading {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  max-width: 220px;
}
.hiw-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-primary);
  flex-shrink: 0;
}
.hiw-body { padding-top: 0.1rem; }
.hiw-num {
  font-size: 0.72rem;
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.hiw-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}
.hiw-desc {
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.5;
}
.hiw-arrow {
  color: #d1d5db;
  font-size: 1rem;
  padding: 0 0.75rem;
  margin-top: 1rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hiw-steps { flex-wrap: wrap; gap: 1.5rem; justify-content: flex-start; }
  .hiw-arrow { display: none; }
  .hiw-step { max-width: 100%; flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 479px) {
  .hiw-step { flex: 0 0 100%; }
}

/* ─── Services section ────────────────────────────────────── */

.services-section {
  background: #f4f4f4;
  padding: 3.5rem 0;
}
.dodaj-services .services-section {
  padding-top: 1.5rem;
}
.service-card {
  display: flex;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  height: 100%;
}
.service-card-img {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
}
.service-card-img--nekrologi {
  background-color: var(--color-primary);
  color: rgba(255,255,255,0.7);
}
.service-card-img--ogloszenia {
  background-color: var(--color-gold);
  color: rgba(255,255,255,0.85);
}
.service-card-img--photo {
  padding: 1rem;
}
.service-card-img--photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.service-card-desc {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.service-card-list li {
  font-size: 0.83rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.service-card-list li i {
  color: var(--color-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.service-card-btn {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.25rem;
  border-radius: 0.3rem;
  align-self: flex-start;
  margin-top: auto;
}
.service-card-btn--primary {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
}
.service-card-btn--primary:hover { background-color: var(--color-primary-hover); color: #fff; }
.service-card-btn--gold {
  background-color: var(--color-gold);
  color: #fff;
  border: none;
}
.service-card-btn--gold:hover { background-color: var(--color-gold-hover); color: #fff; }

/* ─── Trust bar ───────────────────────────────────────────── */

.trust-bar {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  padding: 2.5rem 0 2rem;
}
.trust-bar-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 2rem;
  border-right: 1px solid #e8e8e8;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-icon {
  font-size: 2rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.trust-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}
.trust-desc {
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0;
  }
  .trust-item {
    padding: 0 1rem;
    border-right: none;
  }
  .trust-item:first-child { padding-left: 1rem; }
  .trust-item:nth-child(odd) { border-right: 1px solid #e8e8e8; }
}
@media (max-width: 479px) {
  .trust-bar-grid { grid-template-columns: 1fr; }
  .trust-item:nth-child(odd) { border-right: none; }
}

/* ─── Footer ──────────────────────────────────────────────── */

.site-footer {
  background-color: var(--color-primary);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 0 2rem;
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 0;
}
.site-footer a { color: #9ca3af; text-decoration: none; }
.site-footer a:hover { color: var(--color-gold); }

.footer-logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.footer-logo-sub {
  font-size: 0.68rem;
  color: #6b7280;
}
.footer-copyright {
  font-size: 0.72rem;
  color: #6b7280;
  margin-top: 0.75rem;
}
.footer-heading {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.4rem; }

/* ─── Ogłoszenia hero ─────────────────────────────────────── */

.ogl-hero {
  background-color: #7b7fc4;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  overflow: hidden;
  min-height: 480px;
}
.ogl-hero-left {
  padding: 3.5rem 2rem 3.5rem 0;
}
.ogl-heading {
  font-family: var(--font-main);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.ogl-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.ogl-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
.ogl-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #2d2f5e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.btn-ogl {
  display: inline-block;
  background-color: #2d2f5e;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.2s;
}
.btn-ogl:hover { background-color: #1e2045; color: #fff; }
.ogl-hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.ogl-hero-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem 0 0 0;
}
@media (max-width: 991px) {
  .ogl-hero-left { padding: 2.5rem 0 1.5rem; }
  .ogl-hero-right { justify-content: center; }
  .ogl-hero-img { border-radius: 0.5rem; margin-bottom: 2rem; }
}

/* ─── Ogłoszenia titles section ───────────────────────────── */

.ogl-titles {
  background-color: var(--color-primary);
  padding: 3.5rem 0;
  color: #fff;
}
.ogl-titles-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.ogl-titles-heading::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: #f97316;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.ogl-np-group { margin-bottom: 2.5rem; }
.ogl-np-group-label {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.ogl-np-group-label i { font-size: 1.4rem; }
.ogl-np-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  justify-content: center;
  overflow-x: auto;
}
.ogl-np-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.6rem;
  padding: 0.9rem 1.4rem;
  transition: border-color 0.2s, background 0.2s;
  min-width: 160px;
}
.ogl-np-item:hover {
  background: #fff;
  border-color: #fff;
}
.ogl-np-item img {
  max-height: 40px;
  max-width: 130px;
  width: auto;
  display: block;
}

.ogl-regions-group { margin-bottom: 2.5rem; }
.ogl-regions-label {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
}
.ogl-regions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.ogl-region-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2rem;
  padding: 0.45rem 1.1rem;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.ogl-region-pill i { color: #f97316; font-size: 0.85rem; }
.ogl-region-pill:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.ogl-region-wrap {
  position: relative;
}
.ogl-region-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--color-primary);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  min-width: 200px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  z-index: 200;
  white-space: nowrap;
}
.ogl-region-tooltip strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  display: block;
  margin-bottom: 0.4rem;
}
.ogl-region-tooltip ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ogl-region-tooltip ul li {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.15rem 0;
}
.ogl-region-tooltip ul li a {
  color: var(--color-primary);
  text-decoration: none;
  display: block;
  padding: 0.1rem 0;
  transition: color 0.15s;
}
.ogl-region-tooltip ul li a:hover { color: #f97316; }
.ogl-region-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
}
.ogl-region-tooltip.is-open { display: block; }
.ogl-region-pill.is-active {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}
.btn-ogl-orange {
  display: inline-block;
  background-color: #f97316;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 3rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.2s;
}
.btn-ogl-orange:hover { background-color: #ea6c0a; color: #fff; }

/* ─── Newspapers section: dual-action cards & pair CTA ────── */

.ogl-np-grid--dual {
  flex-wrap: wrap;
  gap: 1rem;
}
.ogl-np-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.6rem;
  padding: 0.9rem 1rem 0.6rem;
  min-width: 170px;
  gap: 0.55rem;
}
.ogl-np-card > img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  display: block;
}
.ogl-np-card-actions {
  display: flex;
  gap: 0.4rem;
  width: 100%;
  justify-content: center;
}
.ogl-np-card-actions a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border-radius: 0.35rem;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}
.ogl-np-card-actions a:first-child {
  background: #f97316;
  color: #fff;
}
.ogl-np-card-actions a:first-child:hover { background: #ea6c0a; }
.ogl-np-card-actions a:last-child {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.ogl-np-card-actions a:last-child:hover {
  background: var(--color-primary);
  color: #fff;
}

.ogl-region-tooltip--dual {
  min-width: 260px;
  white-space: normal;
}
.ogl-region-tooltip--dual ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.2rem 0;
}
.ogl-region-tooltip--dual ul li .np-name {
  flex: 1;
  font-size: 0.88rem;
  color: var(--color-primary);
}
.ogl-region-tooltip--dual ul li .np-actions {
  display: inline-flex;
  gap: 0.3rem;
}
.ogl-region-tooltip--dual ul li .np-actions a {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.3rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ogl-region-tooltip--dual ul li .np-actions a:first-child {
  background: #f97316;
  color: #fff;
}
.ogl-region-tooltip--dual ul li .np-actions a:first-child:hover { background: #ea6c0a; color: #fff; }
.ogl-region-tooltip--dual ul li .np-actions a:last-child {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.ogl-region-tooltip--dual ul li .np-actions a:last-child:hover {
  background: var(--color-primary);
  color: #fff;
}

.ogl-cta-pair {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.btn-ogl-orange--alt {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn-ogl-orange--alt:hover {
  background-color: #fff;
  color: var(--color-primary);
}

/* ─── Press Review section ────────────────────────────────── */

.press-review-section {
  background: #f4f4f4;
  padding: 3rem 0 3.5rem;
  border-top: 1px solid #e8e8e8;
}
.press-review-heading {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.press-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .press-review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .press-review-grid { grid-template-columns: 1fr; }
}
.press-article-card {
  background: #fff;
  border: 1px solid #e0d9d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.press-article-date {
  font-size: 0.72rem;
  color: #a0856a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.press-article-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.press-article-lead {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.press-article-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  align-self: flex-start;
}
.press-article-more:hover { color: var(--color-gold-hover); }
.press-review-cta { text-align: center; }

/* ─── Article list page ───────────────────────────────────── */

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.article-list-item {
  padding: 2rem 0;
  border-bottom: 1px solid #e8e8e8;
}
.article-list-item:first-child { padding-top: 0; }
.article-list-date {
  font-size: 0.72rem;
  color: #a0856a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.article-list-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.article-list-title a {
  color: inherit;
  text-decoration: none;
}
.article-list-title a:hover { color: var(--color-gold); }
.article-list-lead {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.article-date-header {
  font-size: 0.78rem;
  color: #a0856a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

/* ─── CKEditor ────────────────────────────────────────────── */

.ck.ck-editor__editable a { color: var(--color-gold); text-decoration: underline; }
.ck.ck-editor__editable a:hover { color: var(--color-gold-hover); }
