/* ============================================================
   Page Content Sections — Styles
   Includes: base section styles + v2.1 fluid variants
   ============================================================ */

/* ── Base section container ─────────────────────── */
.pcs {
  padding: 4rem 0;
}
.pcs-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 992px) { .pcs-inner { padding: 0 2rem; } }

/* ── Sidebar CTA layout ───────────────────────── */
.pcs-layout-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .pcs-layout-sidebar {
    flex-direction: row;
    gap: 3rem;
  }
  .pcs-layout-sidebar > .pcs-main {
    flex: 1;
    min-width: 0;
  }
  .pcs-layout-sidebar > .pcs-sidebar {
    flex: 0 0 320px;
    max-width: 360px;
  }
}

/* Sidebar card styles */
.pcs-sidebar {
  border-radius: 8px;
  padding: 2rem;
  align-self: flex-start;
}
.pcs-sidebar--dark {
  background: var(--deep);
  color: white;
}
.pcs-sidebar--accent {
  background: var(--accent);
  color: white;
}
.pcs-sidebar--light {
  background: var(--warm-white);
  color: var(--deep);
  border: 1px solid rgba(0,0,0,0.08);
}
.pcs-sidebar-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  object-fit: cover;
}
.pcs-sidebar-heading {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.pcs-sidebar--dark .pcs-sidebar-heading,
.pcs-sidebar--accent .pcs-sidebar-heading { color: white; }
.pcs-sidebar-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  opacity: 0.85;
}
.pcs-sidebar-btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.pcs-sidebar-btn:hover {
  transform: translateY(-1px);
}
.pcs-sidebar--dark .pcs-sidebar-btn {
  background: var(--accent);
  color: white;
}
.pcs-sidebar--dark .pcs-sidebar-btn:hover {
  background: #b01830;
}
.pcs-sidebar--accent .pcs-sidebar-btn {
  background: white;
  color: var(--accent);
}
.pcs-sidebar--accent .pcs-sidebar-btn:hover {
  background: var(--cream);
}
.pcs-sidebar--light .pcs-sidebar-btn {
  background: var(--deep);
  color: white;
}
.pcs-sidebar--light .pcs-sidebar-btn:hover {
  background: #0d2233;
}

/* ── Variant backgrounds ────────────────────────── */
.pcs-variant--default { background: var(--cream); }
.pcs-variant--white { background: var(--warm-white); }
.pcs-variant--dark {
  background: var(--deep);
  color: rgba(255,255,255,0.85);
}
.pcs-variant--accent {
  background: var(--accent);
  color: white;
}
.pcs-variant--fluid_wave_top { background: var(--cream); }
.pcs-variant--fluid_wave_both { background: var(--cream); }
.pcs-variant--fluid_dark_wave {
  background: var(--deep);
  color: rgba(255,255,255,0.85);
}

/* Dark variant overrides */
.pcs--dark .sec-label { color: rgba(255,255,255,0.4); }
.pcs--dark .sec-title { color: white; }
.pcs--dark .pcs-text { color: rgba(255,255,255,0.65); }
.pcs--dark .pcs-text p { color: rgba(255,255,255,0.65); }
.pcs--dark .pcs-stat strong { color: white; }
.pcs--dark .pcs-stat small { color: rgba(255,255,255,0.4); }

/* Accent variant overrides */
.pcs-variant--accent .sec-label { color: rgba(255,255,255,0.6); }
.pcs-variant--accent .sec-title { color: white; }
.pcs-variant--accent .pcs-text { color: rgba(255,255,255,0.85); }

/* ── Block Highlight variants ──────────────────── */
/* Light: dark background blocks behind headings, on cream/white bg */
.pcs-variant--block_highlight {
  background: var(--cream);
}
.pcs-variant--block_highlight .sec-title {
  display: inline;
  background: var(--deep);
  color: white;
  padding: 0.15em 0.45em;
  line-height: 1.65;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.pcs-variant--block_highlight .sec-label {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.2em 0.7em;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

/* Dark: semi-transparent white blocks on a dark/image background */
.pcs-variant--block_highlight_dark {
  background: var(--deep);
  color: rgba(255,255,255,0.85);
}
.pcs-variant--block_highlight_dark .sec-title {
  display: inline;
  background: var(--accent);
  color: white;
  padding: 0.15em 0.45em;
  line-height: 1.65;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.pcs-variant--block_highlight_dark .sec-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 0.2em 0.7em;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}
.pcs-variant--block_highlight_dark .pcs-text { color: rgba(255,255,255,0.75); }
.pcs-variant--block_highlight_dark .pcs-text p { color: rgba(255,255,255,0.75); }

/* ── Wave dividers (v2.1 fluid) ─────────────────── */
.pcs-wave {
  line-height: 0;
  position: relative;
  z-index: 2;
}
.pcs-wave svg {
  display: block;
  width: 100%;
  height: auto;
}
.pcs-wave--top { color: var(--cream); margin-bottom: -1px; }
.pcs-wave--bottom { color: var(--cream); margin-top: -1px; }

/* ── Text content ───────────────────────────────── */
.pcs-text {
  font-size: 0.95rem;
  color: var(--pyc-text-mid);
  line-height: 1.85;
}
.pcs-text p { margin-bottom: 1rem; }
.pcs-text p:last-child { margin-bottom: 0; }

/* ── Feature image ──────────────────────────────── */
.pcs-feature-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* ── CTA wrap ───────────────────────────────────── */
.pcs-cta-wrap { margin-top: 1.5rem; }

/* ── CTA Banner ─────────────────────────────────── */
.pcs-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.pcs-cta-banner-text { flex: 1; min-width: 280px; }
.pcs-cta-banner-actions { flex-shrink: 0; }

/* ── Inline CTA ─────────────────────────────────── */
.pcs-cta-inline {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 2rem;
}
.pcs--dark .pcs-cta-inline {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
.pcs-cta-inline h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep);
}
.pcs--dark .pcs-cta-inline h3 { color: white; }

/* ── Stats row ──────────────────────────────────── */
.pcs-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.pcs-stat strong {
  display: block;
  font-family: var(--display, var(--body));
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.2;
}
.pcs-stat strong span { color: var(--accent); font-weight: 400; }
.pcs-stat small { font-size: 0.75rem; color: var(--pyc-text-light); }

/* ── Card Grid ──────────────────────────────────── */
.pcs-grid-card {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 1.75rem;
  text-decoration: none;
  color: var(--pyc-text);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}
.pcs-grid-card:hover {
  border-color: rgba(0,0,0,0.1);
  color: var(--pyc-text);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.pcs-grid-card--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  color: white;
}
.pcs-grid-card--dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: white;
}
.pcs-grid-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.pcs-grid-card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.pcs-grid-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 0.4rem;
}
.pcs-grid-card--dark h3 { color: white; }
.pcs-grid-card p {
  font-size: 0.88rem;
  color: var(--pyc-text-mid);
  line-height: 1.7;
  flex: 1;
}
.pcs-grid-card--dark p { color: rgba(255,255,255,0.55); }
.pcs-grid-card-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.8rem;
  transition: gap 0.2s;
}
.pcs-grid-card:hover .pcs-grid-card-link { gap: 0.6rem; }
.pcs-grid-card--dark .pcs-grid-card-link { color: var(--accent-light); }

/* ── Heritage / Feature Panel ───────────────────── */
.pcs-heritage {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 24px;
  overflow: hidden;
}
.pcs-heritage-visual {
  background: var(--deep);
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) { .pcs-heritage-visual { min-height: 100%; } }
.pcs-heritage-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(19,45,66,0.85), rgba(30,58,82,0.7));
}
.pcs-heritage-visual::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,58,0.2), transparent 70%);
  bottom: -80px;
  right: -60px;
}
.pcs-heritage-visual-inner {
  position: relative;
  z-index: 1;
}
.pcs-heritage-year {
  font-family: var(--display, var(--body));
  font-size: 5.5rem;
  font-weight: 200;
  color: white;
  line-height: 1;
  opacity: 0.85;
}
.pcs-heritage-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.pcs-heritage-content {
  padding: 2.5rem;
}
@media (min-width: 992px) { .pcs-heritage-content { padding: 3rem; } }

/* ── Quote / Testimonial ────────────────────────── */
.pcs-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border: none;
}
.pcs-quote-text {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--deep);
}
.pcs--dark .pcs-quote-text { color: white; }
.pcs-quote-text p { margin-bottom: 0; }
.pcs-quote-author {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 500;
  color: var(--pyc-text-mid);
}
.pcs--dark .pcs-quote-author { color: rgba(255,255,255,0.5); }

/* ── Accordion / FAQ ────────────────────────────── */

/* Kill rogue pseudo-elements from Elementor/global styles */
.pcs-accordion .accordion-header::before,
.pcs-accordion .accordion-header::after {
  display: none !important;
  content: none !important;
}

.pcs-accordion-item {
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 10px !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.pcs-accordion-item:hover {
  box-shadow: 0 4px 16px rgba(11,29,44,0.08);
}
.pcs-accordion-item:has(.pcs-accordion-btn:not(.collapsed)) {
  border-color: rgba(196,30,58,0.15) !important;
  box-shadow: 0 4px 20px rgba(11,29,44,0.08);
}

/* ── Accordion header — reset positioning from external styles ── */
.pcs-accordion .accordion-header {
  position: static !important;
}

/* ── Accordion button ── */
.pcs-accordion-btn {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep);
  padding: 1rem 1.25rem;
  background: transparent !important;
  border: none;
  box-shadow: none !important;
  gap: 14px;
  transition: background 0.15s, color 0.2s;
}
.pcs-accordion-btn:hover {
  background: rgba(250,248,244,0.6) !important;
}
.pcs-accordion-btn:not(.collapsed) {
  color: var(--accent);
  background: transparent !important;
}
.pcs-accordion-btn:focus {
  box-shadow: none !important;
}

/* ── Numbered circle ── */
.pcs-acc-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F0EDE8;
  color: var(--pyc-text-light);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}
.pcs-accordion-btn:not(.collapsed) .pcs-acc-num {
  background: var(--accent);
  color: #fff;
}

/* ── Question text ── */
.pcs-acc-question {
  flex: 1;
  text-align: left;
  line-height: 1.4;
}

/* ── Chevron icon ── */
.pcs-accordion-btn::after {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
  opacity: 0.35;
  transition: opacity 0.2s, transform 0.3s;
}
.pcs-accordion-btn:not(.collapsed)::after {
  opacity: 0.6;
}

/* ── Answer body — indented past the numbered circle ── */
.pcs-accordion-body {
  padding: 0 1.5rem 1.5rem;
  padding-left: calc(1.25rem + 34px + 14px);
  font-size: 0.95rem;
  color: var(--pyc-text-mid);
  line-height: 1.85;
}
.pcs-accordion-body::before {
  content: '';
  display: block;
  border-top: 1px solid rgba(0,0,0,0.05);
  margin: 0 0 1rem;
}
.pcs-accordion-body p:last-child { margin-bottom: 0; }

/* ── Dark variant ── */
.pcs--dark .pcs-accordion-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.06) !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.pcs--dark .pcs-accordion-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.pcs--dark .pcs-accordion-item:has(.pcs-accordion-btn:not(.collapsed)) {
  border-color: rgba(232,53,79,0.2) !important;
}
.pcs--dark .pcs-accordion-btn {
  color: white;
}
.pcs--dark .pcs-accordion-btn:hover {
  background: rgba(255,255,255,0.04);
}
.pcs--dark .pcs-accordion-btn:not(.collapsed) {
  color: var(--accent-light);
}
.pcs--dark .pcs-acc-num {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}
.pcs--dark .pcs-accordion-btn:not(.collapsed) .pcs-acc-num {
  background: var(--accent-light);
  color: #fff;
}
.pcs--dark .pcs-accordion-body {
  color: rgba(255,255,255,0.6);
}
.pcs--dark .pcs-accordion-body::before {
  border-top-color: rgba(255,255,255,0.06);
}

/* ── Hero Wave Banner ──────────────────────────── */
/* ── Hero Banner with Wave ────────────────────────────────── */
/* Uses same pattern as sub-page .page-hero: background-image + ::before gradient */
.pcs-hero-wave-section {
  background: var(--deep);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Left-to-right gradient overlay when background image is set (matches sub-page headers) */
.pcs-hero-wave-section.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--deep) 0%, rgba(11,29,44,0.85) 30%, rgba(11,29,44,0.4) 60%, transparent 100%);
}

/* Wave dividers — full viewport width */
.pcs-hero-wave-top,
.pcs-hero-wave-bottom {
  position: relative;
  z-index: 3;
  line-height: 0;
}
.pcs-hero-wave-top svg,
.pcs-hero-wave-bottom svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Content — containerised like main content */
.pcs-hero-wave-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  color: white;
}
.pcs-hero-wave-section .sec-label {
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.pcs-hero-wave-section .sec-title {
  color: white;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  max-width: 650px;
}
@media (min-width: 992px) {
  .pcs-hero-wave-section .sec-title { font-size: 3.2rem; }
  .pcs-hero-wave-content { padding: 4.5rem 2rem; }
}
.pcs-hero-wave-section .sec-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 550px;
  margin: 0 0 1rem;
}
.pcs-hero-wave-section .pcs-text,
.pcs-hero-wave-section .pcs-text p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}
/* CTA buttons in hero wave */
.pcs-hero-wave-section .pcs-cta-wrap {
  margin-top: 1.5rem;
}

/* ============================================================
   v2.1 FLUID STYLES — Additional .pyc-box classes
   These are labelled as "Fluid" variants and complement
   existing styles rather than replacing them.
   ============================================================ */

/* ── .pyc-fluid-hero: full-width hero with accent wave ── */
.pyc-fluid-hero {
  position: relative;
  background: var(--deep);
  overflow: hidden;
}
.pyc-fluid-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}
.pyc-fluid-hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── .pyc-fluid-card: image-topped card (Quick NAV v2.1 style) ── */
.pyc-fluid-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--pyc-text);
}
.pyc-fluid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  color: var(--pyc-text);
}
.pyc-fluid-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.pyc-fluid-card-body {
  padding: 1rem 1.1rem;
}
.pyc-fluid-card-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 0.15rem;
}
.pyc-fluid-card-subtitle {
  font-size: 0.75rem;
  color: var(--pyc-text-light);
}
.pyc-fluid-card-link {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.pyc-fluid-card:hover .pyc-fluid-card-link { gap: 0.6rem; }

/* ── .pyc-fluid-section: section with wave dividers ── */
.pyc-fluid-section {
  position: relative;
}
.pyc-fluid-section-wave {
  line-height: 0;
  position: relative;
  z-index: 2;
}
.pyc-fluid-section-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── .pyc-fluid-dark: dark panel with accent glow ── */
.pyc-fluid-dark {
  background: var(--deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.pyc-fluid-dark::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,58,0.12), transparent 70%);
  top: -100px;
  right: 50px;
  pointer-events: none;
}

/* ── .pyc-fluid-stats: stats with accent highlight ── */
.pyc-fluid-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.pyc-fluid-stats .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.2;
}
.pyc-fluid-stats .stat-value .accent { color: var(--accent); font-weight: 400; }
.pyc-fluid-stats .stat-label {
  font-size: 0.75rem;
  color: var(--pyc-text-light);
  display: block;
}

/* ── .pyc-fluid-quote: larger quote with accent bar ── */
.pyc-fluid-quote {
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid var(--accent);
}
.pyc-fluid-quote p {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--deep);
}
.pyc-fluid-quote cite {
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 500;
  color: var(--pyc-text-mid);
}

/* ── .pyc-fluid-cta: prominent CTA block with accent gradient ── */
.pyc-fluid-cta {
  background: linear-gradient(135deg, var(--deep), var(--slate));
  border-radius: 24px;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) { .pyc-fluid-cta { padding: 3rem 3.5rem; } }
.pyc-fluid-cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,58,0.12), transparent 70%);
  top: -120px;
  right: 80px;
  pointer-events: none;
}
.pyc-fluid-cta h2,
.pyc-fluid-cta h3 {
  color: white;
  position: relative;
  z-index: 1;
}
.pyc-fluid-cta p {
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 1;
}

/* ── .pyc-fluid-bento: equal-width service cards on dark ── */
.pyc-fluid-bento {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.75rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  color: white;
  text-decoration: none;
}
.pyc-fluid-bento:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  color: white;
}
.pyc-fluid-bento h3 { font-size: 1.2rem; font-weight: 600; color: white; }
.pyc-fluid-bento p { font-size: 0.88rem; color: rgba(255,255,255,0.55); flex: 1; }
.pyc-fluid-bento .link { font-size: 0.82rem; font-weight: 500; color: var(--accent-light); }

/* ── .pyc-block-highlight: solid colour block behind text ── */
/* Use on headings/labels for the bold "Your club. Your community." look */
.pyc-block-highlight {
  display: inline;
  background: var(--deep);
  color: white;
  padding: 0.15em 0.45em;
  line-height: 1.65;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.pyc-block-highlight--accent {
  background: var(--accent);
}
.pyc-block-highlight--white {
  background: white;
  color: var(--deep);
}
.pyc-block-highlight-label {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.2em 0.7em;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
}
