/* ============================================================
   Proud Seniors Greece — Main Stylesheet
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  color-scheme: light;
  /* Warm earth palette */
  --ps-purple:       #8a3d57;
  --ps-purple-dark:  #21313f;
  --ps-purple-light: #f8e7db;
  --ps-pink:         #d78853;
  --ps-pink-light:   #fdf0e4;
  --ps-bg:           #f8f1e8;
  --ps-surface:      #fffaf4;
  --ps-text:         #24313a;
  --ps-muted:        #6f6a62;
  --ps-border:       #dfd0c2;
  --ps-white:        #ffffff;
  --ps-shadow-sm:    0 12px 30px rgba(36, 49, 58, 0.08);
  --ps-shadow-md:    0 20px 50px rgba(36, 49, 58, 0.12);
  --ps-shadow-lg:    0 30px 80px rgba(36, 49, 58, 0.16);
  --ps-radius-sm:    10px;
  --ps-radius-md:    16px;
  --ps-radius-lg:    24px;
  --ps-radius-xl:    32px;
  --ps-font:         "Manrope", system-ui, sans-serif;
}

/* ── Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ps-font);
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  color: var(--ps-text);
  background:
    radial-gradient(circle at top left, rgba(215, 136, 83, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(138, 61, 87, 0.10), transparent 24%),
    linear-gradient(180deg, #fcf7f1 0%, #f8f1e8 35%, #f4ece3 100%);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--ps-purple); transition: color 0.15s ease; }
a:hover { color: var(--ps-purple-dark); }

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

:focus-visible {
  outline: 2px solid var(--ps-purple);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible { border-radius: 6px; }

/* ── Page transition overlay ─────────────────────────────── */
.ps-page-transition {
  position: fixed;
  inset: 0;
  background: #1c1410;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Header ─────────────────────────────────────────────── */
.ps-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 249, 243, 0.96);
  border-bottom: 1px solid rgba(223, 208, 194, 0.85);
  box-shadow: 0 4px 18px rgba(36, 49, 58, 0.06);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  padding: 0 clamp(1rem, 3vw, 2rem);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ps-header--scrolled {
  background: rgba(255, 249, 243, 0.98);
  box-shadow: 0 8px 30px rgba(36, 49, 58, 0.10);
}

.ps-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  padding: 0;
}

/* Brand */
.ps-brand {
  gap: 0.95rem;
  flex-shrink: 0;
}

.ps-brand__logo img {
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(36, 49, 58, 0.08);
}

/* Site title hidden — logo-only brand */
.ps-brand__name,
.ps-brand__name a {
  display: none !important;
}

.ps-brand__tagline,
.ps-brand__tagline p {
  color: #31424d !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  margin: 0;
  line-height: 1.35;
  opacity: 1 !important;
}

/* Nav */
.ps-header .wp-block-navigation,
.ps-header .wp-block-navigation .wp-block-navigation__container {
  gap: 0.15rem !important;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.ps-header .wp-block-navigation {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.ps-header .wp-block-navigation a {
  color: #31424d !important;
  text-decoration: none;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  opacity: 1 !important;
  visibility: visible !important;
  transition: color 0.2s ease, background 0.2s ease;
}

.ps-header .wp-block-navigation a:hover {
  background: rgba(138, 61, 87, 0.08) !important;
  color: #22313d !important;
}

.ps-header .wp-block-navigation .current-menu-item > a,
.ps-header .wp-block-navigation .current_page_item > a {
  background: rgba(138, 61, 87, 0.09) !important;
  color: var(--ps-purple) !important;
}

/* No underline animation — clean look */
.ps-header .wp-block-navigation .wp-block-navigation-item > a::after {
  display: none !important;
}

/* Nav CTA pill */
.ps-nav-cta > a,
.ps-header .wp-block-navigation .ps-nav-cta > a {
  background: linear-gradient(135deg, #8a3d57 0%, #c77f55 100%) !important;
  color: #fffaf5 !important;
  border-radius: 999px !important;
  padding-left: 1.15rem !important;
  padding-right: 1.15rem !important;
  box-shadow: 0 6px 16px rgba(138, 61, 87, 0.16) !important;
  transition: background 0.22s ease !important;
}

.ps-nav-cta > a:hover,
.ps-header .wp-block-navigation .ps-nav-cta > a:hover {
  background: linear-gradient(135deg, #7a324b 0%, #b96d42 100%) !important;
  color: #fffaf5 !important;
}

/* Dropdown */
.ps-header .wp-block-navigation__submenu-container {
  background: #fffaf5 !important;
  border: 1px solid rgba(223, 208, 194, 0.95) !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 36px rgba(36, 49, 58, 0.12) !important;
  padding: 6px !important;
  min-width: 215px !important;
  margin-top: 10px !important;
}

.ps-header .wp-block-navigation__submenu-container a {
  color: #31424d !important;
  border-radius: 12px !important;
  padding: 9px 14px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  background: transparent !important;
}

.ps-header .wp-block-navigation__submenu-container a::after {
  display: none !important;
}

.ps-header .wp-block-navigation__submenu-container a:hover {
  background: #f4ece4 !important;
  color: var(--ps-purple-dark) !important;
}

/* Toggle / hamburger */
.ps-header .wp-block-navigation-item__toggle-button,
.ps-header .wp-block-navigation__responsive-container-open,
.ps-header .wp-block-navigation__responsive-container-close {
  color: #22313d !important;
}

.ps-header .wp-block-navigation__responsive-container-open svg,
.ps-header .wp-block-navigation__responsive-container-close svg {
  fill: #22313d !important;
  stroke: #22313d !important;
}

/* Mobile menu overlay */
.ps-header .wp-block-navigation__responsive-container.is-menu-open {
  background: rgba(255, 249, 243, 0.98) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.ps-header .wp-block-navigation__responsive-container.is-menu-open
.wp-block-navigation__responsive-container-content {
  padding-top: 2rem;
}

.ps-header .wp-block-navigation__responsive-container.is-menu-open a {
  color: #22313d !important;
  background: transparent !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 0.95rem 1rem !important;
  border-radius: 14px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.ps-header .wp-block-navigation__responsive-container.is-menu-open a:hover,
.ps-header .wp-block-navigation__responsive-container.is-menu-open .current-menu-item > a,
.ps-header .wp-block-navigation__responsive-container.is-menu-open .current_page_item > a {
  background: #f4ece4 !important;
  color: #22313d !important;
}

/* ── Buttons ─────────────────────────────────────────────── */
.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.75em 1.8em;
  border-radius: 999px;
  font-family: var(--ps-font);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.ps-btn:hover { transform: translateY(-2px); }

/* Primary — burgundy → terracotta gradient */
.ps-btn--primary {
  background: linear-gradient(135deg, #8a3d57 0%, #d78853 100%);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(138, 61, 87, 0.18);
}
.ps-btn--primary:hover {
  background: linear-gradient(135deg, #7a324b 0%, #c97643 100%);
  box-shadow: 0 16px 32px rgba(138, 61, 87, 0.25);
  color: #fff !important;
}

/* Secondary — semi-transparent white (for dark backgrounds) */
.ps-btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
}
.ps-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.60);
  color: #fff !important;
}

/* Light — warm tint (for light backgrounds) */
.ps-btn--light {
  background: #f6e7dc;
  color: var(--ps-purple-dark) !important;
}
.ps-btn--light:hover {
  background: #f0ddd0;
  color: var(--ps-purple-dark) !important;
}

/* White */
.ps-btn--white {
  background: #ffffff;
  color: var(--ps-purple-dark) !important;
  box-shadow: 0 16px 30px rgba(16, 23, 30, 0.18);
}
.ps-btn--white:hover {
  background: #f9f2ea;
  color: var(--ps-purple-dark) !important;
}

/* Outline white (dark backgrounds) */
.ps-btn--outline-white {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255, 248, 241, 0.42);
}
.ps-btn--outline-white:hover {
  border-color: rgba(255, 248, 241, 0.75);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
}

/* Sizes */
.ps-btn--sm { font-size: 0.875rem; padding: 0.6em 1.4em; }
.ps-btn--lg { font-size: 1rem;     padding: 0.9em 2.2em; }

/* Magnetic */
.ps-mag {
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease,
    box-shadow 0.2s ease !important;
}

/* WordPress block button */
.wp-block-button__link {
  font-family: var(--ps-font) !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease !important;
  text-decoration: none !important;
}
.wp-block-button__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(138, 61, 87, 0.2);
}

/* ── Eyebrow ─────────────────────────────────────────────── */
.ps-eyebrow {
  display: block;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin: 0 0 6px !important;
}
.ps-eyebrow--pink { color: var(--ps-pink) !important; }

/* ── Front-page hero ─────────────────────────────────────── */
.ps-hero,
.ps-fp-hero {
  position: relative;
  overflow: hidden;
}

.ps-fp-hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #24313a 0%, #6d3b4d 56%, #bc7d58 100%);
}

/* Decorative blobs */
.ps-fp-hero::before,
.ps-fp-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.ps-fp-hero::before {
  width: min(38vw, 420px);
  height: min(38vw, 420px);
  right: -6rem;
  top: 18%;
  background: radial-gradient(circle, rgba(246, 200, 166, 0.30) 0%, transparent 72%);
}

.ps-fp-hero::after {
  width: min(26vw, 280px);
  height: min(26vw, 280px);
  left: 6%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 72%);
}

.ps-fp-hero__inner {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding:
    clamp(8rem, 12vw, 10rem)
    clamp(1.5rem, 5vw, 3rem)
    clamp(5rem, 8vw, 7rem);
  text-align: left;
  position: relative;
  z-index: 1;
}

.ps-fp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.ps-fp-hero__eyebrow span { color: #fff6ef; }

.ps-fp-hero__headline {
  font-family: var(--ps-font);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 1.5rem;
  max-width: 13ch;
  text-wrap: balance;
}

.ps-fp-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 245, 239, 0.82);
  margin: 0 0 2.5rem;
  max-width: 520px;
}

.ps-fp-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.ps-fp-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.ps-fp-highlight {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff8f1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Scroll indicator */
.ps-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  animation: ps-sub-in 0.6s ease forwards 1.2s;
}

.ps-hero-scroll__line {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.4);
  animation: ps-scroll-pulse 1.8s ease-in-out infinite;
}

/* ── Signal cards (below hero) ───────────────────────────── */
.ps-fp-signal {
  position: relative;
  margin-top: -3.5rem;
  z-index: 3;
}

.ps-fp-signal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.ps-fp-signal__card {
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(223, 208, 194, 0.85);
  border-radius: 26px;
  padding: 1.4rem 1.35rem;
  box-shadow: var(--ps-shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ps-fp-signal__label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ps-purple);
}

.ps-fp-signal__card p {
  margin: 0;
  color: var(--ps-text);
  line-height: 1.7;
}

/* ── Section wrapper ─────────────────────────────────────── */
.ps-fp-section { padding: 6.5rem 0; }

.ps-fp-section--alt {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.84) 0%, rgba(248, 241, 232, 0.92) 100%);
}

.ps-fp-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.ps-fp-section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  gap: 1.5rem;
}

/* Section h2 gradient */
#ps-front-page .ps-fp-section__head h2,
#ps-front-page .ps-fp-section h2,
#ps-front-page .ps-fp-section--alt h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--ps-purple-dark) 0%, var(--ps-purple) 60%, var(--ps-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ── Editorial sections ──────────────────────────────────── */
.ps-fp-editorial {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.ps-fp-editorial--reverse {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.84) 0%, rgba(248, 241, 232, 0.92) 100%);
}

.ps-fp-editorial__ghost {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 5vw, 4rem);
  transform: translateY(-50%);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(138, 61, 87, 0.06);
  -webkit-text-stroke: 1px rgba(138, 61, 87, 0.10);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
}

.ps-fp-editorial--reverse .ps-fp-editorial__ghost {
  right: auto;
  left: clamp(1rem, 5vw, 4rem);
}

.ps-fp-editorial__content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(223, 208, 194, 0.70);
  border-radius: 32px;
  box-shadow: var(--ps-shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ps-fp-editorial--reverse .ps-fp-editorial__content {
  margin-left: auto;
}

.ps-fp-editorial__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ps-purple-dark);
  margin: 0.5rem 0 1.25rem;
}

.ps-fp-editorial__body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ps-muted);
  margin: 0 0 2rem;
}

/* ── Cards ───────────────────────────────────────────────── */
.ps-card {
  background: rgba(255, 250, 244, 0.95);
  border: 1px solid rgba(223, 208, 194, 0.95) !important;
  border-radius: var(--ps-radius-lg) !important;
  overflow: hidden;
  box-shadow: var(--ps-shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ps-card:hover {
  box-shadow: var(--ps-shadow-md);
  transform: translateY(-4px);
}

.ps-card__img-wrap img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.ps-card--featured .ps-card__img-wrap img { aspect-ratio: 16/10; }
.ps-card--featured .ps-card__body         { padding: 1.5rem; }
.ps-card           .ps-card__body         { padding: 1.1rem 1.25rem 1.25rem; }

.ps-card__date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ps-purple);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}

.ps-card__title--lg {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.ps-card__title--lg a,
.ps-card__title a {
  color: var(--ps-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ps-card__title--lg a:hover,
.ps-card__title a:hover { color: var(--ps-purple); }

.ps-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 6px;
}

.ps-card__excerpt {
  font-size: 0.875rem;
  color: var(--ps-muted);
  line-height: 1.65;
  margin: 0;
}

/* News featured layout */
.ps-news-featured {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 24px;
  align-items: start;
}

.ps-news-secondary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Generic post grid */
.ps-post-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ── Member cards ────────────────────────────────────────── */
.ps-member-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.ps-member-card {
  background: rgba(255, 250, 244, 0.95);
  border: 1px solid rgba(223, 208, 194, 0.95) !important;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: var(--ps-shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  text-align: center;
}

.ps-member-card:hover {
  box-shadow: var(--ps-shadow-md);
  transform: translateY(-4px);
}

.ps-member-card__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}

.ps-member-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.ps-member-card__group {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ps-pink);
  margin-bottom: 0.4rem;
}

.ps-member-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 4px;
}

.ps-member-card__role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ps-purple);
}

/* ── Axis cards ───────────────────────────────────────────── */
.ps-axis-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.ps-axis-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 250, 244, 0.95);
  border: 1px solid rgba(223, 208, 194, 0.95) !important;
  border-top: 3px solid #d78853 !important;
  border-radius: 18px !important;
  padding: 2rem 1.75rem !important;
  box-shadow: var(--ps-shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ps-axis-card:hover {
  box-shadow: var(--ps-shadow-md);
  transform: translateY(-4px);
}

.ps-axis-card__num {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(138, 61, 87, 0.18);
  margin-bottom: 0.75rem;
  transition: -webkit-text-stroke-color 0.3s ease;
}

.ps-axis-card:hover .ps-axis-card__num {
  -webkit-text-stroke-color: rgba(138, 61, 87, 0.45);
}

.ps-axis-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}

.ps-axis-card__excerpt {
  font-size: 0.9375rem;
  color: var(--ps-muted);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.ps-axis-card__link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ps-purple);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ps-axis-card__link:hover { color: var(--ps-purple-dark); }

/* ── Press list ──────────────────────────────────────────── */
.ps-press-list {
  display: flex !important;
  flex-direction: column;
}

.ps-press-item {
  border-bottom: 1px solid rgba(223, 208, 194, 0.90) !important;
  padding: 1.5rem 0.75rem !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-radius: 10px;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  transition: background 0.15s ease;
}

.ps-press-item:last-child { border-bottom: none !important; }
.ps-press-item:hover      { background: var(--ps-surface); }

.ps-press-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.ps-press-item__date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ps-purple);
}

.ps-press-source {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ps-purple-dark);
  background: var(--ps-purple-light);
  padding: 2px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.ps-press-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.ps-press-item__title a {
  color: var(--ps-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ps-press-item__title a:hover { color: var(--ps-purple); }

.ps-press-item__arrow {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ps-purple);
  flex-shrink: 0;
  align-self: center;
  text-decoration: none;
  transition: transform 0.15s ease, color 0.15s ease;
  padding: 6px;
}

.ps-press-item__arrow:hover {
  color: var(--ps-purple-dark);
  transform: translate(2px, -2px);
}

/* Press pills */
.ps-press-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.ps-press-tag--press     { background: var(--ps-purple-light); color: var(--ps-purple-dark); }
.ps-press-tag--interview { background: var(--ps-pink-light);   color: var(--ps-pink); }
.ps-press-tag--media     { background: #e0f2fe;                color: #0369a1; }

/* Press archive */
.ps-press-archive__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.ps-press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ps-press-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 250, 244, 0.96);
  border: 1px solid rgba(223, 208, 194, 0.95);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--ps-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ps-press-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ps-shadow-md);
}

.ps-press-card__media {
  display: block;
  background: linear-gradient(135deg, #f7eee5 0%, #ecd6c7 100%);
}

.ps-press-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.ps-press-card__fallback-logo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 2rem;
  display: block;
}

.ps-press-card__fallback-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  color: var(--ps-purple-dark);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ps-press-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.25rem 1.4rem;
}

.ps-press-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--ps-purple-light);
  color: var(--ps-purple-dark) !important;
  transition: background 0.15s ease;
}

.ps-press-card__button:hover { background: #f0ddd0; }

/* ── CTA section ─────────────────────────────────────────── */
.ps-fp-cta,
.ps-cta {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #20303d 0%, #7d3a53 52%, #d78853 100%) !important;
}

.ps-fp-cta__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.ps-fp-cta__headline {
  font-family: var(--ps-font);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff6f0;
  margin: 0 0 1rem;
}

.ps-fp-cta__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 246, 240, 0.85);
  margin: 0 0 2rem;
}

.ps-fp-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Footer ──────────────────────────────────────────────── */
.ps-footer {
  background: #22313d !important;
  padding: 3.5rem clamp(1rem, 4vw, 2rem) 1.5rem !important;
  border-top: 4px solid;
  border-image: linear-gradient(
    90deg,
    #f87171 0%,
    #fb923c 16%,
    #fbbf24 32%,
    #4ade80 48%,
    #60a5fa 64%,
    #a78bfa 80%,
    #f472b6 100%
  ) 1;
}

.ps-footer__top {
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-top: 0;
  margin-bottom: 2.5rem;
}

.ps-footer__lead  { max-width: 520px; }
.ps-footer__brand { gap: 0.75rem; }

.ps-footer__brand-title {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 1.02rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
}

.ps-footer__country {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 232, 220, 0.60);
}

.ps-footer__text {
  margin: 0;
  max-width: 40ch;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(245, 232, 220, 0.82);
}

.ps-footer__actions { margin-top: 0.5rem; }

.ps-footer__actions .wp-block-button__link {
  background: #f3e2d3 !important;
  color: #22313d !important;
  box-shadow: none !important;
}
.ps-footer__actions .wp-block-button__link:hover { background: #fff5eb !important; }

.ps-footer__meta {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.ps-footer__block { gap: 0.7rem; }

.ps-footer__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8ba91;
  font-family: var(--ps-font);
}

.ps-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
}

.ps-footer__links a,
.ps-footer .wp-block-navigation a {
  color: #f5e8dc !important;
  font-size: 0.95rem;
  text-decoration: none;
  display: block;
  padding: 2px 0;
  transition: color 0.15s ease;
}

.ps-footer__links a:hover,
.ps-footer .wp-block-navigation a:hover { color: #ffffff !important; }

.ps-footer__contact,
.ps-footer__contact a {
  margin: 0;
  color: #f5e8dc !important;
  font-size: 0.98rem;
  text-decoration: none;
}

.ps-footer__contact a:hover { color: #ffffff !important; }

.ps-footer__contact-note {
  margin: 0;
  color: rgba(245, 232, 220, 0.64);
  font-size: 0.88rem;
  line-height: 1.6;
}

.ps-footer__separator {
  margin: 2rem 0 1rem !important;
  opacity: 0.4;
}

.ps-footer__bottom { gap: 1rem; }

.ps-footer__small,
.ps-footer__small a {
  margin: 0;
  color: rgba(245, 232, 220, 0.68) !important;
  font-size: 0.85rem;
  text-decoration: none;
}

.ps-footer__small a:hover { color: #f5e8dc !important; }

.ps-footer__logo img { border-radius: 8px; }

/* ── Forms ───────────────────────────────────────────────── */
.ps-form-section { background-color: var(--ps-surface) !important; }

.ps-form-card {
  background: var(--ps-white);
  border-radius: var(--ps-radius-xl);
  box-shadow: var(--ps-shadow-md);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 680px;
  margin: 0 auto;
}

.ps-membership-intro {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ps-border);
}

.ps-membership-intro__title {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--ps-text);
  margin: 0 0 0.85rem;
  line-height: 1.2;
}

.ps-membership-intro__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ps-muted);
}

.ps-membership-intro__body p              { margin: 0 0 0.85em; }
.ps-membership-intro__body p:last-child   { margin-bottom: 0; }

.ps-form-card label { display: block; margin-bottom: 1.25rem; }

.ps-form-card label > span,
.ps-form-card label > span:first-child {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ps-text);
}

.ps-form-card input[type="text"],
.ps-form-card input[type="email"],
.ps-form-card input[type="tel"],
.ps-form-card input[type="number"],
.ps-form-card input[type="url"],
.ps-form-card textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.75em 1em;
  border: 1.5px solid var(--ps-border);
  border-radius: var(--ps-radius-sm);
  font-family: var(--ps-font);
  font-size: 1.0625rem;
  color: var(--ps-text);
  background: var(--ps-bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ps-form-card textarea { resize: vertical; min-height: 120px; }

.ps-form-card input:focus,
.ps-form-card textarea:focus {
  outline: none;
  border-color: var(--ps-purple);
  box-shadow: 0 0 0 3px rgba(138, 61, 87, 0.15);
}

.ps-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ps-required { color: var(--ps-pink); font-weight: 800; }

.ps-checkbox {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1.5rem !important;
}

.ps-checkbox input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-height: auto !important;
  margin-top: 2px;
  padding: 0 !important;
  flex-shrink: 0;
  accent-color: var(--ps-purple);
  cursor: pointer;
}

.ps-checkbox > span {
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  color: var(--ps-muted) !important;
  line-height: 1.65;
}

.ps-checkbox a { color: var(--ps-purple); font-weight: 700; }

/* Honeypot */
.ps-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.ps-submit-btn {
  width: 100%;
  min-height: 58px;
  padding: 0 2rem;
  background: linear-gradient(125deg, var(--ps-purple) 0%, var(--ps-pink) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--ps-font);
  font-size: 1.0625rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(138, 61, 87, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ps-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(138, 61, 87, 0.32);
}

.ps-submit-btn:disabled,
.ps-submit-btn.is-loading {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.ps-submit-btn.is-loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: middle;
  animation: ps-spin 0.7s linear infinite;
}

.ps-form-msg {
  margin: 0 0 1.5rem;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.ps-form-msg--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.40);
  color: #166534;
}

.ps-form-msg--error {
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.40);
  color: #991b1b;
}

.ps-form-note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--ps-muted);
  text-align: center;
}

/* ── Pagination ──────────────────────────────────────────── */
.wp-block-query-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 3rem;
}

.wp-block-query-pagination-numbers .page-numbers,
.wp-block-query-pagination-previous,
.wp-block-query-pagination-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ps-purple);
  background: var(--ps-white);
  border: 1px solid var(--ps-border);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.wp-block-query-pagination-numbers .page-numbers.current,
.wp-block-query-pagination-numbers .page-numbers:hover,
.wp-block-query-pagination-previous:hover,
.wp-block-query-pagination-next:hover {
  background: var(--ps-purple);
  color: white;
  border-color: var(--ps-purple);
}

.ps-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ps-border);
}

.ps-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ps-text);
  background: var(--ps-white);
  border: 1px solid var(--ps-border);
  text-decoration: none;
  transition: all 0.15s ease;
}

.ps-pagination .page-numbers:hover {
  border-color: var(--ps-purple);
  color: var(--ps-purple);
  background: var(--ps-purple-light);
}

.ps-pagination .page-numbers.current {
  background: var(--ps-purple);
  color: #fff;
  border-color: var(--ps-purple);
}

.ps-pagination .page-numbers.dots {
  border: none;
  background: transparent;
}

/* ── Archive / single pages ──────────────────────────────── */
.ps-archive-header {
  background: linear-gradient(135deg, #20303d 0%, #8a3d57 60%, #d78853 100%);
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
  color: white;
}

.ps-page-hero__eyebrow {
  display: block;
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0ba8d;
}

.ps-page-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.ps-page-hero__text {
  max-width: 48ch;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}

.ps-page-hero__text--sm { max-width: 32rem; }

.ps-single { padding: clamp(2rem, 5vw, 4rem) 0; }

.ps-single .wp-block-post-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 1rem;
}

.ps-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--ps-border);
  border-bottom: 1px solid var(--ps-border);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--ps-muted);
}

.ps-page-section           { padding: 4rem 0 5rem; }
.ps-page-section--narrow   { padding: 4rem 0; }
.ps-page-section--form     { background: var(--ps-surface) !important; }
.ps-query-section          { padding: 4rem 0 5rem; }
.ps-query-section--narrow  { padding: 3rem 0 4rem; }
.ps-query-empty            { color: var(--ps-muted); }
.ps-query-empty--spaced    { padding: 4rem 0; }
.ps-fp-empty               { color: var(--ps-muted); font-size: 1rem; grid-column: 1 / -1; }

/* Section h2 gradient (non-front-page) */
.ps-section .wp-block-heading:is(h2),
.ps-section--alt .wp-block-heading:is(h2),
.ps-gradient-title {
  background: linear-gradient(135deg, var(--ps-purple-dark) 0%, var(--ps-purple) 60%, var(--ps-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ── Keyframes ───────────────────────────────────────────── */
@keyframes ps-spin {
  to { transform: rotate(360deg); }
}

@keyframes ps-word-rise {
  from { opacity: 0; transform: translateY(60%) rotate(1deg); }
  to   { opacity: 1; transform: translateY(0)  rotate(0deg); }
}

@keyframes ps-eyebrow-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ps-sub-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ps-scroll-pulse {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  45%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  55%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── Hero entrance animations ────────────────────────────── */
.ps-word {
  display: inline-block;
  opacity: 0;
  animation: ps-word-rise 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.1s + var(--wi, 0) * 0.07s);
  will-change: transform, opacity;
}

.ps-anim-eyebrow {
  opacity: 0;
  animation: ps-eyebrow-in 0.5s ease forwards 0.05s;
}

.ps-anim-sub {
  opacity: 0;
  animation: ps-sub-in 0.6s ease forwards 0.70s;
}

.ps-anim-btns {
  opacity: 0;
  animation: ps-sub-in 0.6s ease forwards 0.90s;
}

/* ── Scroll reveal ───────────────────────────────────────── */
[data-ps-reveal] {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity  0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-ps-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-ps-stagger] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity  0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-ps-stagger].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Legacy fade classes */
.ps-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.ps-fade-up.is-visible { opacity: 1; transform: translateY(0); }

.ps-fade-in { opacity: 0; transition: opacity 0.75s ease; }
.ps-fade-in.is-visible { opacity: 1; }

/* ── Board page group sections ───────────────────────────── */
.ps-board-group {
  padding: 4rem 0 5rem;
}

.ps-board-group + .ps-board-group {
  padding-top: 0;
}

.ps-board-group__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.ps-board-group__heading {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ps-purple-dark);
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ps-border);
}

/* ── Blog card styles (block template) ───────────────────── */
.ps-blog-section {
  padding: 4rem 0 5rem;
}

.ps-blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.ps-blog-card {
  display: flex;
  flex-direction: column;
}

/* Featured image from WP block */
.ps-card__img,
.ps-blog-card .wp-block-post-featured-image {
  display: block;
  overflow: hidden;
}

.ps-card__img img,
.ps-blog-card .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ps-blog-card:hover .wp-block-post-featured-image img,
.ps-blog-card:hover .ps-card__img img {
  transform: scale(1.03);
}

.ps-blog-card__body,
.ps-blog-card .ps-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Date from WP block */
.ps-blog-card__date,
.ps-blog-card .wp-block-post-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ps-purple);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}

/* Title from WP block */
.ps-blog-card__title,
.ps-blog-card .wp-block-post-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  margin: 0 0 0.6rem !important;
}

.ps-blog-card .wp-block-post-title a,
.ps-blog-card__title a {
  color: var(--ps-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ps-blog-card .wp-block-post-title a:hover,
.ps-blog-card__title a:hover {
  color: var(--ps-purple);
}

/* Excerpt from WP block */
.ps-blog-card__excerpt,
.ps-blog-card .wp-block-post-excerpt {
  font-size: 0.9rem;
  color: var(--ps-muted);
  line-height: 1.65;
  margin: 0 !important;
}

.ps-blog-card .wp-block-post-excerpt__more-link {
  display: none;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .ps-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ps-fp-hero__inner  { text-align: center; }

  .ps-fp-hero__headline,
  .ps-fp-hero__sub    { margin-left: auto; margin-right: auto; }

  .ps-fp-hero__btns,
  .ps-fp-hero__highlights { justify-content: center; }

  .ps-fp-signal__grid { grid-template-columns: 1fr; }

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

  .ps-fp-editorial--reverse .ps-fp-editorial__content { margin-left: 0; }
}

@media (max-width: 768px) {
  .ps-blog-grid {
    grid-template-columns: 1fr;
  }

  .ps-header__inner   { min-height: 68px; }

  .ps-brand__tagline,
  .ps-brand__tagline p { display: none !important; }

  .ps-fp-section      { padding: 5rem 0; }
  .ps-fp-signal       { margin-top: -2rem; }

  .ps-fp-section__head { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .ps-member-grid     { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ps-axis-grid       { grid-template-columns: 1fr; }

  .ps-field-row       { grid-template-columns: 1fr; }

  .ps-press-item      { flex-direction: column; align-items: flex-start; }

  .ps-post-grid       { grid-template-columns: 1fr; }

  .ps-footer__top     { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ps-fp-editorial__ghost {
    font-size: clamp(5rem, 30vw, 8rem);
    opacity: 0.5;
  }

  .ps-fp-hero__headline { font-size: clamp(2.4rem, 10vw, 3.5rem); }

  .ps-hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .ps-member-grid { grid-template-columns: 1fr; }

  .ps-fp-hero__btns,
  .ps-fp-cta__btns { flex-direction: column; align-items: center; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ps-word,
  .ps-anim-eyebrow,
  .ps-anim-sub,
  .ps-anim-btns,
  .ps-hero-scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  [data-ps-reveal],
  [data-ps-stagger] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .ps-fade-up,
  .ps-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
