@charset "UTF-8";
/**
 * Custom SCSS Additions
 * 
 * This file compiles to css/custom.css and loads AFTER the main style.css
 * Use this for new features, overrides, and fixes without touching the main CSS.
 * 
 * @package ThatcherCentre
 */
:root {
  --color-teal: #00A5B8;
  --color-teal-dark: #008a9a;
  --color-teal-light: #33b7c6;
  --color-navy: #223872;
  --color-navy-dark: #1b2d5d;
  --color-navy-light: #2f4a8f;
  --color-red: #c8102e;
  --color-red-dark: #a00d25;
  --color-red-light: #d63a52;
  --color-gold: #c9a227;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-light: #f5f5f5;
  --color-gray: #e0e0e0;
  --color-gray-dark: #666666;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-text-light: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f0f0f0;
  --font-heading: Georgia, Times New Roman, serif;
  --font-body: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  --font-mono: Monaco, Consolas, Andale Mono, DejaVu Sans Mono, monospace;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-18: 4.5rem;
  --space-20: 5rem;
  --space-22: 5.5rem;
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-padding: 1.5rem;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 35px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 500;
  --header-height-top: 40px;
  --header-height-main: 80px;
}

.festival-speakers--featured .container > h2 {
  margin-bottom: var(--space-8);
}

.speaker-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 900px;
  margin: var(--space-8) auto 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media (min-width: 640px) {
  .speaker-featured {
    grid-template-columns: 280px 1fr;
    gap: 0;
  }
}
@media (min-width: 768px) {
  .speaker-featured {
    grid-template-columns: 320px 1fr;
  }
}

.speaker-featured__image {
  position: relative;
}
@media (max-width: 639px) {
  .speaker-featured__image {
    max-height: 360px;
    overflow: hidden;
  }
}

.speaker-featured__image-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-gray-light) 0%, #e0e4e8 100%);
}
@media (max-width: 639px) {
  .speaker-featured__image-frame {
    aspect-ratio: 4/3;
  }
}
.speaker-featured__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}
.speaker-featured__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.speaker-featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8);
}
@media (min-width: 768px) {
  .speaker-featured__content {
    padding: var(--space-10);
  }
}

.speaker-featured__role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 6px 14px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  margin-bottom: var(--space-4);
}
.speaker-featured__role::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

.speaker-featured__name {
  margin: 0 0 var(--space-3);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.speaker-featured__title {
  margin: 0 0 var(--space-4);
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.5;
}

.speaker-featured__separator {
  margin: 0 8px;
  color: var(--color-border);
}

.speaker-featured__org {
  color: var(--color-text-muted);
  font-style: italic;
}

.speaker-featured__bio {
  position: relative;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-light);
}
.speaker-featured__bio p {
  margin: 0;
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.7;
}

.speaker-featured--keynote .speaker-featured__role {
  background: var(--color-navy);
}

.speaker-featured--panelist .speaker-featured__role,
.speaker-featured--panel .speaker-featured__role {
  background: var(--color-teal);
}
.speaker-featured--panelist .speaker-featured__role::before,
.speaker-featured--panel .speaker-featured__role::before {
  background: var(--color-white);
}

.speaker-featured--moderator .speaker-featured__role {
  background: var(--color-gold);
  color: var(--color-navy);
}
.speaker-featured--moderator .speaker-featured__role::before {
  background: var(--color-navy);
}

.speaker-featured--chair {
  max-width: 800px;
}
@media (min-width: 640px) {
  .speaker-featured--chair {
    grid-template-columns: 240px 1fr;
  }
}
@media (min-width: 768px) {
  .speaker-featured--chair {
    grid-template-columns: 260px 1fr;
  }
}
@media (min-width: 640px) {
  .speaker-featured--chair .speaker-featured__image {
    height: 100%;
  }
}
@media (max-width: 639px) {
  .speaker-featured--chair .speaker-featured__image {
    max-height: none;
  }
}
@media (min-width: 640px) {
  .speaker-featured--chair .speaker-featured__image-frame {
    aspect-ratio: unset;
    height: 100%;
  }
}
.speaker-featured--chair .speaker-featured__content {
  padding: var(--space-6);
}
@media (min-width: 768px) {
  .speaker-featured--chair .speaker-featured__content {
    padding: var(--space-8);
  }
}
.speaker-featured--chair .speaker-featured__name {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  margin-bottom: var(--space-2);
}
.speaker-featured--chair .speaker-featured__title {
  margin: 0 0 var(--space-1);
  font-size: var(--font-size-sm);
  color: var(--color-text);
}
.speaker-featured--chair .speaker-featured__org {
  margin: 0 0 var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

.speaker-featured__role--chair {
  background: var(--color-teal);
}
.speaker-featured__role--chair::before {
  background: var(--color-white);
}

.speaker-featured__bio--compact p {
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.speaker-featured__social {
  margin: var(--space-3) 0;
}

.speaker-featured__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.speaker-featured__social-link:hover, .speaker-featured__social-link:focus {
  color: var(--color-navy);
}

.speaker-featured__social-icon {
  flex-shrink: 0;
}

.speaker-card--chair .speaker-card__role {
  background: var(--color-teal);
}

.speakers-grid--chairs.speakers-grid--count-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 639px) {
  .speakers-grid--chairs.speakers-grid--count-2 {
    grid-template-columns: 1fr;
  }
}

.speakers-grid--keynotes {
  margin-top: var(--space-8);
}
.speakers-grid--keynotes.speakers-grid--count-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 639px) {
  .speakers-grid--keynotes.speakers-grid--count-2 {
    grid-template-columns: 1fr;
  }
}
.speakers-grid--keynotes.speakers-grid--count-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .speakers-grid--keynotes.speakers-grid--count-3 {
    grid-template-columns: 1fr;
  }
}
.speakers-grid--keynotes.speakers-grid--count-4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .speakers-grid--keynotes.speakers-grid--count-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.speakers-grid--keynotes .speaker-card--keynote-grid .speaker-card__image {
  aspect-ratio: 3/4;
}
.speakers-grid--keynotes .speaker-card--keynote-grid .speaker-card__content {
  padding: var(--space-6);
}
.speakers-grid--keynotes .speaker-card--keynote-grid .speaker-card__name {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

.speakers-grid__heading {
  margin: var(--space-10) 0 var(--space-2);
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.speakers-grid--secondary {
  margin-top: var(--space-4);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.speaker-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.speaker-card:hover .speaker-card__image img {
  transform: scale(1.03);
}

.speaker-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-gray-light) 0%, #e8e8e8 100%);
}
.speaker-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.speaker-card__content {
  padding: var(--space-5);
  text-align: center;
}

.speaker-card__name {
  margin: 0 0 var(--space-2);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.speaker-card__title {
  margin: 0 0 var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  line-height: 1.4;
}

.speaker-card__separator {
  margin: 0 4px;
  color: var(--color-text-light);
}

.speaker-card__org {
  color: var(--color-text-light);
}

.speaker-card__role {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}

.speaker-card--keynote .speaker-card__role {
  background: var(--color-navy);
}

.speaker-card--moderator .speaker-card__role {
  background: var(--color-gold);
  color: var(--color-navy);
}

.speaker-card__bio {
  margin: var(--space-3) 0 0;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  line-height: 1.6;
}

.speaker-card__social {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-light);
}

.speaker-card__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gray-light);
  color: var(--color-text);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
.speaker-card__social-link:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.speaker-card--placeholder {
  padding: var(--space-8);
  text-align: center;
  background: var(--color-gray-light);
  border: 2px dashed var(--color-border);
}
.speaker-card--placeholder .speaker-name {
  font-size: var(--font-size-base);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.speaker-card--placeholder .speaker-role {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.speaker-card h3 {
  margin: 0 0 var(--space-2);
  font-size: var(--font-size-base);
  color: var(--color-navy);
}

.speaker-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.speaker-single {
  background: var(--color-white);
}

.speaker-single__hero {
  padding: var(--space-12) 0 var(--space-10);
  background: linear-gradient(180deg, var(--color-cream, #faf7f2) 0%, var(--color-white) 100%);
  border-bottom: 1px solid var(--color-border, #e5e0d6);
}

.speaker-single__hero-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (max-width: 720px) {
  .speaker-single__hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
  }
}

.speaker-single__photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: var(--color-cream-deep, #f0ebe1);
}
@media (max-width: 720px) {
  .speaker-single__photo {
    margin: 0 auto;
  }
}
.speaker-single__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker-single__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-single__monogram {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, #1a3a5f 100%);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.speaker-single__monogram span {
  text-transform: uppercase;
}

.speaker-single__intro .section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
}
.speaker-single__intro h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
  line-height: 1.15;
}

.speaker-single__title {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 500;
  margin: 0 0 var(--space-2);
}

.speaker-single__organisation {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0 0 var(--space-2);
}

.speaker-single__deceased {
  display: inline-block;
  margin-top: var(--space-2);
  padding: 4px 12px;
  background: var(--color-cream-deep, #f0ebe1);
  color: var(--color-navy);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.speaker-single__body {
  padding: var(--space-12) 0 var(--space-16);
}
.speaker-single__body .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: var(--space-12);
}
@media (max-width: 900px) {
  .speaker-single__body .container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.speaker-single__bio {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text);
}
.speaker-single__bio p {
  margin: 0 0 var(--space-4);
}
.speaker-single__bio p:last-child {
  margin-bottom: 0;
}

.speaker-single__bio-pending {
  padding: var(--space-6);
  background: var(--color-cream, #faf7f2);
  border-left: 3px solid var(--color-navy);
  color: var(--color-text-muted);
  font-style: italic;
  font-size: 0.95rem;
}

.speaker-single__social,
.speaker-single__affiliations {
  padding: var(--space-5) var(--space-6);
  background: var(--color-cream, #faf7f2);
  border-radius: 4px;
}

.speaker-single__social-heading,
.speaker-single__affiliations-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.speaker-single__social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.speaker-single__social-list li {
  margin: 0 0 var(--space-2);
}
.speaker-single__social-list a {
  color: var(--color-navy);
  text-decoration: none;
  font-size: 0.95rem;
}
.speaker-single__social-list a:hover {
  text-decoration: underline;
}

.speaker-events {
  padding: var(--space-10) 0 var(--space-16);
  background: var(--color-cream, #faf7f2);
  border-top: 1px solid var(--color-border, #e5e0d6);
}
.speaker-events h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-navy);
  margin: 0 0 var(--space-4);
}
.speaker-events h2:not(:first-child) {
  margin-top: var(--space-8);
}

.speaker-events__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.speaker-events__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border, #e5e0d6);
}
.speaker-events__list li:last-child {
  border-bottom: 0;
}
.speaker-events__list li a {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 500;
}
.speaker-events__list li a:hover {
  text-decoration: underline;
}

.speaker-events__date {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.ticket-grid:has(.ticket-card:only-child) {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.ticket-card {
  background: linear-gradient(180deg, var(--color-white) 0%, #fafbfc 100%);
  border: 1px solid rgba(34, 56, 114, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.ticket-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-teal) 100%);
}
.ticket-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ticket-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(34, 56, 114, 0.08);
}

.ticket-card__title {
  margin: 0;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.ticket-card__price {
  margin: 0;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-teal);
  white-space: nowrap;
  font-family: var(--font-heading);
}

.ticket-card__description {
  margin: 0 0 var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  line-height: 1.6;
}

.ticket-card__controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(34, 56, 114, 0.08);
}

.ticket-card__qty {
  width: 70px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
}

.ticket-card--sold-out {
  opacity: 0.7;
}
.ticket-card--sold-out::before {
  background: var(--color-gray);
}

.ticket-card__sold-out {
  color: var(--color-red);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.ticket-card--fellow::before {
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-navy) 100%);
}

.ticket-card__status {
  font-size: var(--font-size-sm);
}
.ticket-card__status--error {
  color: var(--color-red);
}
.ticket-card__status--success {
  color: var(--color-teal);
}

.ticket-card__badge {
  display: inline-block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
}
.ticket-card__badge--fellow {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.1));
  color: rgb(136.93125, 110.3625, 26.56875);
  border: 1px solid rgba(201, 162, 39, 0.3);
}
.ticket-card__badge--priority {
  background: linear-gradient(135deg, rgba(34, 56, 114, 0.1), rgba(34, 56, 114, 0.05));
  color: var(--color-navy);
  border: 1px solid rgba(34, 56, 114, 0.2);
}

.ticket-card__boltons {
  margin: var(--space-4) 0;
  padding: var(--space-4);
  background: var(--color-gray-light);
  border-radius: var(--radius-sm);
}

.ticket-card__boltons-label {
  margin: 0 0 var(--space-2);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.ticket-card__boltons-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ticket-card__boltons-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  font-size: var(--font-size-sm);
  border-bottom: 1px dashed var(--color-border);
}
.ticket-card__boltons-list li:last-child {
  border-bottom: 0;
}
.ticket-card__boltons-list .bolton-price {
  color: var(--color-teal);
  font-weight: 600;
}

.ticket-card .btn,
.ticket-card .btn-primary,
.ticket-card a.btn,
.ticket-card a.btn-primary {
  color: var(--color-white);
}
.ticket-card .btn:hover, .ticket-card .btn:focus, .ticket-card .btn:visited,
.ticket-card .btn-primary:hover,
.ticket-card .btn-primary:focus,
.ticket-card .btn-primary:visited,
.ticket-card a.btn:hover,
.ticket-card a.btn:focus,
.ticket-card a.btn:visited,
.ticket-card a.btn-primary:hover,
.ticket-card a.btn-primary:focus,
.ticket-card a.btn-primary:visited {
  color: var(--color-white);
}
.ticket-card .btn-outline,
.ticket-card a.btn-outline {
  color: var(--color-navy);
}
.ticket-card .btn-outline:visited,
.ticket-card a.btn-outline:visited {
  color: var(--color-navy);
}
.ticket-card .btn-outline:hover, .ticket-card .btn-outline:focus,
.ticket-card a.btn-outline:hover,
.ticket-card a.btn-outline:focus {
  color: var(--color-white);
}

.ticket-external-note {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(34, 56, 114, 0.1);
  text-align: center;
}
.ticket-external-note p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}
.ticket-external-note .btn-outline {
  display: inline-flex;
}

@media (max-width: 640px) {
  .ticket-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
/**
 * Hero Component Styles
 *
 * Consolidated styles for all hero types using the Hero Manager system.
 *
 * Hero Types:
 * - asymmetrical: Two-column layout with title block and image
 * - banner: Full-width background image with overlay
 * - minimal: Simple title-only hero
 * - split: 50/50 grid layout
 *
 * @package ThatcherCentre
 */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.hero-title-size-large {
  --hero-title-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-title-size-medium {
  --hero-title-size: clamp(1.75rem, 4.5vw, 3rem);
}

.hero-title-size-small {
  --hero-title-size: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  font-weight: 300;
  line-height: 1.6;
  margin: var(--space-6) 0 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-figure {
  margin: 0;
}

.hero-caption {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-gray-500);
  margin-top: var(--space-3);
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.hero-cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hero-cta-buttons .btn-primary {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border: 2px solid var(--color-gold);
}
.hero-cta-buttons .btn-primary:hover {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}
.hero-cta-buttons .btn-secondary {
  background-color: transparent;
  color: inherit;
  border: 2px solid currentColor;
}
.hero-cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-indicator .scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(5px, 5px);
  }
}
.hero-asymmetrical {
  position: relative;
  background-color: #fff;
  overflow: visible;
}
@media (max-width: 767px) {
  .hero-asymmetrical {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
}
@media (min-width: 768px) {
  .hero-asymmetrical {
    min-height: 550px;
  }
}
@media (min-width: 1200px) {
  .hero-asymmetrical {
    min-height: 600px;
  }
}
.hero-asymmetrical .hero-asymmetrical-wrapper {
  position: relative;
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 20px);
}
@media (max-width: 767px) {
  .hero-asymmetrical .hero-asymmetrical-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .hero-asymmetrical .hero-asymmetrical-wrapper {
    min-height: inherit;
  }
}
@media (max-width: 767px) {
  .hero-asymmetrical .hero-image-bg {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    order: 2;
  }
}
@media (min-width: 768px) {
  .hero-asymmetrical .hero-image-bg {
    position: absolute;
    top: var(--space-8);
    right: 0;
    bottom: var(--space-8);
    width: 55%;
    height: auto;
    z-index: 1;
  }
}
@media (min-width: 1200px) {
  .hero-asymmetrical .hero-image-bg {
    top: var(--space-12);
    bottom: var(--space-12);
    width: 52%;
  }
}
.hero-asymmetrical .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-asymmetrical .hero-content-overlay {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .hero-asymmetrical .hero-content-overlay {
    order: 1;
    padding: var(--space-6) var(--space-6) var(--space-8);
    justify-content: flex-start;
    min-height: auto;
  }
}
@media (min-width: 768px) {
  .hero-asymmetrical .hero-content-overlay {
    justify-content: center;
    min-height: inherit;
    padding: var(--space-16) 0;
    max-width: 45%;
  }
}
@media (min-width: 1200px) {
  .hero-asymmetrical .hero-content-overlay {
    padding: var(--space-20) 0;
    max-width: 48%;
  }
}
.hero-asymmetrical .hero-eyebrow {
  display: inline-block;
  background-color: rgba(12, 129, 148, var(--hero-title-bg-opacity, 1));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-4);
}
.hero-asymmetrical .hero-title {
  font-size: var(--hero-title-size, clamp(1.75rem, 5vw, 3rem));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
  color: #fff;
}
@media (min-width: 1200px) {
  .hero-asymmetrical .hero-title {
    font-size: var(--hero-title-size, clamp(2.5rem, 4vw, 52px));
  }
}
.hero-asymmetrical .hero-title-text {
  display: inline;
  background-color: rgba(12, 129, 148, var(--hero-title-bg-opacity, 0.8));
  padding: 8px 12px 8px 14px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .hero-asymmetrical .hero-title-text {
    padding: 8px 16px 8px 16px;
  }
}
.hero-asymmetrical .hero-subtitle {
  display: block;
  color: var(--color-navy, #0b3d59);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-6);
  max-width: 500px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .hero-asymmetrical .hero-subtitle {
    font-size: 1.25rem;
    margin-top: var(--space-8);
  }
}
.hero-asymmetrical .hero-scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-4);
  color: #0c8194;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.hero-asymmetrical .hero-scroll-arrow:hover {
  transform: translateY(6px);
}
.hero-asymmetrical .hero-scroll-arrow svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}
@media (max-width: 767px) {
  .hero-asymmetrical .hero-scroll-arrow svg {
    width: 24px;
    height: 24px;
  }
}
.hero-asymmetrical .hero-caption {
  z-index: 15;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--color-gray-600);
  max-width: 400px;
}
@media (max-width: 767px) {
  .hero-asymmetrical .hero-caption {
    position: relative;
    order: 3;
    padding: var(--space-3) var(--space-6);
    background: var(--color-gray-50);
    text-align: center;
  }
}
@media (min-width: 768px) {
  .hero-asymmetrical .hero-caption {
    position: absolute;
    bottom: var(--space-6);
    right: var(--space-6);
    left: auto;
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-2) var(--space-4);
  }
}
.hero-asymmetrical .hero-share-icons {
  z-index: 15;
}
@media (max-width: 767px) {
  .hero-asymmetrical .hero-share-icons {
    display: none;
  }
}
@media (min-width: 768px) {
  .hero-asymmetrical .hero-share-icons {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-12);
  }
}
.hero-asymmetrical .hero-share-icons .share-label {
  color: var(--color-gray-600);
  text-shadow: none;
}
.hero-asymmetrical .hero-share-icons .share-icon {
  background-color: var(--color-gray-100);
  color: var(--color-gray-600);
}
.hero-asymmetrical .hero-share-icons .share-icon:hover {
  background-color: #0c8194;
  color: #fff;
}
.hero-asymmetrical .hero-cta-buttons {
  margin-top: var(--space-6);
}
.hero-asymmetrical .hero-cta-buttons .btn-primary {
  background-color: #0c8194;
  border-color: #0c8194;
  color: #fff;
}
.hero-asymmetrical .hero-cta-buttons .btn-primary:hover {
  background-color: #0a6d7d;
  border-color: #0a6d7d;
}
.hero-asymmetrical .hero-cta-buttons .btn-secondary {
  border-color: #0c8194;
  color: #0c8194;
}
.hero-asymmetrical .hero-cta-buttons .btn-secondary:hover {
  background-color: #0c8194;
  color: #fff;
}
@media (min-width: 768px) {
  .hero-asymmetrical.text-position-top .hero-content-overlay {
    justify-content: flex-start;
    padding-top: var(--space-32);
  }
}
@media (min-width: 1200px) {
  .hero-asymmetrical.text-position-top .hero-content-overlay {
    padding-top: calc(var(--space-20) + 60px);
  }
}
@media (min-width: 768px) {
  .hero-asymmetrical.text-position-middle .hero-content-overlay {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .hero-asymmetrical.text-position-bottom .hero-content-overlay {
    justify-content: flex-end;
    padding-bottom: var(--space-24);
  }
}
@media (min-width: 1200px) {
  .hero-asymmetrical.text-position-bottom .hero-content-overlay {
    padding-bottom: var(--space-28);
  }
}
@media (min-width: 768px) {
  .hero-asymmetrical.text-position-bottom .hero-scroll-arrow {
    order: -1;
    margin-top: 0;
    margin-bottom: var(--space-6);
  }
}

.hero-share-icons {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.hero-share-icons .share-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-right: var(--space-2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.hero-share-icons .share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hero-share-icons .share-icon:hover {
  background-color: #fff;
  transform: scale(1.1);
}
.hero-share-icons .share-icon svg {
  width: 16px;
  height: 16px;
}
.hero-share-icons .share-facebook:hover {
  background-color: #1877f2;
  color: #fff;
}
.hero-share-icons .share-twitter:hover {
  background-color: #000;
  color: #fff;
}
.hero-share-icons .share-linkedin:hover {
  background-color: #0a66c2;
  color: #fff;
}
.hero-share-icons .share-email:hover {
  background-color: #ea4335;
  color: #fff;
}

.hero-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .hero-banner {
    min-height: 500px;
  }
}
@media (min-width: 1200px) {
  .hero-banner {
    min-height: 600px;
  }
}
.hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 20, 50, 0.5) 0%, rgba(0, 20, 50, 0.7) 100%);
  z-index: 1;
}
.hero-banner .hero-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: var(--space-12) var(--space-8);
}
.hero-banner .hero-eyebrow {
  color: var(--color-gold);
}
.hero-banner .hero-title {
  font-size: var(--hero-title-size, clamp(2.5rem, 6vw, 4.5rem));
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-banner .hero-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}
.hero-banner .hero-caption {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  z-index: 2;
  margin: 0;
}
.hero-banner .hero-cta-buttons {
  justify-content: center;
}
.hero-banner .hero-scroll-indicator {
  color: #fff;
}

.hero-event {
  position: relative;
  color: #fff;
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-14) 0 var(--space-18);
}
@media (min-width: 768px) {
  .hero-event {
    padding: var(--space-18) 0 var(--space-22);
  }
}
.hero-event .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 20, 50, 0.7) 0%, rgba(0, 20, 50, 0.85) 40%, rgba(0, 20, 50, 0.7) 100%);
  z-index: 1;
}
.hero-event .hero-event-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-event .hero-event-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}
.hero-event .hero-eyebrow {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-3);
}
.hero-event .hero-title {
  font-size: var(--hero-title-size, clamp(2.2rem, 4.5vw, 3.2rem));
  color: #fff;
  margin-bottom: var(--space-3);
}
.hero-event .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 540px;
}
.hero-event .hero-event-meta {
  font-size: var(--font-size-md);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-5);
}
.hero-event .hero-event-meta .meta-divider {
  margin: 0 var(--space-2);
}
.hero-event .hero-event-cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}
.hero-event .hero-event-image {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 900px) {
  .hero-event .hero-event-image {
    justify-content: flex-end;
  }
}
.hero-event .hero-event-figure {
  margin: 0;
  max-width: 420px;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}
.hero-event .hero-event-figure--rounded {
  border-radius: 28px;
}
.hero-event .hero-event-figure--square {
  border-radius: 6px;
}
.hero-event .hero-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-event .hero-event-caption {
  margin-top: var(--space-3);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 900px) {
  .hero-event .hero-event-image {
    justify-content: flex-start;
  }
  .hero-event .hero-event-figure {
    max-width: 360px;
    margin-inline: auto;
  }
}
@media (max-width: 600px) {
  .hero-event .hero-event-grid {
    gap: var(--space-6);
  }
  .hero-event .hero-title {
    font-size: var(--hero-title-size, clamp(2rem, 7vw, 2.6rem));
  }
}

.hero-minimal {
  background-color: var(--color-cream);
  padding: var(--space-16) 0 var(--space-12);
  text-align: center;
}
@media (min-width: 768px) {
  .hero-minimal {
    padding: var(--space-20) 0 var(--space-16);
  }
}
.hero-minimal .hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.hero-minimal .hero-eyebrow {
  color: var(--color-gold-dark);
}
.hero-minimal .hero-title {
  font-size: var(--hero-title-size, clamp(2rem, 4vw, 3rem));
  color: var(--color-navy);
}
.hero-minimal .hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-minimal .hero-cta-buttons {
  justify-content: center;
}
.hero-minimal .btn-primary {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}
.hero-minimal .btn-primary:hover {
  background-color: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
}

.hero-split {
  background-color: var(--color-cream);
}
.hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 450px;
}
@media (min-width: 768px) {
  .hero-split .hero-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
  }
}
.hero-split .hero-content-side {
  display: flex;
  align-items: center;
  padding: var(--space-12) var(--space-8);
  background-color: var(--color-cream);
}
@media (min-width: 768px) {
  .hero-split .hero-content-side {
    padding: var(--space-16) var(--space-12);
  }
}
@media (min-width: 1200px) {
  .hero-split .hero-content-side {
    padding: var(--space-20) var(--space-16);
  }
}
.hero-split .hero-content {
  max-width: 500px;
}
.hero-split .hero-eyebrow {
  color: var(--color-gold-dark);
}
.hero-split .hero-title {
  font-size: var(--hero-title-size, clamp(2rem, 4vw, 3rem));
  color: var(--color-navy);
}
.hero-split .hero-subtitle {
  color: var(--color-gray-600);
}
.hero-split .hero-image-side {
  position: relative;
  min-height: 300px;
}
@media (min-width: 768px) {
  .hero-split .hero-image-side {
    min-height: 100%;
  }
}
.hero-split .hero-figure {
  height: 100%;
}
.hero-split .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-split .hero-caption {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.8125rem;
  margin: 0;
}
.hero-split .btn-primary {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}
.hero-split .btn-primary:hover {
  background-color: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
}
.hero-split .hero-scroll-indicator {
  color: var(--color-navy);
  opacity: 0.5;
}

.home-section {
  padding: var(--space-16) 0;
}

@media (max-width: 768px) {
  .home-section {
    padding: var(--space-12) 0;
  }
}
.home-section.home-hero {
  padding: 0;
}

/**
 * Hero Slideshow Styles
 *
 * Styles for the homepage hero slideshow including slides, navigation, and CTAs.
 *
 * @package Thatcher
 */
.home-hero-slideshow {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  background: #0b3d59;
}
.home-hero-slideshow::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: inherit;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
}
.hero-slide--active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}
.hero-slide-content .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-slide--left .hero-slide-content .container {
  align-items: flex-start;
  text-align: left;
}

.hero-slide--center .hero-slide-content .container {
  align-items: center;
  text-align: center;
}

.hero-slide--right .hero-slide-content .container {
  align-items: flex-end;
  text-align: right;
}

.hero-slide--top {
  align-items: flex-start;
}
.hero-slide--top .hero-slide-content {
  padding-top: 120px;
}

.hero-slide--middle {
  align-items: center;
}

.hero-slide--bottom {
  align-items: flex-end;
}
.hero-slide--bottom .hero-slide-content {
  padding-bottom: 120px;
}

.hero-slide-title {
  margin: 0 0 1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: inherit;
}

.hero-slide-subtitle {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  color: inherit;
}

.hero-slide--title-small .hero-slide-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-slide--subtitle-small .hero-slide-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.hero-slide--title-medium .hero-slide-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-slide--subtitle-medium .hero-slide-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-slide--title-large .hero-slide-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-slide--subtitle-large .hero-slide-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.hero-slide--title-xlarge .hero-slide-title {
  font-size: clamp(3rem, 8vw, 6rem);
}

.hero-slide-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-slide--left .hero-slide-ctas {
  justify-content: flex-start;
}

.hero-slide--center .hero-slide-ctas {
  justify-content: center;
}

.hero-slide--right .hero-slide-ctas {
  justify-content: flex-end;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.hero-cta-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.hero-cta-btn--primary {
  background: #9a1b30;
  color: #fff;
  border-color: #9a1b30;
}
.hero-cta-btn--primary:hover {
  background: #7a1526;
  border-color: #7a1526;
  color: #fff;
}

.hero-cta-btn--secondary {
  background: #0b3d59;
  color: #fff;
  border-color: #0b3d59;
}
.hero-cta-btn--secondary:hover {
  background: #092e45;
  border-color: #092e45;
  color: #fff;
}

.hero-cta-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.hero-cta-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-cta-btn--outline-dark {
  background: transparent;
  color: #333;
  border-color: #333;
}
.hero-cta-btn--outline-dark:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}

.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.hero-cta-link::after {
  content: "";
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}
.hero-cta-link:hover::after {
  width: 100%;
}
.hero-cta-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.hero-cta-link--primary {
  color: #9a1b30;
}
.hero-cta-link--primary:hover {
  color: #7a1526;
}

.hero-cta-link--secondary {
  color: #0b3d59;
}
.hero-cta-link--secondary:hover {
  color: #092e45;
}

.hero-cta-link--outline-light {
  color: #fff;
}
.hero-cta-link--outline-light:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hero-cta-link--outline-dark {
  color: #333;
}
.hero-cta-link--outline-dark:hover {
  color: #000;
}

.hero-slideshow-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero-slideshow-nav {
    padding: 0 2rem;
  }
}

.hero-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(4px);
}
.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.hero-nav-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.hero-nav-btn svg {
  width: 24px;
  height: 24px;
}

.hero-slideshow-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}
.hero-dot--active {
  background: #fff;
  transform: scale(1.2);
}
.hero-dot:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.home-hero-slideshow .hero-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}
.home-hero-slideshow .hero-name span {
  display: block;
  font-size: clamp(4rem, 20vw, 15rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.1em;
  line-height: 0.8;
  transform: translateY(30%);
  text-transform: uppercase;
}

.hero-social-icons {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 10;
}
@media (max-width: 767px) {
  .hero-social-icons {
    left: 1rem;
    gap: 0.5rem;
  }
}

.hero-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.hero-social-icon svg {
  width: 18px;
  height: 18px;
}
.hero-social-icon:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.hero-social-icon:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .hero-social-icon {
    width: 36px;
    height: 36px;
  }
  .hero-social-icon svg {
    width: 16px;
    height: 16px;
  }
}

.hero-scroll-arrow {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 10;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}
.hero-scroll-arrow svg {
  width: 28px;
  height: 28px;
}
.hero-scroll-arrow:hover {
  color: #fff;
  transform: translateX(-50%) translateY(4px);
  animation-play-state: paused;
}
.hero-scroll-arrow:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .hero-scroll-arrow {
    bottom: 4.5rem;
    width: 40px;
    height: 40px;
  }
  .hero-scroll-arrow svg {
    width: 24px;
    height: 24px;
  }
}

@keyframes hero-scroll-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(8px);
  }
  60% {
    transform: translateX(-50%) translateY(4px);
  }
}
.home-hero-slideshow:has(.hero-scroll-arrow) .hero-slideshow-dots {
  bottom: 5.5rem;
}
@media (max-width: 767px) {
  .home-hero-slideshow:has(.hero-scroll-arrow) .hero-slideshow-dots {
    bottom: 7rem;
  }
}

.hero-transition-fade .hero-slide {
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-transition-slide .hero-slide {
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease, visibility 0.8s ease;
}
.hero-transition-slide .hero-slide--active {
  transform: translateX(0);
}

.hero-transition-zoom .hero-slide {
  transform: scale(1.1);
  transition: transform 0.8s ease, opacity 0.8s ease, visibility 0.8s ease;
}
.hero-transition-zoom .hero-slide--active {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-nav-btn,
  .hero-dot,
  .hero-cta-btn,
  .hero-cta-link {
    transition: none;
  }
  .hero-cta-link::after {
    transition: none;
  }
}
@media (max-width: 767px) {
  .home-hero-slideshow {
    min-height: 70vh;
  }
  .hero-slide {
    min-height: 70vh;
  }
  .hero-slide-content {
    padding: 60px 0;
  }
  .hero-slide--top .hero-slide-content {
    padding-top: 80px;
  }
  .hero-slide--bottom .hero-slide-content {
    padding-bottom: 80px;
  }
  .hero-slideshow-dots {
    bottom: 1.5rem;
  }
  .hero-nav-btn {
    width: 40px;
    height: 40px;
  }
  .hero-nav-btn svg {
    width: 20px;
    height: 20px;
  }
  .hero-cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .hero-slide-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  .hero-slide--center .hero-slide-ctas {
    align-items: center;
  }
}
/**
 * Quote Slideshow Component
 *
 * Styles for the rotating quote slideshow on the Resources page.
 * Supports slide and fade animations, dots navigation, and mobile optimization.
 *
 * @package ThatcherCentre
 */
.resources-quote {
  padding: 4rem 0;
  background-color: var(--color-bg-alt, #f8f9fa);
  text-align: center;
}

.featured-quote {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.featured-quote p {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-primary, #1a1a2e);
  margin-bottom: 1.5rem;
}
.featured-quote p::before {
  content: "“";
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.25rem;
  color: var(--color-primary, #0d47a1);
}
.featured-quote p::after {
  content: "”";
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 0.1rem;
  color: var(--color-primary, #0d47a1);
}
.featured-quote cite {
  display: block;
  font-size: 1rem;
  font-style: normal;
  color: var(--color-text-secondary, #666);
}

.quote-cta {
  margin-top: 2rem;
  text-align: center;
}

.resources-quote--slideshow .quote-slideshow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  min-height: 200px;
}

.quote-slideshow-track {
  position: relative;
  overflow: hidden;
}

.quote-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
  transform: translateX(100%);
}
.quote-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.quote-slide p {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-primary, #1a1a2e);
  margin-bottom: 1.5rem;
}
.quote-slide p::before {
  content: "“";
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.25rem;
  color: var(--color-primary, #0d47a1);
}
.quote-slide p::after {
  content: "”";
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 0.1rem;
  color: var(--color-primary, #0d47a1);
}
.quote-slide cite {
  display: block;
  font-size: 1rem;
  font-style: normal;
  color: var(--color-text-secondary, #666);
}

.quote-slideshow.animation-slide .quote-slide.is-entering.enter-next {
  animation: slideInFromRight 0.6s ease forwards;
}
.quote-slideshow.animation-slide .quote-slide.is-entering.enter-prev {
  animation: slideInFromLeft 0.6s ease forwards;
}
.quote-slideshow.animation-slide .quote-slide.is-exiting.exit-next {
  animation: slideOutToLeft 0.6s ease forwards;
}
.quote-slideshow.animation-slide .quote-slide.is-exiting.exit-prev {
  animation: slideOutToRight 0.6s ease forwards;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOutToLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%);
  }
}
@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(50%);
  }
}
.quote-slideshow.animation-fade .quote-slide {
  transform: none;
}
.quote-slideshow.animation-fade .quote-slide.is-entering {
  animation: fadeIn 0.6s ease forwards;
}
.quote-slideshow.animation-fade .quote-slide.is-exiting {
  animation: fadeOut 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.quote-slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.5rem 0;
}

.quote-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid var(--color-primary, #0d47a1);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.quote-dot:hover {
  background-color: rgba(13, 71, 161, 0.3);
  transform: scale(1.1);
}
.quote-dot:focus {
  outline: 2px solid var(--color-primary, #0d47a1);
  outline-offset: 2px;
}
.quote-dot.is-active {
  background-color: var(--color-primary, #0d47a1);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .resources-quote {
    padding: 3rem 0;
  }
  .featured-quote p,
  .quote-slide p {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .featured-quote p::before, .featured-quote p::after,
  .quote-slide p::before,
  .quote-slide p::after {
    font-size: 2rem;
    vertical-align: -0.3em;
  }
  .featured-quote cite,
  .quote-slide cite {
    font-size: 0.9rem;
  }
  .quote-slideshow {
    min-height: 180px;
  }
  .quote-slideshow-dots {
    gap: 0.5rem;
  }
  .quote-dot {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 480px) {
  .resources-quote {
    padding: 2rem 0;
  }
  .featured-quote p,
  .quote-slide p {
    font-size: 1.1rem;
  }
  .featured-quote p::before, .featured-quote p::after,
  .quote-slide p::before,
  .quote-slide p::after {
    font-size: 1.5rem;
  }
  .featured-quote cite,
  .quote-slide cite {
    font-size: 0.85rem;
  }
  .quote-slideshow {
    min-height: 160px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .quote-slide {
    transition: opacity 0.3s ease, visibility 0.3s;
    transform: none !important;
  }
  .quote-slide.is-entering, .quote-slide.is-exiting {
    animation: none;
  }
  .quote-slideshow.animation-slide .quote-slide.is-entering, .quote-slideshow.animation-slide .quote-slide.is-exiting,
  .quote-slideshow.animation-fade .quote-slide.is-entering,
  .quote-slideshow.animation-fade .quote-slide.is-exiting {
    animation: none;
  }
  .quote-slideshow.animation-slide .quote-slide.is-active,
  .quote-slideshow.animation-fade .quote-slide.is-active {
    opacity: 1;
  }
  .quote-slideshow.animation-slide .quote-slide:not(.is-active),
  .quote-slideshow.animation-fade .quote-slide:not(.is-active) {
    opacity: 0;
  }
}
.events-mega-panel {
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 780px;
  max-width: calc(100vw - 40px);
  background-color: #ffffff;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 500;
  padding: 0;
}
.events-mega-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.events-mega-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.events-mega-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.events-mega-menu {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  position: relative;
}
.events-mega-menu__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.15s ease;
  color: #666666;
}
.events-mega-menu__close:hover {
  background-color: #f5f5f5;
  color: #223872;
}
.events-mega-menu__close svg {
  width: 20px;
  height: 20px;
}
.events-mega-menu__navigation {
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
}
.events-mega-menu__series {
  flex: 1;
  margin-bottom: 1.25rem;
}
.events-mega-menu__quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e0e0e0;
}
.events-mega-menu__quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #223872;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: all 0.15s ease;
  background-color: transparent;
}
.events-mega-menu__quick-link:hover {
  background-color: #ffffff;
  color: #00A5B8;
}
.events-mega-menu__quick-link--primary {
  background-color: #223872;
  color: #ffffff;
}
.events-mega-menu__quick-link--primary:hover {
  background-color: #00A5B8;
  color: #ffffff;
}
.events-mega-menu__quick-link--primary .events-mega-menu__icon {
  stroke: currentColor;
}
.events-mega-menu__icon {
  flex-shrink: 0;
  stroke: currentColor;
}
.events-mega-menu__section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
  padding: 0 1rem;
}
.events-mega-menu__series-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.events-mega-menu__series-item {
  margin: 0;
}
.events-mega-menu__series-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #223872;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.events-mega-menu__series-link:hover {
  background-color: #ffffff;
}
.events-mega-menu__series-link:hover .events-mega-menu__series-title {
  color: #00A5B8;
}
.events-mega-menu__series-title {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: #223872;
  transition: color 0.15s ease;
}
.events-mega-menu__series-desc {
  display: block;
  font-size: 0.75rem;
  color: #666666;
  margin-top: 0.25rem;
}
.events-mega-menu__upcoming {
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  border-radius: 0 10px 10px 0;
  min-width: 320px;
}
.events-mega-menu__events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.events-mega-menu__event-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: #f5f5f5;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}
.events-mega-menu__event-card:hover {
  background-color: #ffffff;
  border-color: #00A5B8;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.events-mega-menu__event-card:hover .events-mega-menu__event-title {
  color: #00A5B8;
}
.events-mega-menu__event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  padding: 0.5rem 0.75rem;
  background-color: #223872;
  color: #ffffff;
  border-radius: 4px;
  text-align: center;
}
.events-mega-menu__event-day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.events-mega-menu__event-month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.events-mega-menu__event-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.events-mega-menu__event-type {
  font-size: 0.75rem;
  color: #00A5B8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.events-mega-menu__event-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #223872;
  line-height: 1.3;
  transition: color 0.15s ease;
}
.events-mega-menu__see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00A5B8;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.15s ease;
}
.events-mega-menu__see-all:hover {
  color: #008a9a;
}
.events-mega-menu__see-all:hover .events-mega-menu__arrow {
  transform: translateX(4px);
}
.events-mega-menu__arrow {
  transition: transform 0.15s ease;
}
.events-mega-menu__no-events {
  color: #666666;
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem 1rem;
  margin: 0 0 1rem 0;
}

@media (max-width: 1100px) {
  .events-mega-panel {
    width: 680px;
  }
  .events-mega-menu {
    grid-template-columns: 280px 1fr;
  }
}
@media (max-width: 960px) {
  .events-mega-panel {
    display: none !important;
  }
  .events-mega-overlay {
    display: none !important;
  }
  .menu-item-mega > .sub-menu:not(.events-mega-panel) {
    display: block;
  }
}
.events-page section {
  padding: var(--space-16) 0;
}

.events-page .hero-section,
.events-page .page-breadcrumb-section {
  padding: 0;
}

.events-hero {
  background: linear-gradient(135deg, #0b3d59 0%, #1a6985 100%);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
}
.events-hero .section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.events-title {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.events-subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.events-calendar-nav {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.events-calendar-controls {
  display: flex;
  justify-content: center;
  align-items: center;
}

.events-view-toggle {
  display: flex;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.25rem;
  border-radius: 0.75rem;
}

.events-view-toggle__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
}
.events-view-toggle__btn svg {
  opacity: 0.7;
}
.events-view-toggle__btn:hover {
  background: rgba(11, 61, 89, 0.1);
  color: #0b3d59;
}
.events-view-toggle__btn--active {
  background: #0b3d59;
  color: #fff;
  box-shadow: 0 2px 8px rgba(11, 61, 89, 0.3);
}
.events-view-toggle__btn--active svg {
  opacity: 1;
}
.events-view-toggle__btn--active:hover {
  background: rgb(8.195, 45.445, 66.305);
  color: #fff;
}

.events-view-toggle__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.1);
}
.events-view-toggle__btn--active .events-view-toggle__count {
  background: rgba(255, 255, 255, 0.2);
}

.events-timeline-section {
  padding: 3rem 0 4rem;
  background: #f8f9fa;
  min-height: 60vh;
}

.events-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.events-timeline--past .events-timeline__date-block {
  background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.events-timeline-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #6b7280;
}
.events-timeline-empty p {
  font-size: 1.125rem;
  margin: 0;
}

.events-timeline__month {
  margin-bottom: 2.5rem;
}
.events-timeline__month:last-child {
  margin-bottom: 0;
}

.events-timeline__month-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #0b3d59;
}

.events-timeline__month-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0;
}

.events-timeline__month-count {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}

.events-timeline__events {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.events-timeline__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 61, 89, 0.06);
  position: relative;
  overflow: hidden;
}
.events-timeline__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #0b3d59 0%, #1a6985 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.events-timeline__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.1), 0 24px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: rgba(11, 61, 89, 0.12);
}
.events-timeline__card:hover::before {
  opacity: 1;
}

.events-timeline__date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 6.5rem;
  background: linear-gradient(145deg, #0b3d59 0%, rgb(21.8301886792, 88.1603773585, 111.6698113208) 100%);
  border-radius: 1rem;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 61, 89, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.events-timeline__date-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  border-radius: 1rem 1rem 0 0;
}

.events-timeline__day {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.events-timeline__month-abbr {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.95;
  margin-top: 0.125rem;
  position: relative;
  z-index: 1;
}

.events-timeline__weekday {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-top: 0.25rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.events-timeline__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.25rem 0;
}

.events-timeline__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.events-timeline__type {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, rgba(154, 27, 48, 0.12) 0%, rgba(154, 27, 48, 0.08) 100%);
  color: #9a1b30;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(154, 27, 48, 0.15);
}

.events-timeline__time,
.events-timeline__venue {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.events-timeline__time svg,
.events-timeline__venue svg {
  flex-shrink: 0;
  opacity: 0.5;
  color: #0b3d59;
}

.events-timeline__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.events-timeline__title a {
  color: #0b3d59;
  text-decoration: none;
  transition: color 0.2s ease;
}
.events-timeline__title a:hover {
  color: #1a6985;
}

.events-timeline__excerpt {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 560px;
}

.events-timeline__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.events-timeline__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.8125rem 1.375rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.events-timeline__btn svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.events-timeline__btn--primary {
  background: linear-gradient(135deg, #0b3d59 0%, rgb(6.512, 36.112, 52.688) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(11, 61, 89, 0.25);
}
.events-timeline__btn--primary:hover {
  background: linear-gradient(135deg, rgb(8.195, 45.445, 66.305) 0%, rgb(4.268, 23.668, 34.532) 100%);
  box-shadow: 0 4px 16px rgba(11, 61, 89, 0.35);
  transform: translateY(-1px);
}
.events-timeline__btn--primary:hover svg {
  transform: translateX(4px);
}
.events-timeline__btn--secondary {
  background: transparent;
  color: #0b3d59;
  border: 2px solid rgba(11, 61, 89, 0.2);
}
.events-timeline__btn--secondary:hover {
  background: rgba(11, 61, 89, 0.05);
  border-color: #0b3d59;
}

.events-timeline__thumbnail {
  width: 200px;
  height: 180px;
  border-radius: 1rem;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
}
.events-timeline__thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}
.events-timeline__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.events-timeline__thumbnail:hover img {
  transform: scale(1.08);
}

.events-subscribe-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0b3d59 0%, rgb(5.39, 29.89, 43.61) 100%);
}

.events-subscribe-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.events-subscribe-cta__content {
  flex: 1;
  min-width: 280px;
}

.events-subscribe-cta__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.events-subscribe-cta__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 500px;
  line-height: 1.6;
}

.events-subscribe-cta__form {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
}

@media (max-width: 768px) {
  .events-subscribe-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .events-subscribe-cta__content {
    max-width: none;
  }
  .events-subscribe-cta__form {
    width: 100%;
    max-width: none;
  }
  .events-subscribe-cta__text {
    max-width: none;
  }
}
.events-filters-wrap {
  background: var(--color-gray-light);
}

.events-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  align-items: end;
}
.events-filters label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.events-filters select {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
}
.events-filters .btn {
  justify-self: start;
}

.events-list {
  background: var(--color-white);
}

.events-section {
  margin-bottom: var(--space-12);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.no-events {
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .events-page section {
    padding: var(--space-12) 0;
  }
  .events-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
}
@media (max-width: 768px) {
  .events-hero {
    padding: 3rem 0;
  }
  .events-calendar-nav {
    padding: 1rem 0;
  }
  .events-view-toggle__btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
  .events-view-toggle__btn svg {
    display: none;
  }
  .events-timeline-section {
    padding: 2rem 0 3rem;
  }
  .events-timeline__card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .events-timeline__card::before {
    display: none;
  }
  .events-timeline__date-block {
    width: 100%;
    height: auto;
    padding: 1rem 1.25rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    border-radius: 0.75rem;
  }
  .events-timeline__day {
    font-size: 2rem;
  }
  .events-timeline__month-abbr {
    font-size: 1rem;
  }
  .events-timeline__weekday {
    margin-top: 0;
    margin-left: 0.25rem;
  }
  .events-timeline__thumbnail {
    width: 100%;
    height: 200px;
    order: -1;
    border-radius: 0.75rem;
  }
  .events-timeline__title {
    font-size: 1.25rem;
  }
  .events-timeline__excerpt {
    font-size: 0.9375rem;
  }
  .events-timeline__actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .events-timeline__btn {
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
  .events-subscribe-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .events-subscribe-cta__text {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .events-view-toggle {
    width: 100%;
  }
  .events-view-toggle__btn {
    flex: 1;
    justify-content: center;
  }
  .events-timeline__card {
    grid-template-columns: 1fr;
  }
  .events-timeline__date-block {
    width: 100%;
    height: auto;
    padding: 0.75rem;
    flex-direction: row;
    gap: 0.5rem;
  }
  .events-timeline__day {
    font-size: 1.25rem;
  }
  .events-timeline__month-abbr,
  .events-timeline__weekday {
    font-size: 0.8125rem;
  }
  .events-timeline__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.events-section__header {
  margin-bottom: 1.5rem;
}
.events-section__subtitle {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}
.events-section__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.events-section__live-indicator {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.events-view-toggle__btn--live.active {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-color: #b91c1c;
  color: white;
}
.events-view-toggle__btn--live.active:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}
.events-view-toggle__btn--live:not(.active):hover {
  border-color: #dc2626;
  color: #dc2626;
}

.events-view-toggle__count--live {
  background: #fecaca;
  color: #dc2626;
}
.events-view-toggle__btn--live.active .events-view-toggle__count--live {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.events-year-group {
  margin-bottom: 3rem;
}
.events-year-group:last-child {
  margin-bottom: 0;
}
.events-year-group__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}
.events-year-group__year {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0;
}
.events-year-group__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.5rem;
  padding: 0 0.5rem;
  background: #f8f9fa;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1rem;
}

.events-pagination {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.events-pagination__info {
  color: #6b7280;
  font-size: 0.875rem;
}
.events-pagination__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.events-pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.events-pagination__btn:hover {
  background: #f8f9fa;
  border-color: #1a6985;
  color: #1a6985;
}
.events-pagination__btn svg {
  flex-shrink: 0;
}
.events-pagination__pages {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.events-pagination__pages a, .events-pagination__pages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.events-pagination__pages a {
  color: #374151;
  background: white;
  border: 1px solid #e5e7eb;
}
.events-pagination__pages a:hover {
  background: #f8f9fa;
  border-color: #1a6985;
  color: #1a6985;
}
.events-pagination__pages .current {
  background: #0b3d59;
  color: white;
  border: none;
}
.events-pagination__pages .dots {
  border: none;
  background: none;
  color: #6b7280;
}

@media (max-width: 600px) {
  .events-pagination__links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .events-pagination__btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
  .events-pagination__pages {
    order: 1;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}
.events-timeline-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8f9fa;
  border-radius: 1rem;
  border: 2px dashed #e5e7eb;
}
.events-timeline-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: white;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: #6b7280;
}
.events-timeline-empty__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 0.5rem;
}
.events-timeline-empty__message {
  color: #6b7280;
  font-size: 1rem;
  margin: 0 0 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.events-timeline-empty__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #0b3d59;
  color: white;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.events-timeline-empty__cta:hover {
  background: rgb(5.39, 29.89, 43.61);
}

.events-page--redesign {
  background: var(--color-white);
}
.events-page--redesign .events-intro {
  padding: var(--space-6) 0 var(--space-8);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.events-page--redesign .events-intro__eyebrow {
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
}
.events-page--redesign .events-intro__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  color: var(--color-navy);
}
.events-page--redesign .events-intro__lede {
  max-width: 720px;
  margin: 0 auto var(--space-5);
  color: var(--color-text);
  line-height: 1.55;
}
.events-page--redesign .events-intro__counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}
.events-page--redesign .events-counter {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.events-page--redesign .events-counter:hover, .events-page--redesign .events-counter:focus {
  border-color: var(--color-navy);
  transform: translateY(-1px);
  color: var(--color-navy);
}
.events-page--redesign .events-counter__num {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-navy);
}
.events-page--redesign .events-counter__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.events-page--redesign .events-counter--videos .events-counter__num {
  color: #FF0000;
}
.events-page--redesign .events-promo-banner {
  padding: var(--space-5) 0 var(--space-2);
}
.events-page--redesign .events-promo-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.04) 100%);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-left: 4px solid var(--color-gold);
  border-radius: 4px;
  color: var(--color-navy);
}
.events-page--redesign .events-promo-banner__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-radius: 50%;
}
.events-page--redesign .events-promo-banner__copy {
  flex: 1 1 320px;
  min-width: 0;
}
.events-page--redesign .events-promo-banner__eyebrow {
  margin: 0 0 var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-gold);
}
.events-page--redesign .events-promo-banner__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-navy-dark);
}
.events-page--redesign .events-promo-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  flex: 0 0 auto;
  padding: var(--space-2) var(--space-4);
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.events-page--redesign .events-promo-banner__cta:hover, .events-page--redesign .events-promo-banner__cta:focus {
  background: var(--color-navy-dark);
  transform: translateY(-1px);
  color: var(--color-white);
}
@media (max-width: 640px) {
  .events-page--redesign .events-promo-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .events-page--redesign .events-promo-banner__cta {
    width: 100%;
    justify-content: center;
  }
}
.events-page--redesign .events-next {
  position: relative;
  padding: var(--space-14) 0;
  background: linear-gradient(135deg, rgba(8, 18, 48, 0.92) 0%, rgba(34, 56, 114, 0.78) 100%), var(--events-next-bg, none), var(--color-navy-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  overflow: hidden;
  isolation: isolate;
}
.events-page--redesign .events-next__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201, 162, 39, 0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.events-page--redesign .events-next .container {
  position: relative;
  z-index: 1;
}
.events-page--redesign .events-next__inner {
  max-width: 820px;
}
.events-page--redesign .events-next__heading {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.events-page--redesign .events-next__eyebrow {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.events-page--redesign .events-next__countdown {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.events-page--redesign .events-next__date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: var(--space-5);
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  line-height: 1;
}
.events-page--redesign .events-next__date-badge-month {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.events-page--redesign .events-next__date-badge-day {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  margin-top: 2px;
}
.events-page--redesign .events-next__date-badge-year {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.events-page--redesign .events-next__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
}
.events-page--redesign .events-next__title a {
  color: var(--color-white);
  text-decoration: none;
}
.events-page--redesign .events-next__title a:hover, .events-page--redesign .events-next__title a:focus {
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 6px;
}
.events-page--redesign .events-next__meta {
  margin: 0 0 var(--space-5);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}
.events-page--redesign .events-next__meta .meta-divider {
  margin: 0 var(--space-2);
  opacity: 0.6;
}
.events-page--redesign .events-next__excerpt {
  margin: 0 0 var(--space-6);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  font-size: 1.05rem;
  max-width: 640px;
}
.events-page--redesign .events-next__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.events-page--redesign .events-next__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.events-page--redesign .events-next__actions .btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}
.events-page--redesign .events-next__actions .btn-primary:hover, .events-page--redesign .events-next__actions .btn-primary:focus {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-navy-dark);
}
@media (max-width: 768px) {
  .events-page--redesign .events-next {
    padding: var(--space-10) 0;
  }
  .events-page--redesign .events-next__date-badge {
    width: 80px;
    height: 80px;
  }
  .events-page--redesign .events-next__date-badge-day {
    font-size: 2.2rem;
  }
}
.events-page--redesign .events-section-header {
  margin-bottom: var(--space-7);
  text-align: center;
}
.events-page--redesign .events-section-header__eyebrow {
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
}
.events-page--redesign .events-section-header__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-navy);
}
.events-page--redesign .events-section-header__lede {
  max-width: 640px;
  margin: var(--space-3) auto 0;
  color: var(--color-text);
  line-height: 1.55;
}
.events-page--redesign .events-section-header--on-dark .events-section-header__title {
  color: var(--color-white);
}
.events-page--redesign .events-section-header--on-dark .events-section-header__lede {
  color: rgba(255, 255, 255, 0.85);
}
.events-page--redesign .events-upcoming {
  padding: var(--space-12) 0 var(--space-10);
}
.events-page--redesign .events-past {
  padding: var(--space-14) 0;
  background: #0c1b3a;
  color: var(--color-white);
}
.events-page--redesign .events-empty {
  padding: var(--space-10) 0;
  text-align: center;
  background: var(--color-gray-light);
}
.events-page--redesign .events-empty__copy {
  max-width: 540px;
  margin: 0 auto;
  color: var(--color-text);
  line-height: 1.55;
}
.events-page--redesign .events-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.events-page--redesign .events-grid--on-dark .event-card-tile {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}
.events-page--redesign .events-grid--on-dark .event-card-tile:hover, .events-page--redesign .events-grid--on-dark .event-card-tile:focus-within {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--color-gold);
}
.events-page--redesign .events-grid--on-dark .event-card-tile .event-card-tile__title {
  color: var(--color-white);
}
.events-page--redesign .events-grid--on-dark .event-card-tile .event-card-tile__meta {
  color: rgba(255, 255, 255, 0.7);
}
.events-page--redesign .events-grid--on-dark .event-card-tile .event-card-tile__excerpt {
  color: rgba(255, 255, 255, 0.78);
}
.events-page--redesign .event-card-tile {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.events-page--redesign .event-card-tile:hover, .events-page--redesign .event-card-tile:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--color-navy);
}
.events-page--redesign .event-card-tile__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.events-page--redesign .event-card-tile__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-gray-light);
}
.events-page--redesign .event-card-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.events-page--redesign .event-card-tile:hover .event-card-tile__media img, .events-page--redesign .event-card-tile:focus-within .event-card-tile__media img {
  transform: scale(1.04);
}
.events-page--redesign .event-card-tile__media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 56, 114, 0.15) 0%, rgba(34, 56, 114, 0.05) 100%);
}
.events-page--redesign .event-card-tile__date-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 56px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  line-height: 1;
}
.events-page--redesign .event-card-tile__date-badge-month {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}
.events-page--redesign .event-card-tile__date-badge-day {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 2px;
}
.events-page--redesign .event-card-tile__video-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  background: #FF0000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.events-page--redesign .event-card-tile__body {
  padding: var(--space-4) var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.events-page--redesign .event-card-tile__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--color-navy);
}
.events-page--redesign .event-card-tile__meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.events-page--redesign .event-card-tile__meta .meta-divider {
  margin: 0 var(--space-2);
  opacity: 0.6;
}
.events-page--redesign .event-card-tile__excerpt {
  margin: var(--space-1) 0 0;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.55;
}
.events-page--redesign .event-card-tile--has-video {
  border-color: rgba(255, 0, 0, 0.35);
}

.event-series-page section {
  padding: var(--space-16) 0;
}

.event-series-page .hero-section,
.event-series-page .page-breadcrumb-section {
  padding: 0;
}

.event-series__hero {
  background: linear-gradient(135deg, #0b3d59 0%, #1a6985 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.event-series__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.event-series__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  color: #fff;
}

.event-series__description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.event-series__description p {
  margin: 0 0 1rem;
}
.event-series__description p:last-child {
  margin-bottom: 0;
}

.event-series__promotions {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #e5e7eb;
}

.event-series__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
@media (min-width: 1100px) {
  .event-series__promotions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.event-series__promotions-grid:has(.event-series__promo-card:nth-child(2):last-child) {
  max-width: 800px;
  margin: 0 auto;
}

.event-series__promo-card {
  position: relative;
  background: #fff;
  padding: 2rem 2rem 2.25rem;
  border: 1px solid #e5e7eb;
  border-top: 4px solid #0b3d59;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.event-series__promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0b3d59, rgb(19.415, 107.665, 157.085));
  transition: height 0.3s ease;
}
.event-series__promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 24px 48px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}
.event-series__promo-card:hover::before {
  height: 5px;
}
.event-series__promo-card:hover .event-series__promo-icon {
  transform: scale(1.08);
  background: #0b3d59;
  color: #fff;
}
.event-series__promo-card:hover .event-series__promo-link {
  gap: 0.75rem;
}
.event-series__promo-card:nth-child(2) {
  border-top-color: #1a6985;
}
.event-series__promo-card:nth-child(2)::before {
  background: linear-gradient(90deg, #1a6985, rgb(38.5094339623, 155.5188679245, 196.9905660377));
}
.event-series__promo-card:nth-child(2):hover .event-series__promo-icon {
  background: #1a6985;
}
.event-series__promo-card:nth-child(2) .event-series__promo-icon {
  background: rgba(26, 105, 133, 0.12);
  color: #1a6985;
}
.event-series__promo-card:nth-child(2) .event-series__promo-link {
  color: #1a6985;
}
.event-series__promo-card:nth-child(2) .event-series__promo-link:hover {
  color: rgb(15.9924528302, 64.5849056604, 81.8075471698);
}
.event-series__promo-card:nth-child(3) {
  border-top-color: #9a1b30;
}
.event-series__promo-card:nth-child(3)::before {
  background: linear-gradient(90deg, #9a1b30, rgb(206.070718232, 36.129281768, 64.2298342541));
}
.event-series__promo-card:nth-child(3):hover .event-series__promo-icon {
  background: #9a1b30;
}
.event-series__promo-card:nth-child(3) .event-series__promo-icon {
  background: rgba(154, 27, 48, 0.1);
  color: #9a1b30;
}
.event-series__promo-card:nth-child(3) .event-series__promo-link {
  color: #9a1b30;
}
.event-series__promo-card:nth-child(3) .event-series__promo-link:hover {
  color: rgb(101.929281768, 17.870718232, 31.7701657459);
}

.event-series__promo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(11, 61, 89, 0.1);
  color: #0b3d59;
  margin-bottom: 1.25rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-series__promo-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.event-series__promo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 0.875rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.event-series__promo-desc {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}
.event-series__promo-desc:not(:last-child) {
  margin-bottom: 1.25rem;
}

.event-series__promo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0b3d59;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
  padding-top: 0.5rem;
}
.event-series__promo-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.event-series__promo-link:hover {
  color: rgb(4.268, 23.668, 34.532);
}
.event-series__promo-link:hover svg {
  transform: translateX(4px);
}

.event-series__nav {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.event-series__toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #f8f9fa;
  width: fit-content;
  margin: 0 auto;
  border: 2px solid #0b3d59;
}

.event-series__toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0b3d59;
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;
}
.event-series__toggle-btn svg {
  opacity: 0.7;
}
.event-series__toggle-btn:hover {
  background: rgba(11, 61, 89, 0.1);
}
.event-series__toggle-btn--active {
  background: #0b3d59;
  color: #fff;
}
.event-series__toggle-btn--active svg {
  opacity: 1;
}
.event-series__toggle-btn--active:hover {
  background: rgb(8.195, 45.445, 66.305);
  color: #fff;
}

.event-series__toggle-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.1);
}
.event-series__toggle-btn--active .event-series__toggle-count {
  background: rgba(255, 255, 255, 0.25);
}

.event-series__events {
  padding: 4rem 0 5rem;
  background: #f8f9fa;
  min-height: 50vh;
}

.event-series__section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #0b3d59;
  display: inline-block;
}

.event-series__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.event-series__card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border-left: 5px solid #0b3d59;
}
.event-series__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 20px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.event-series__card:hover .event-series__card-image img {
  transform: scale(1.05);
}
.event-series__card--past {
  border-left-color: #6b7280;
}
.event-series__card--past .event-series__card-image img {
  filter: grayscale(40%);
}
.event-series__card--past .event-series__card-date-overlay {
  background: #6b7280;
}

.event-series__card-image {
  position: relative;
  display: block;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b3d59 0%, #1a6985 100%);
}
.event-series__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-series__card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.4);
}

.event-series__card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-series__card-date-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  background: #0b3d59;
  color: #fff;
  text-align: center;
  min-width: 80px;
}

.event-series__card-day {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.event-series__card-month {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.event-series__card-body {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 3rem;
}

.event-series__card-types {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9a1b30;
  margin-bottom: 0.75rem;
}

.event-series__card-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  line-height: 1.25;
}
.event-series__card-title a {
  color: #0b3d59;
  text-decoration: none;
  transition: color 0.2s ease;
}
.event-series__card-title a:hover {
  color: #1a6985;
}

.event-series__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-series__card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #6b7280;
}
.event-series__card-meta-item svg {
  flex-shrink: 0;
  color: #0b3d59;
  opacity: 0.7;
}

.event-series__card-excerpt {
  font-size: 1.0625rem;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  flex-grow: 1;
}

.event-series__card-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.event-series__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.event-series__card-btn svg {
  transition: transform 0.25s ease;
}
.event-series__card-btn--primary {
  background: #0b3d59;
  color: #fff;
}
.event-series__card-btn--primary:hover {
  background: rgb(6.512, 36.112, 52.688);
  box-shadow: 0 6px 20px rgba(11, 61, 89, 0.35);
}
.event-series__card-btn--primary:hover svg {
  transform: translateX(4px);
}
.event-series__card-btn--secondary {
  background: transparent;
  color: #0b3d59;
  border: 2px solid #0b3d59;
}
.event-series__card-btn--secondary:hover {
  background: #0b3d59;
  color: #fff;
}

.event-series__empty {
  text-align: center;
  padding: 5rem 2rem;
  background: #fff;
}
.event-series__empty h2 {
  font-size: 1.75rem;
  color: #0b3d59;
  margin: 0 0 1rem;
}
.event-series__empty p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.event-series__empty .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: #0b3d59;
  border: 2px solid #0b3d59;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.event-series__empty .btn:hover {
  background: #0b3d59;
  color: #fff;
}

.event-series__cta {
  padding: 4rem 0;
  background: #0b3d59;
}

.event-series__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.event-series__cta-content {
  flex: 1;
  min-width: 280px;
}

.event-series__cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.event-series__cta-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 500px;
  line-height: 1.6;
}

.event-series__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2rem;
  background: #fff;
  color: #0b3d59;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.event-series__cta-btn svg {
  transition: transform 0.2s ease;
}
.event-series__cta-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.event-series__cta-btn:hover svg {
  transform: translateX(4px);
}

.event-series__subscribe {
  padding: 4rem 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.event-series__subscribe-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border: 2px solid #e5e7eb;
  border-left: 5px solid #c9a227;
}

.event-series__subscribe-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #c9a227;
  color: #fff;
  flex-shrink: 0;
}
.event-series__subscribe-icon svg {
  width: 36px;
  height: 36px;
}

.event-series__subscribe-content {
  flex: 1;
  min-width: 0;
}

.event-series__subscribe-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 0.5rem;
}

.event-series__subscribe-text {
  font-size: 1rem;
  color: #374151;
  margin: 0;
  line-height: 1.6;
  max-width: 550px;
}

.event-series__subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.75rem;
  background: #c9a227;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.event-series__subscribe-btn:hover {
  background: rgb(166.83, 134.46, 32.37);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .event-series__card {
    grid-template-columns: 350px 1fr;
  }
  .event-series__card-image {
    height: 280px;
  }
  .event-series__card-body {
    padding: 2rem 2.5rem;
  }
  .event-series__card-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 900px) {
  .event-series__card {
    grid-template-columns: 1fr;
  }
  .event-series__card-image {
    height: 260px;
  }
  .event-series__card-date-overlay {
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
  }
  .event-series__subscribe-inner {
    flex-wrap: wrap;
    padding: 2rem;
  }
  .event-series__subscribe-content {
    flex-basis: calc(100% - 100px);
  }
  .event-series__subscribe-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .event-series-page section {
    padding: var(--space-10) 0;
  }
  .event-series__hero {
    padding: 3rem 0;
  }
  .event-series__nav {
    padding: 1rem 0;
  }
  .event-series__toggle-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  .event-series__toggle-btn svg {
    display: none;
  }
  .event-series__events {
    padding: 2.5rem 0 3rem;
  }
  .event-series__section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .event-series__list {
    gap: 2rem;
  }
  .event-series__card-image {
    height: 220px;
  }
  .event-series__card-body {
    padding: 1.75rem;
  }
  .event-series__card-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }
  .event-series__card-meta {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .event-series__card-excerpt {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .event-series__card-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    width: 100%;
    justify-content: center;
  }
  .event-series__cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .event-series__cta-text {
    max-width: none;
  }
  .event-series__cta-btn {
    width: 100%;
    justify-content: center;
  }
  .event-series__subscribe-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .event-series__subscribe-text {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .event-series__card-image {
    height: 180px;
  }
  .event-series__card-date-overlay {
    padding: 1rem;
  }
  .event-series__card-day {
    font-size: 2rem;
  }
  .event-series__card-body {
    padding: 1.5rem;
  }
  .event-series__card-title {
    font-size: 1.25rem;
  }
  .event-series__subscribe-icon {
    width: 60px;
    height: 60px;
  }
  .event-series__subscribe-icon svg {
    width: 28px;
    height: 28px;
  }
}
/**
 * Event Page Fixes
 * 
 * CSS fixes and enhancements for event pages
 * These supplement the main style.css
 */
.event-page section {
  padding-left: 0;
  padding-right: 0;
}

.festival-overview {
  padding: 3rem 0 !important;
}

.festival-cta {
  padding: 4rem 0 !important;
}

.single-event-header .back-link {
  margin-bottom: 1rem;
  display: inline-block;
}

.event-sidebar {
  padding: 1.5rem;
}
.event-sidebar .ticket-card {
  margin-bottom: 1rem;
}

.event-content {
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .event-content {
    padding-right: 0;
  }
}

/**
 * Biography Page Styles
 * 
 * Styles for the Margaret Thatcher biography page
 * Inspired by the International Churchill Society design
 */
.biography-page {
  overflow-x: hidden;
}

.biography-hero {
  position: relative;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  color: var(--color-white);
  overflow: hidden;
}
.biography-hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-16) var(--container-padding);
  z-index: 2;
}
.biography-hero .breadcrumb {
  margin-bottom: var(--space-8);
}

.biography-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 165, 184, 0.1), transparent 50%);
  z-index: 1;
}

.biography-hero-content {
  max-width: 560px;
}

.biography-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-white);
  margin: 0 0 var(--space-4);
  line-height: 1.1;
}

.biography-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-style: italic;
  margin: 0 0 var(--space-8);
  line-height: 1.5;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--color-white);
  transition: all var(--transition-normal);
  animation: bounce 2s infinite;
}
.scroll-indicator:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.biography-hero-image {
  position: relative;
  overflow: hidden;
}
.biography-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.biography-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-navy) 0%, transparent 30%);
  z-index: 1;
}

.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  z-index: 2;
}
.hero-image-caption p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
}

.biography-intro {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-12);
}

.intro-sidebar .section-eyebrow {
  display: block;
  color: var(--color-teal);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.intro-sidebar h2 {
  font-size: var(--font-size-xl);
  color: var(--color-navy);
  margin: 0 0 var(--space-4);
}
.intro-sidebar h3 {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  font-weight: 400;
  margin: 0;
}

.intro-content .intro-quote h2 {
  font-size: var(--font-size-2xl);
  color: var(--color-navy);
  margin: 0 0 var(--space-6);
}
.intro-content .intro-quote blockquote {
  border-left: 4px solid var(--color-gold);
  padding-left: var(--space-6);
  margin: 0;
  font-style: normal;
}
.intro-content .intro-quote blockquote p {
  font-size: var(--font-size-md);
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.intro-content .intro-quote blockquote p:last-child {
  margin-bottom: 0;
}
.intro-content .intro-quote blockquote strong {
  color: var(--color-navy);
}
.intro-content .lifespan {
  margin-top: var(--space-8);
  font-size: var(--font-size-2xl);
  color: var(--color-teal);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.biography-timeline {
  padding: var(--space-16) 0;
  background: linear-gradient(180deg, #f8f9fa 0%, var(--color-white) 100%);
  position: relative;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-border);
  z-index: 0;
}
.timeline-marker span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-teal);
  border-radius: 50%;
}

.timeline-entry {
  position: relative;
  margin-bottom: var(--space-12);
  z-index: 1;
}
.timeline-entry::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border: 3px solid var(--color-teal);
  border-radius: 50%;
  z-index: 2;
}

.timeline-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.timeline-entry--right .timeline-image {
  order: 1;
}
.timeline-entry--right .timeline-text {
  order: 2;
  text-align: left;
  padding-left: var(--space-8);
}

.timeline-entry--left .timeline-image {
  order: 2;
}
.timeline-entry--left .timeline-text {
  order: 1;
  text-align: right;
  padding-right: var(--space-8);
}

.timeline-image img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.timeline-image .image-caption {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

.timeline-text .timeline-year {
  font-size: var(--font-size-xl);
  color: var(--color-teal);
  font-weight: 700;
  margin: 0 0 var(--space-3);
}
.timeline-text p {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

.timeline-legacy {
  margin-top: var(--space-16);
  padding-top: var(--space-16);
  border-top: 2px solid var(--color-border);
}
.timeline-legacy::before {
  display: none;
}
.timeline-legacy .timeline-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-8);
  gap: var(--space-8);
}
.timeline-legacy .timeline-image img {
  border-radius: var(--radius-md);
}
.timeline-legacy .timeline-text {
  text-align: left !important;
  padding: 0 !important;
}
.timeline-legacy .timeline-text h3 {
  font-size: var(--font-size-2xl);
  color: var(--color-navy);
  margin: 0 0 var(--space-4);
}
.timeline-legacy .timeline-text .legacy-content p {
  margin-bottom: var(--space-4);
}
.timeline-legacy .timeline-text .legacy-content p:last-child {
  margin-bottom: 0;
}
.timeline-legacy .timeline-text .legacy-content strong {
  color: var(--color-navy);
}

.biography-resources {
  padding: var(--space-16) 0;
  background: var(--color-gray-light);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.resource-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.resource-card:hover .resource-image img {
  transform: scale(1.05);
}
.resource-card .resource-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.resource-card .resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.resource-card h3 {
  padding: var(--space-4) var(--space-4) var(--space-2);
  margin: 0;
  font-size: var(--font-size-base);
}
.resource-card h3 a {
  color: var(--color-navy);
  text-decoration: none;
}
.resource-card h3 a:hover {
  color: var(--color-teal);
}
.resource-card h3 a .arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}
.resource-card h3 a:hover .arrow {
  transform: translateX(4px);
}
.resource-card p {
  padding: 0 var(--space-4);
  margin: 0 0 var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.resource-card .resource-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  margin: 0 var(--space-4) var(--space-4);
  background: var(--color-gray-light);
  color: var(--color-navy);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
.resource-card .resource-link:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.biography-social {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: center;
}

.social-cta {
  text-align: center;
}
.social-cta h2 {
  font-size: var(--font-size-2xl);
  color: var(--color-white);
  margin: 0 0 var(--space-2);
}
.social-cta h3 {
  font-size: var(--font-size-xl);
  color: var(--color-gold);
  font-weight: 400;
  margin: 0 0 var(--space-6);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.social-feed {
  min-height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

.biography-newsletter {
  padding: var(--space-16) 0;
  background: var(--color-teal);
  color: var(--color-white);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.newsletter-text h2 {
  font-size: var(--font-size-3xl);
  color: var(--color-white);
  margin: 0 0 var(--space-2);
}
.newsletter-text h3 {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin: 0 0 var(--space-4);
}
.newsletter-text p {
  font-size: var(--font-size-md);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.newsletter-form .newsletter-signup {
  display: flex;
  gap: var(--space-3);
  align-items: flex-end;
}
.newsletter-form .form-field {
  flex: 1;
}
.newsletter-form .form-field label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
}
.newsletter-form .form-field label .required {
  color: rgba(255, 255, 255, 0.6);
}
.newsletter-form .form-field input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: var(--font-size-base);
}
.newsletter-form .form-field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form .form-field input:focus {
  outline: none;
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
}
.newsletter-form .btn-primary {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-teal);
}
.newsletter-form .btn-primary:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}
.newsletter-form .privacy-link {
  display: block;
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-form .privacy-link:hover {
  color: var(--color-white);
}

.hero-image-placeholder,
.timeline-image-placeholder,
.resource-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  text-align: center;
  padding: var(--space-4);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(0, 165, 184, 0.3) 0%, rgba(34, 56, 114, 0.6) 50%, rgba(34, 56, 114, 0.8) 100%);
  color: transparent;
}
.hero-image-placeholder span {
  display: none;
}

.timeline-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-gray-light) 0%, #ddd 100%);
}

.timeline-image-placeholder--large {
  aspect-ratio: 3/4;
}

.resource-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .biography-hero {
    grid-template-columns: 1fr;
    min-height: 500px;
  }
  .biography-hero-image {
    position: absolute;
    inset: 0;
  }
  .biography-hero-image::before {
    background: linear-gradient(90deg, rgba(34, 56, 114, 0.9) 0%, rgba(34, 56, 114, 0.6) 100%);
  }
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-feed {
    display: none;
  }
  .newsletter-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .newsletter-text {
    margin-bottom: var(--space-4);
  }
}
@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .intro-sidebar {
    text-align: center;
  }
  .timeline-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .timeline-marker {
    left: 24px;
  }
  .timeline-entry::before {
    left: 24px;
    transform: translate(-50%, -50%);
  }
  .timeline-entry--right .timeline-image,
  .timeline-entry--right .timeline-text,
  .timeline-entry--left .timeline-image,
  .timeline-entry--left .timeline-text {
    order: unset;
    text-align: left !important;
    padding: 0 0 0 var(--space-10) !important;
  }
  .timeline-legacy .timeline-content {
    grid-template-columns: 1fr;
  }
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form .newsletter-signup {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .biography-title {
    font-size: 2rem;
  }
  .biography-subtitle {
    font-size: var(--font-size-base);
  }
  .intro-content .intro-quote blockquote {
    padding-left: var(--space-4);
  }
}
/**
 * Endorsements Page Styles
 * 
 * Design Philosophy: Elegant, regal, refined
 * - Asymmetrical hero with title block overlapping image
 * - Generous whitespace and breathing room
 * - Subtle, sophisticated colour palette
 * - Light touches over heavy elements
 * - Classic typography with generous line heights
 *
 * @package ThatcherCentre
 */
.endorsements-hero {
  padding: 0 0 var(--space-8);
  background: var(--color-white);
}

.endorsements-hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: start;
}
@media (max-width: 900px) {
  .endorsements-hero-grid {
    grid-template-columns: 1fr;
  }
}

.endorsements-hero-title-block {
  background: var(--color-navy);
  padding: var(--space-10) var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-10);
  position: relative;
  z-index: 2;
  margin-top: var(--space-8);
}
@media (max-width: 900px) {
  .endorsements-hero-title-block {
    margin-top: 0;
    padding: var(--space-6) var(--space-8);
    gap: var(--space-6);
  }
}

.endorsements-hero-title {
  color: var(--color-white);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-navy);
  background: transparent;
  border: none;
  transition: transform var(--transition-fast);
}
.scroll-indicator svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-white);
  opacity: 0.7;
}
.scroll-indicator:hover {
  transform: translateY(4px);
}
.scroll-indicator:hover svg {
  opacity: 1;
}

.endorsements-hero-image {
  position: relative;
}
@media (max-width: 900px) {
  .endorsements-hero-image {
    margin-top: 0;
  }
}
.endorsements-hero-image img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: cover;
}

.hero-image-caption {
  font-size: 0.9rem;
  font-style: italic;
  color: #666;
  margin: var(--space-4) 0 0;
  text-align: right;
  padding-right: var(--space-2);
}

.hero-image-placeholder {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}

.endorsements-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.endorsements-intro {
  padding: var(--space-16) 0 var(--space-12);
  background: var(--color-white);
  text-align: center;
}

.endorsements-intro .intro-text {
  font-size: 1.25rem;
  line-height: 2;
  color: #444;
  max-width: 800px;
  margin: 0 auto var(--space-8);
  font-weight: 300;
}

.endorsements-intro .intro-secondary {
  font-size: 1.05rem;
  color: #777;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.9;
}

.featured-endorsement {
  padding: var(--space-20) 0;
  background: #f8f9fa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.featured-endorsement-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.featured-photo {
  margin-bottom: var(--space-10);
}
.featured-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #ddd;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.featured-content {
  position: relative;
}

.featured-content .quote-icon {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  opacity: 0.4;
  margin-bottom: var(--space-6);
}

.featured-quote {
  font-size: 1.35rem;
  font-style: italic;
  color: #333;
  line-height: 2;
  margin: 0 0 var(--space-10);
  font-weight: 300;
}
.featured-quote::before, .featured-quote::after {
  content: none;
}

.featured-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.featured-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  font-style: normal;
  letter-spacing: 0.02em;
}

.featured-title {
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.05em;
}

.featured-context {
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: var(--space-2);
}

.endorsers-section {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.endorsers-category {
  margin-bottom: var(--space-20);
}
.endorsers-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  margin: 0 0 var(--space-12);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.endorsers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-16) var(--space-6);
}
@media (max-width: 1000px) {
  .endorsers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .endorsers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-12) var(--space-6);
  }
}
@media (max-width: 500px) {
  .endorsers-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10) var(--space-4);
  }
}

.endorser-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  background: transparent;
}
.endorser-card:hover .endorser-photo img {
  transform: scale(1.02);
}
.endorser-card:hover .endorser-name {
  color: var(--color-navy);
}
.endorser-card.has-quote {
  grid-column: span 2;
  background: #f8f9fa;
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  text-align: left;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 768px) {
  .endorser-card.has-quote {
    grid-column: span 2;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .endorser-card.has-quote {
    grid-column: span 2;
  }
}
.endorser-card.has-quote .endorser-photo {
  width: 80px;
  height: 80px;
  margin: 0;
}
@media (max-width: 768px) {
  .endorser-card.has-quote .endorser-photo {
    margin: 0 auto var(--space-4);
  }
}
@media (max-width: 768px) {
  .endorser-card.has-quote .endorser-info {
    margin-bottom: var(--space-4);
  }
}
.endorser-card.has-quote .endorser-quote {
  grid-column: 1/-1;
  margin-top: var(--space-4);
}
@media (max-width: 768px) {
  .endorser-card.has-quote .endorser-quote {
    margin-top: 0;
  }
}

.endorser-photo {
  width: 80px;
  height: 80px;
  margin: 0 0 var(--space-4);
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}
.endorser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.endorser-photo.endorser-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
}
.endorser-photo.endorser-photo-placeholder svg {
  width: 32px;
  height: 32px;
  color: #bbb;
}

.endorser-info {
  width: 100%;
}

.endorser-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 var(--space-2);
  transition: color var(--transition-fast);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.endorser-title {
  font-size: 0.7rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

.endorser-quote {
  margin: var(--space-5) 0 0;
  padding: 0;
  background: transparent;
  border-left: 2px solid var(--color-gold);
  padding-left: var(--space-4);
}
.endorser-quote p {
  margin: 0;
  font-size: 0.85rem;
  font-style: italic;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .endorsements-hero-content {
    padding: var(--space-12) var(--space-4);
  }
  .endorsements-intro {
    padding: var(--space-12) 0;
  }
  .endorsements-intro .intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
  }
  .endorsers-section {
    padding: var(--space-12) 0;
  }
  .endorsers-category {
    margin-bottom: var(--space-12);
  }
  .category-title {
    margin-bottom: var(--space-8);
  }
  .featured-endorsement {
    padding: var(--space-12) 0;
  }
  .featured-photo img {
    width: 120px;
    height: 120px;
  }
  .featured-quote {
    font-size: 1.15rem;
  }
  .endorser-card.has-quote {
    grid-column: span 1;
    display: block;
    text-align: center;
  }
  .endorser-card.has-quote .endorser-photo {
    margin: 0 auto var(--space-4);
  }
}
.page-template-page-about .about-mission,
.page-template-page-about .about-leadership,
.page-template-page-about .about-partners,
.page-template-page-about .about-endorsement,
.page-template-page-about .about-pioneers,
.page-template-page-about .about-history,
.page-template-page-about .about-activities,
.page-template-page-about .about-quicklinks {
  padding: var(--space-20) 0;
}
.page-template-page-about .section-header {
  max-width: 920px;
  margin: 0 auto var(--space-10);
  text-align: left;
}
.page-template-page-about .section-label,
.page-template-page-about .mission-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.page-template-page-about .section-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: 0.02em;
  margin: var(--space-3) 0 0;
}
.page-template-page-about .about-hero {
  padding: var(--space-20) 0;
  text-align: center;
}
.page-template-page-about .about-hero-title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.05em;
}
.page-template-page-about .about-mission {
  position: relative;
}
.page-template-page-about .about-mission .mission-watermark {
  position: absolute;
  top: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: 0.22em;
  color: rgba(0, 0, 0, 0.04);
  font-weight: 600;
  pointer-events: none;
  text-transform: uppercase;
}
.page-template-page-about .about-mission .mission-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-areas: "label image" "title image" "text image" "button image";
  gap: var(--space-6) var(--space-12);
  align-items: start;
}
.page-template-page-about .about-mission .mission-label {
  grid-area: label;
}
.page-template-page-about .about-mission .mission-title {
  grid-area: title;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  margin: 0;
}
.page-template-page-about .about-mission .mission-text {
  grid-area: text;
}
.page-template-page-about .about-mission .mission-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.page-template-page-about .about-mission .mission-image {
  grid-area: image;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.page-template-page-about .about-mission .mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-template-page-about .about-mission .btn-primary {
  grid-area: button;
  display: inline-block;
  background-color: var(--color-navy);
  color: #fff;
  padding: var(--space-4) var(--space-10);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  border: 1px solid var(--color-navy);
  border-radius: 0;
  transition: all var(--transition-fast);
}
.page-template-page-about .about-mission .btn-primary:hover {
  background-color: transparent;
  color: var(--color-navy);
}
@media (max-width: 900px) {
  .page-template-page-about .about-mission .mission-content {
    grid-template-columns: 1fr;
    grid-template-areas: "label" "title" "image" "text" "button";
  }
  .page-template-page-about .about-mission .mission-watermark {
    top: var(--space-4);
  }
}
.page-template-page-about .about-leadership .leadership-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-12);
  align-items: stretch;
}
.page-template-page-about .about-leadership .leadership-image {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}
.page-template-page-about .about-leadership .leadership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-template-page-about .about-leadership .leadership-content {
  background-color: var(--color-white);
  padding: var(--space-10);
  border-radius: 0;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.page-template-page-about .about-leadership .leadership-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 var(--space-6);
}
.page-template-page-about .about-leadership .leadership-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.page-template-page-about .about-leadership .leadership-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-fast);
}
.page-template-page-about .about-leadership .leadership-links a:hover {
  color: var(--color-navy);
}
.page-template-page-about .about-leadership .leadership-links a .arrow {
  color: var(--color-gold);
  transition: transform var(--transition-fast);
}
.page-template-page-about .about-leadership .leadership-links a:hover .arrow {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .page-template-page-about .about-leadership .leadership-grid {
    grid-template-columns: 1fr;
  }
}
.page-template-page-about .about-partners {
  background: #f7f7f7;
}
.page-template-page-about .partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
}
.page-template-page-about .partner-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: var(--space-6);
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.page-template-page-about .partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.page-template-page-about .partner-image {
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.page-template-page-about .partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-template-page-about .about-endorsement {
  background: #fff;
}
.page-template-page-about .endorsement-quote {
  border-left: 3px solid var(--color-gold);
  padding: var(--space-8) var(--space-12);
  margin: 0 auto;
  max-width: 860px;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
}
.page-template-page-about .about-pioneers {
  background-color: var(--color-navy);
  color: #fff;
}
.page-template-page-about .pioneers-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-12);
  align-items: start;
}
.page-template-page-about .pioneers-info h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 var(--space-5);
}
.page-template-page-about .pioneers-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
}
.page-template-page-about .pioneers-map {
  background-color: rgba(255, 255, 255, 0.06);
  padding: var(--space-10);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.page-template-page-about .pioneers-map h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.page-template-page-about .pioneers-regions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.page-template-page-about .pioneers-regions a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: color var(--transition-fast);
}
.page-template-page-about .pioneers-regions a:hover {
  color: var(--color-gold);
}
.page-template-page-about .pioneers-regions a .arrow {
  color: var(--color-gold);
  transition: transform var(--transition-fast);
}
.page-template-page-about .pioneers-regions a:hover .arrow {
  transform: translateX(4px);
}
.page-template-page-about .btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  padding: var(--space-4) var(--space-10);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;
  transition: all var(--transition-fast);
}
.page-template-page-about .btn-outline:hover {
  background-color: #fff;
  color: var(--color-navy);
  border-color: #fff;
}
.page-template-page-about .about-history {
  background: #f7f7f7;
}
.page-template-page-about .history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-8);
}
.page-template-page-about .history-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: var(--space-6);
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.page-template-page-about .history-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.page-template-page-about .history-image {
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.page-template-page-about .history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-template-page-about .about-activities {
  background: #fff;
}
.page-template-page-about .activities-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-12);
}
.page-template-page-about .activities-info,
.page-template-page-about .activities-events {
  border: 1px solid var(--color-border);
  padding: var(--space-10);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.page-template-page-about .btn-accent,
.page-template-page-about .btn-outline-light {
  border-radius: 0;
}
.page-template-page-about .about-quicklinks {
  background: #f7f7f7;
}
.page-template-page-about .quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-8);
}
.page-template-page-about .quicklink-card {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.page-template-page-about .quicklink-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.page-template-page-about .quicklink-image {
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.page-template-page-about .quicklink-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-template-page-about .quicklink-content {
  padding: var(--space-7);
  display: grid;
  gap: var(--space-4);
}
.page-template-page-about .quicklink-content h3 {
  margin: 0;
  letter-spacing: 0.02em;
}
.page-template-page-about .quicklink-cta {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
@media (max-width: 900px) {
  .page-template-page-about .pioneers-content,
  .page-template-page-about .activities-grid {
    grid-template-columns: 1fr;
  }
}
.page-template-page-about .about-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  overflow: hidden;
  padding: var(--space-20) 0 var(--space-16);
}
.page-template-page-about .about-hero .container {
  position: relative;
  z-index: 2;
}
.page-template-page-about .about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 56, 114, 0.25) 0%, rgba(34, 56, 114, 0.65) 100%);
  z-index: 1;
}
.page-template-page-about .about-hero-title {
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin: 0;
}

/**
 * Board of Governors Page Styles
 * 
 * Inspired by Winston Churchill Society Board of Directors page.
 * Uses the Hero Manager system for hero section.
 * Features card-based layout with photos, bios, and social links.
 *
 * @package ThatcherCentre
 */
.governors-page {
  background: var(--color-white);
}

.governors-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
@media (max-width: 768px) {
  .governors-container {
    padding: 0 var(--space-4);
  }
}

.governors-hero {
  position: relative;
  padding: var(--space-16) 0;
  background: var(--color-navy);
  min-height: 200px;
}

.governors-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.governors-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.governors-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.governors-hero-title {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.governors-intro {
  padding: var(--space-12) 0 var(--space-8);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.governors-intro p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

.governors-content {
  padding: var(--space-12) 0 var(--space-20);
}

.governors-profiles {
  max-width: 900px;
  margin: 0 auto;
}

.governor-card {
  padding: var(--space-8) 0;
}

.governor-card-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 768px) {
  .governor-card-inner {
    grid-template-columns: 150px 1fr;
    gap: var(--space-6);
  }
}
@media (max-width: 600px) {
  .governor-card-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.governor-photo {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f5f5f5;
}
@media (max-width: 600px) {
  .governor-photo {
    width: 160px;
    height: auto;
    aspect-ratio: 2/3;
    margin: 0 auto var(--space-4);
  }
}
.governor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.governor-photo:hover img {
  transform: scale(1.03);
}
.governor-photo.governor-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
}
.governor-photo.governor-photo-placeholder svg {
  width: 60px;
  height: 60px;
  color: #bbb;
}

.governor-linkedin {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  background: #0077b5;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.governor-linkedin svg {
  width: 20px;
  height: 20px;
}
.governor-linkedin:hover {
  background: #005582;
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .governor-info {
    text-align: center;
  }
}

.governor-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 var(--space-2);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .governor-name {
    font-size: 1.3rem;
  }
}

.governor-title {
  font-size: 0.95rem;
  color: var(--color-teal);
  margin: 0 0 var(--space-4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.governor-bio {
  margin-bottom: var(--space-5);
}
.governor-bio p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 var(--space-4);
}
.governor-bio p:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .governor-bio {
    text-align: left;
  }
}

.governor-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
@media (max-width: 600px) {
  .governor-social {
    justify-content: center;
  }
}

.social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #666;
  background: #f5f5f5;
  transition: all var(--transition-fast);
}
.social-link svg {
  width: 16px;
  height: 16px;
}
.social-link:hover {
  transform: translateY(-2px);
}
.social-link.social-twitter:hover {
  background: #1da1f2;
  color: var(--color-white);
}
.social-link.social-facebook:hover {
  background: #1877f2;
  color: var(--color-white);
}
.social-link.social-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white);
}
.social-link.social-website:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.governor-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0;
}

.governors-cta {
  padding: var(--space-16) 0;
  background: var(--color-navy);
  text-align: center;
}
.governors-cta h2 {
  color: var(--color-white);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 var(--space-4);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.governors-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}
.governors-cta .cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.governors-cta .cta-buttons .btn {
  min-width: 180px;
}

@media (max-width: 480px) {
  .governors-content {
    padding: var(--space-8) 0 var(--space-12);
  }
  .governors-intro {
    padding: var(--space-8) 0 var(--space-6);
  }
  .governors-intro p {
    font-size: 1rem;
  }
  .governor-card {
    padding: var(--space-6) 0;
  }
  .governor-name {
    font-size: 1.2rem;
  }
  .governor-title {
    font-size: 0.85rem;
  }
  .governor-bio p {
    font-size: 0.9rem;
  }
  .governors-cta {
    padding: var(--space-10) 0;
  }
  .governors-cta h2 {
    font-size: 1.3rem;
  }
  .governors-cta p {
    font-size: 0.95rem;
    padding: 0 var(--space-4);
  }
  .governors-cta .cta-buttons .btn {
    min-width: 150px;
    width: 100%;
    max-width: 280px;
  }
}
/**
 * Council of Parliamentarians Page Styles
 *
 * Styles for the Council of Parliamentarians page template.
 * Uses shared patterns from the governors page with political adaptations.
 *
 * @package ThatcherCentre
 */
.parliamentarians-page {
  background: #fff;
}

.parliamentarians-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .parliamentarians-container {
    padding: 0 40px;
  }
}

.parliamentarians-content {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .parliamentarians-content {
    padding: 80px 0;
  }
}

.parliamentarians-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}
.parliamentarians-intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
}

.parliamentarians-profiles {
  max-width: 900px;
  margin: 0 auto;
}

.parliamentarian-card {
  margin-bottom: 0;
}

.parliamentarian-card-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .parliamentarian-card-inner {
    flex-direction: row;
    gap: 40px;
  }
}

.parliamentarian-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}

.parliamentarian-photo {
  position: relative;
  flex-shrink: 0;
  width: 180px;
  height: 220px;
  margin: 0 auto;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .parliamentarian-photo {
    width: 200px;
    height: 250px;
    margin: 0;
  }
}
.parliamentarian-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parliamentarian-photo.parliamentarian-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.parliamentarian-photo.parliamentarian-photo-placeholder svg {
  width: 60px;
  height: 60px;
  color: #ccc;
}
.parliamentarian-photo .parliamentarian-linkedin {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #0077b5;
  border-radius: 4px;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.parliamentarian-photo .parliamentarian-linkedin svg {
  width: 20px;
  height: 20px;
}
.parliamentarian-photo .parliamentarian-linkedin:hover {
  background: #005f93;
}
.parliamentarian-photo:hover .parliamentarian-linkedin {
  opacity: 1;
  transform: translateY(0);
}

.parliamentarian-info {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .parliamentarian-info {
    text-align: left;
  }
}

.parliamentarian-name {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0b3d59;
}

.parliamentarian-title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 500;
  color: #9a1b30;
}

.parliamentarian-party {
  margin: 0 0 16px;
  font-size: 0.9rem;
  font-style: italic;
  color: #666;
}

.parliamentarian-bio {
  margin-bottom: 20px;
}
.parliamentarian-bio p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}
.parliamentarian-bio p:last-child {
  margin-bottom: 0;
}

.parliamentarian-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .parliamentarian-social {
    justify-content: flex-start;
  }
}
.parliamentarian-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.parliamentarian-social .social-link svg {
  width: 16px;
  height: 16px;
}
.parliamentarian-social .social-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.parliamentarian-social .social-link.social-twitter {
  background: #1da1f2;
}
.parliamentarian-social .social-link.social-facebook {
  background: #1877f2;
}
.parliamentarian-social .social-link.social-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.parliamentarian-social .social-link.social-website {
  background: #0b3d59;
}

.parliamentarians-cta {
  padding: 60px 0;
  text-align: center;
  background: #f5f5f5;
}
.parliamentarians-cta h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  color: #0b3d59;
}
.parliamentarians-cta p {
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  color: #333;
}
.parliamentarians-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.parliamentarians-cta .btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.parliamentarians-cta .btn.btn-primary {
  background: #9a1b30;
  color: #fff;
}
.parliamentarians-cta .btn.btn-primary:hover {
  background: rgb(110.6077348066, 19.3922651934, 34.4751381215);
}
.parliamentarians-cta .btn.btn-secondary {
  background: transparent;
  border: 2px solid #0b3d59;
  color: #0b3d59;
}
.parliamentarians-cta .btn.btn-secondary:hover {
  background: #0b3d59;
  color: #fff;
}

.parliamentarians-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b3d59;
}
.parliamentarians-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.parliamentarians-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}
.parliamentarians-hero-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .parliamentarians-hero-title {
    font-size: 3rem;
  }
}

/**
 * Partners Page Styles
 *
 * Styles for the Partners page template displaying
 * partner organisations with logos and descriptions.
 *
 * @package ThatcherCentre
 */
.partners-page {
  background: #fff;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .partners-container {
    padding: 0 40px;
  }
}

.partners-content {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .partners-content {
    padding: 80px 0;
  }
}

.partners-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}
.partners-intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}
.partners-intro p:last-child {
  margin-bottom: 0;
}

.partners-grid {
  display: grid;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (min-width: 768px) {
  .partner-card {
    flex-direction: row;
    gap: 40px;
  }
}
.partner-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .partner-logo {
    width: 200px;
    margin: 0;
  }
}
.partner-logo a {
  display: block;
  transition: opacity 0.2s ease;
}
.partner-logo a:hover {
  opacity: 0.8;
}
.partner-logo img {
  display: block;
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
}

.partner-info {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .partner-info {
    text-align: left;
  }
}

.partner-name {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0b3d59;
}
.partner-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.partner-name a:hover {
  color: #9a1b30;
}

.partner-tagline {
  margin: 0 0 16px;
  font-size: 1rem;
  font-style: italic;
  color: #666;
}

.partner-description {
  margin-bottom: 20px;
}
.partner-description p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}
.partner-description p:last-child {
  margin-bottom: 0;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #9a1b30;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.partner-link svg {
  transition: transform 0.2s ease;
}
.partner-link:hover {
  gap: 10px;
}
.partner-link:hover svg {
  transform: translate(2px, -2px);
}

.partners-cta {
  padding: 60px 0;
  text-align: center;
  background: #f5f5f5;
}
.partners-cta h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  color: #0b3d59;
}
.partners-cta > .partners-container > p {
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  color: #333;
}
.partners-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.partners-cta .btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.partners-cta .btn.btn-primary {
  background: #9a1b30;
  color: #fff;
}
.partners-cta .btn.btn-primary:hover {
  background: rgb(110.6077348066, 19.3922651934, 34.4751381215);
}
.partners-cta .btn.btn-secondary {
  background: transparent;
  border: 2px solid #0b3d59;
  color: #0b3d59;
}
.partners-cta .btn.btn-secondary:hover {
  background: #0b3d59;
  color: #fff;
}

.partners-cta .contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .partners-cta .contact-form-wrapper {
    padding: 40px;
  }
}
.partners-cta .contact-form-title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b3d59;
  text-align: center;
}
.partners-cta .contact-form-description {
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: #666;
  text-align: center;
}
.partners-cta .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.partners-cta .contact-messages {
  min-height: 0;
}
.partners-cta .contact-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9375rem;
}
.partners-cta .contact-message svg {
  flex-shrink: 0;
}
.partners-cta .contact-message--success {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.partners-cta .contact-message--error {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.partners-cta .form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 600px) {
  .partners-cta .form-row--two-col {
    grid-template-columns: 1fr 1fr;
  }
}
.partners-cta .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.partners-cta .form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
}
.partners-cta .form-label .required {
  color: #dc2626;
}
.partners-cta .form-label .optional {
  font-weight: 400;
  color: #888;
}
.partners-cta input[type=text],
.partners-cta input[type=email],
.partners-cta input[type=tel],
.partners-cta input[type=date],
.partners-cta select,
.partners-cta textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.partners-cta input[type=text]:focus,
.partners-cta input[type=email]:focus,
.partners-cta input[type=tel]:focus,
.partners-cta input[type=date]:focus,
.partners-cta select:focus,
.partners-cta textarea:focus {
  outline: none;
  border-color: #9a1b30;
  box-shadow: 0 0 0 3px rgba(154, 27, 48, 0.15);
}
.partners-cta input[type=text]::placeholder,
.partners-cta input[type=email]::placeholder,
.partners-cta input[type=tel]::placeholder,
.partners-cta input[type=date]::placeholder,
.partners-cta select::placeholder,
.partners-cta textarea::placeholder {
  color: #a0aec0;
}
.partners-cta textarea {
  resize: vertical;
}
.partners-cta select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.partners-cta .form-field--checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.partners-cta .form-field--checkbox .checkbox-label input[type=checkbox] {
  width: auto;
  margin-top: 0.25rem;
  accent-color: #9a1b30;
}
.partners-cta .form-field--checkbox .checkbox-label .checkbox-text {
  font-size: 0.875rem;
  color: #666;
}
.partners-cta .form-field--submit {
  margin-top: 0.5rem;
}
.partners-cta .form-field--submit .btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #9a1b30;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.partners-cta .form-field--submit .btn-submit:hover:not(:disabled) {
  background: rgb(110.6077348066, 19.3922651934, 34.4751381215);
  transform: translateY(-1px);
}
.partners-cta .form-field--submit .btn-submit:disabled, .partners-cta .form-field--submit .btn-submit.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
}
.partners-cta .form-field--submit .btn-submit .btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.partners-cta .form-field--submit .btn-submit .btn-loading:not([hidden]) {
  display: flex;
}
.partners-cta .form-field--submit .btn-submit .spinner {
  animation: spin 0.8s linear infinite;
}
.partners-cta .form-notice {
  margin: 0;
  font-size: 0.8125rem;
  color: #888;
  text-align: center;
}
.partners-cta .form-notice a {
  color: #9a1b30;
  text-decoration: underline;
}
.partners-cta .form-notice a:hover {
  text-decoration: none;
}
.partners-cta .conditional-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.partners-cta .conditional-field {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.partners-cta .field-error {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #dc2626;
}
.partners-cta .has-error input,
.partners-cta .has-error select,
.partners-cta .has-error textarea {
  border-color: #dc2626;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.partners-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b3d59;
}
.partners-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.partners-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}
.partners-hero-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .partners-hero-title {
    font-size: 3rem;
  }
}

/**
 * Pioneers Page Styles
 *
 * Styles for the Pioneers listing page - early supporters of the
 * Margaret Thatcher Centre displayed in a clean grid layout.
 *
 * @package ThatcherCentre
 */
.pioneers-page {
  background: #fff;
}
.pioneers-page .pioneers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pioneers-page .pioneers-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy, #0b3d59);
  color: #fff;
  text-align: center;
}
.pioneers-page .pioneers-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}
.pioneers-page .pioneers-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}
.pioneers-page .pioneers-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.pioneers-page .pioneers-content {
  padding: var(--space-12, 60px) 0;
  background: #fff;
}
.pioneers-page .pioneers-intro {
  max-width: 800px;
  margin: 0 auto var(--space-10, 50px);
  text-align: center;
  padding: 0 20px;
}
.pioneers-page .pioneers-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
  text-align: center;
}
.pioneers-page .pioneers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6, 24px);
  justify-items: center;
}
.pioneers-page .pioneer-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  padding: var(--space-6, 24px) var(--space-5, 20px);
  width: 100%;
  max-width: 300px;
}
.pioneers-page .pioneer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.pioneers-page .pioneer-photo {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-4, 16px);
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
}
.pioneers-page .pioneer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pioneers-page .pioneer-photo svg {
  width: 40%;
  height: 40%;
  color: #bbb;
}
.pioneers-page .pioneer-photo-placeholder {
  background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
}
.pioneers-page .pioneer-info {
  padding: 0;
}
.pioneers-page .pioneer-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy, #0b3d59);
  margin: 0 0 4px;
  line-height: 1.3;
}
.pioneers-page .pioneer-location {
  font-size: 0.85rem;
  color: #888;
  margin: 0 0 10px;
  font-style: italic;
}
.pioneers-page .pioneer-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
.pioneers-page .pioneers-empty {
  text-align: center;
  padding: var(--space-12, 60px) 20px;
  background: #f8f9fa;
  border-radius: 8px;
}
.pioneers-page .pioneers-empty p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}
.pioneers-page .pioneers-cta {
  background: var(--color-navy, #0b3d59);
  padding: var(--space-16, 80px) 0;
  text-align: center;
}
.pioneers-page .pioneers-cta h2 {
  color: #fff !important;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 var(--space-4, 16px);
}
.pioneers-page .pioneers-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto var(--space-8, 32px);
  padding: 0 20px;
}
.pioneers-page .pioneers-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4, 16px);
  flex-wrap: wrap;
}
.pioneers-page .pioneers-cta .cta-buttons .btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  min-width: 180px;
}
.pioneers-page .pioneers-cta .cta-buttons .btn-primary {
  background: var(--color-burgundy, #9a1b30);
  color: #fff;
  border: 2px solid var(--color-burgundy, #9a1b30);
}
.pioneers-page .pioneers-cta .cta-buttons .btn-primary:hover {
  background: #7d1627;
  border-color: #7d1627;
}
.pioneers-page .pioneers-cta .cta-buttons .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.pioneers-page .pioneers-cta .cta-buttons .btn-secondary:hover {
  background: #fff;
  color: var(--color-navy, #0b3d59);
}
@media (max-width: 768px) {
  .pioneers-page .pioneers-hero-title {
    font-size: 2rem;
  }
  .pioneers-page .pioneers-content {
    padding: var(--space-8, 40px) 0;
  }
  .pioneers-page .pioneers-intro p {
    font-size: 1rem;
  }
  .pioneers-page .pioneers-grid {
    gap: var(--space-5, 20px);
  }
  .pioneers-page .pioneers-cta {
    padding: var(--space-10, 50px) 0;
  }
  .pioneers-page .pioneers-cta h2 {
    font-size: 1.5rem;
  }
  .pioneers-page .pioneers-cta p {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .pioneers-page .pioneers-grid {
    grid-template-columns: 1fr;
  }
  .pioneers-page .pioneer-card {
    max-width: 100%;
  }
  .pioneers-page .pioneers-cta .cta-buttons {
    flex-direction: column;
    padding: 0 20px;
  }
  .pioneers-page .pioneers-cta .cta-buttons .btn {
    width: 100%;
  }
}

/**
 * Leadership Page Styles
 * 
 * Displays the leadership team with photos, bios, and social links.
 * Inspired by the Winston Churchill Society Board of Directors page.
 * Uses the Hero Manager system for hero section.
 *
 * @package ThatcherCentre
 */
.leadership-page {
  background: var(--color-white);
}

.leadership-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
@media (max-width: 768px) {
  .leadership-container {
    padding: 0 var(--space-4);
  }
}

.leadership-hero {
  position: relative;
  padding: var(--space-16) 0;
  background: var(--color-navy);
  min-height: 200px;
}

.leadership-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.leadership-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.leadership-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.leadership-hero-title {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.leadership-hero-share {
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}
.leadership-hero-share .share-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.leadership-hero-share .share-icons {
  display: flex;
  gap: var(--space-3);
}
.leadership-hero-share .share-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: all var(--transition-fast);
}
.leadership-hero-share .share-icon svg {
  width: 16px;
  height: 16px;
}
.leadership-hero-share .share-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.leadership-intro {
  padding: var(--space-12) 0 var(--space-8);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.leadership-intro p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

.leadership-content {
  padding: var(--space-12) 0 var(--space-20);
}

.leadership-profiles {
  max-width: 900px;
  margin: 0 auto;
}

.leader-card {
  padding: var(--space-8) 0;
}

.leader-card-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 768px) {
  .leader-card-inner {
    grid-template-columns: 150px 1fr;
    gap: var(--space-6);
  }
}
@media (max-width: 600px) {
  .leader-card-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.leader-photo {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f5f5f5;
}
@media (max-width: 600px) {
  .leader-photo {
    width: 160px;
    height: auto;
    aspect-ratio: 2/3;
    margin: 0 auto var(--space-4);
  }
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.leader-photo:hover img {
  transform: scale(1.03);
}
.leader-photo.leader-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
}
.leader-photo.leader-photo-placeholder svg {
  width: 60px;
  height: 60px;
  color: #bbb;
}

.leader-linkedin {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  background: #0077b5;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.leader-linkedin svg {
  width: 20px;
  height: 20px;
}
.leader-linkedin:hover {
  background: #005582;
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .leader-info {
    text-align: center;
  }
}

.leader-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 var(--space-2);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .leader-name {
    font-size: 1.3rem;
  }
}

.leader-title {
  font-size: 0.95rem;
  color: var(--color-teal);
  margin: 0 0 var(--space-4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.leader-bio {
  margin-bottom: var(--space-5);
}
.leader-bio p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 var(--space-4);
}
.leader-bio p:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .leader-bio {
    text-align: left;
  }
}

.leader-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
@media (max-width: 600px) {
  .leader-social {
    justify-content: center;
  }
}

.social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #666;
  background: #f5f5f5;
  transition: all var(--transition-fast);
}
.social-link svg {
  width: 16px;
  height: 16px;
}
.social-link:hover {
  transform: translateY(-2px);
}
.social-link.social-twitter:hover {
  background: #1da1f2;
  color: var(--color-white);
}
.social-link.social-facebook:hover {
  background: #1877f2;
  color: var(--color-white);
}
.social-link.social-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white);
}
.social-link.social-website:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.leader-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0;
}

.leadership-cta {
  padding: var(--space-16) 0;
  background: var(--color-navy);
  text-align: center;
}
.leadership-cta h2 {
  color: var(--color-white);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 var(--space-4);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.leadership-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}
.leadership-cta .btn {
  min-width: 200px;
}

@media (max-width: 480px) {
  .leadership-content {
    padding: var(--space-8) 0 var(--space-12);
  }
  .leadership-intro {
    padding: var(--space-8) 0 var(--space-6);
  }
  .leadership-intro p {
    font-size: 1rem;
  }
  .leader-card {
    padding: var(--space-6) 0;
  }
  .leader-name {
    font-size: 1.2rem;
  }
  .leader-title {
    font-size: 0.85rem;
  }
  .leader-bio p {
    font-size: 0.9rem;
  }
  .leadership-cta {
    padding: var(--space-10) 0;
  }
  .leadership-cta h2 {
    font-size: 1.3rem;
  }
  .leadership-cta p {
    font-size: 0.95rem;
    padding: 0 var(--space-4);
  }
  .leadership-cta .btn {
    min-width: 150px;
    width: 100%;
    max-width: 280px;
  }
  .leadership-hero-share {
    flex-direction: column;
    gap: var(--space-3);
  }
  .leadership-hero-share .share-icons {
    gap: var(--space-2);
  }
}
/**
 * Resources Page Styles
 *
 * Hub page for the Resources section with cards linking to
 * sub-pages like Margaret Thatcher biography, speeches, publications, etc.
 *
 * @package ThatcherCentre
 */
.resources-page {
  background: #fff;
}

.resources-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b3d59;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 80px 20px;
}

.resources-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 89, 0.85);
}

.resources-hero .container {
  position: relative;
  z-index: 2;
}

.resources-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.resources-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 600px;
  margin-inline: auto;
}

.resources-intro {
  padding: 80px 0 60px;
  text-align: center;
}

.resources-intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.resources-intro .section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9a1b30;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.resources-intro .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 1.5rem;
  letter-spacing: 0.02em;
}

.resources-intro .section-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.resources-primary,
.resources-secondary {
  padding: 40px 0;
}

.resources-grid {
  display: grid;
  gap: 24px;
}

.resources-grid--primary {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
@media (min-width: 992px) {
  .resources-grid--primary {
    grid-template-columns: repeat(3, 1fr);
  }
}

.resources-grid--secondary {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (min-width: 768px) {
  .resources-grid--secondary {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .resources-grid--secondary {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .resources-grid--secondary {
    grid-template-columns: repeat(4, 1fr);
  }
}

.resource-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.resource-card:hover .resource-card-image img {
  transform: scale(1.05);
}
.resource-card:hover .resource-card-overlay {
  opacity: 0.4;
}
.resource-card:hover .resource-card-cta .arrow {
  transform: translateX(4px);
}
.resource-card:focus-visible {
  outline: 3px solid #9a1b30;
  outline-offset: 2px;
}

.resource-card--large .resource-card-image {
  height: 240px;
}
@media (min-width: 768px) {
  .resource-card--large .resource-card-image {
    height: 280px;
  }
}
.resource-card--large .resource-card-title {
  font-size: 1.5rem;
}

.resource-card--medium .resource-card-image {
  height: 180px;
}
@media (min-width: 768px) {
  .resource-card--medium .resource-card-image {
    height: 200px;
  }
}
.resource-card--medium .resource-card-title {
  font-size: 1.25rem;
}
.resource-card--medium .resource-card-description {
  font-size: 0.9rem;
  -webkit-line-clamp: 2;
}

.resource-card-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b3d59 0%, rgb(5.39, 29.89, 43.61) 100%);
}
.resource-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.resource-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b3d59 0%, rgb(5.39, 29.89, 43.61) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-card-placeholder::after {
  content: "";
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.resource-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.resource-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.resource-card-title {
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.resource-card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resource-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #9a1b30;
  margin-top: auto;
}
.resource-card-cta .arrow {
  transition: transform 0.2s ease;
}

.resources-quote {
  padding: 80px 0;
  background: #f8f9fa;
}

.featured-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.featured-quote p {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  color: #0b3d59;
  margin: 0 0 1.5rem;
  position: relative;
}
.featured-quote p::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(154, 27, 48, 0.3);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.featured-quote cite {
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  display: block;
}

.resources-store {
  padding: 80px 0;
  background: #1a1a2e;
}

.store-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .store-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.store-content {
  text-align: center;
}
@media (min-width: 768px) {
  .store-content {
    text-align: left;
  }
}

.store-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

.store-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
}

.store-content .btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.store-content .btn-primary {
  background: #9a1b30;
  color: #fff;
}
.store-content .btn-primary:hover {
  background: rgb(119.2861878453, 20.9138121547, 37.1801104972);
  transform: translateY(-2px);
}

.store-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.store-image img {
  width: 100%;
  height: auto;
  display: block;
}

.store-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-image-placeholder::after {
  content: "🛒";
  font-size: 4rem;
  opacity: 0.3;
}

@media (max-width: 767px) {
  .resources-intro {
    padding: 60px 0 40px;
  }
  .resources-primary,
  .resources-secondary {
    padding: 30px 0;
  }
  .resources-quote {
    padding: 60px 0;
  }
  .resources-store {
    padding: 60px 0;
  }
  .store-grid {
    text-align: center;
  }
}
/**
 * Speeches & Writings Page Styles
 *
 * Styles for the Speeches & Writings resource page template.
 */
.speeches-writings-page {
  background: #fff;
}

.speeches-hero {
  background: linear-gradient(135deg, #0b3d59 0%, rgb(5.39, 29.89, 43.61) 100%);
  color: #fff;
  padding: 120px 0 80px;
  text-align: center;
}
.speeches-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.speeches-hero .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.speeches-intro {
  padding: 80px 0 60px;
  background: #fff;
}
.speeches-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.speeches-intro .intro-text {
  font-size: 1.375rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
.speeches-intro .intro-subtext {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a1b30;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0b3d59;
  margin: 0;
}

.speeches-famous {
  padding: 80px 0;
  background: #f8f9fa;
}
.speeches-famous .speeches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.speech-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.speech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.speech-card.speech-card--featured {
  grid-column: span 1;
}
@media (min-width: 1024px) {
  .speech-card.speech-card--featured:nth-child(1) {
    grid-column: span 2;
  }
}
.speech-card .speech-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.speech-card .speech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speech-card .speech-content {
  padding: 25px;
}
.speech-card .speech-date {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9a1b30;
  margin-bottom: 8px;
}
.speech-card .speech-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 15px;
  line-height: 1.3;
}
.speech-card .speech-excerpt {
  margin: 0 0 15px;
  padding: 15px 20px;
  background: rgba(11, 61, 89, 0.05);
  border-left: 3px solid #c9a227;
  border-radius: 0 4px 4px 0;
}
.speech-card .speech-excerpt p {
  font-size: 1rem;
  font-style: italic;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.5;
}
.speech-card .speech-description {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.speech-card .speech-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #9a1b30;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.speech-card .speech-link:hover {
  gap: 12px;
}
.speech-card .speech-link .arrow {
  transition: transform 0.2s ease;
}

.speeches-quote-section {
  padding: 100px 0;
  background: #0b3d59;
  color: #fff;
}
.speeches-quote-section .featured-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.speeches-quote-section .featured-quote p {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 30px;
}
.speeches-quote-section .featured-quote p::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: #c9a227;
  display: block;
  line-height: 0.5;
  margin-bottom: 20px;
}
.speeches-quote-section .featured-quote footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.speeches-quote-section .featured-quote footer cite {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  color: #c9a227;
}
.speeches-quote-section .featured-quote footer .quote-date {
  font-size: 0.9375rem;
  opacity: 0.8;
}

.speeches-writings {
  padding: 80px 0;
  background: #fff;
}
.speeches-writings .writings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.writing-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}
.writing-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.writing-card .writing-image {
  flex-shrink: 0;
  width: 100px;
  height: 140px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.writing-card .writing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.writing-card .writing-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.writing-card .writing-year {
  font-size: 0.875rem;
  font-weight: 600;
  color: #9a1b30;
  margin-bottom: 5px;
}
.writing-card .writing-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 10px;
  line-height: 1.3;
}
.writing-card .writing-description {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
  flex: 1;
}
.writing-card .writing-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9a1b30;
  text-decoration: none;
}
.writing-card .writing-link:hover {
  gap: 10px;
}

.speeches-external {
  padding: 80px 0;
  background: #f8f9fa;
}
.speeches-external .external-card {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .speeches-external .external-card {
    flex-direction: column;
    text-align: center;
  }
}
.speeches-external .external-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 61, 89, 0.1);
  border-radius: 50%;
  color: #0b3d59;
}
.speeches-external .external-content {
  flex: 1;
}
.speeches-external .external-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 10px;
}
.speeches-external .external-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 20px;
}
.speeches-external .external-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.speeches-external .external-content .btn-primary {
  background: #9a1b30;
  color: #fff;
}
.speeches-external .external-content .btn-primary:hover {
  background: rgb(110.6077348066, 19.3922651934, 34.4751381215);
}
.speeches-external .external-content .external-icon-small {
  font-size: 0.875rem;
}

.speeches-related {
  padding: 80px 0;
  background: #fff;
}
.speeches-related .section-header {
  margin-bottom: 40px;
}
.speeches-related .section-header h2 {
  font-size: 1.75rem;
}
.speeches-related .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}
.speeches-related .related-card {
  display: block;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.speeches-related .related-card:hover {
  border-color: #0b3d59;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.speeches-related .related-card:hover .arrow {
  transform: translateX(4px);
}
.speeches-related .related-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 8px;
}
.speeches-related .related-card p {
  font-size: 0.9375rem;
  color: #555;
  margin: 0 0 15px;
  line-height: 1.5;
}
.speeches-related .related-card .arrow {
  display: inline-block;
  font-size: 1.25rem;
  color: #9a1b30;
  transition: transform 0.2s ease;
}

.speeches-writings-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .speeches-famous .speeches-grid {
    grid-template-columns: 1fr;
  }
  .speech-card.speech-card--featured {
    grid-column: span 1 !important;
  }
  .writing-card {
    flex-direction: column;
    text-align: center;
  }
  .writing-card .writing-image {
    margin: 0 auto;
  }
}
/**
 * Myths: Fact vs Fiction Page Styles
 *
 * Accordion-based myth/fact display with category filtering.
 * Class names match page-myths-fact-vs-fiction.php template.
 *
 * @package ThatcherCentre
 */
.myths-page {
  background: #fff;
}

.myths-intro {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #e0e0e0;
}
.myths-intro__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.myths-intro__text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}
.myths-intro__subtext {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  font-style: italic;
}

.myths-facts {
  padding: 80px 0;
  background: #fff;
}

.myths-list {
  max-width: 900px;
  margin: 0 auto;
}

.myth-card {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.myth-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.myth-card__header {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 25px;
  background: #fff5f5;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
  position: relative;
}
.myth-card__header:hover {
  background: #ffecec;
}
.myth-card__header:focus {
  outline: 2px solid #0b3d59;
  outline-offset: -2px;
}
.myth-card__header[aria-expanded=true] .myth-card__toggle svg {
  transform: rotate(180deg);
}
.myth-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 12px;
  flex-shrink: 0;
  background: #e0e0e0;
  color: #555;
}
.myth-card__title {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  margin: 0;
  padding-right: 40px;
}
.myth-card__title .myth-label {
  color: #9a1b30;
  font-weight: 700;
  margin-right: 0.5em;
}
.myth-card__toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}
.myth-card__toggle svg {
  display: block;
  transition: transform 0.3s ease;
}
.myth-card__content {
  background: #fff;
  padding: 0;
  border-top: 1px solid #e0e0e0;
}
.myth-card__content[hidden] {
  display: none;
}
.myth-card__myth {
  padding: 25px;
  background: #fff5f5;
  border-bottom: 1px solid #e0e0e0;
}
.myth-card__myth h4 {
  display: inline-flex;
  align-items: center;
  background: #9a1b30;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 4px;
  margin: 0 0 15px 0;
}
.myth-card__myth p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
.myth-card__fact {
  padding: 25px;
  background: #f0f9f0;
}
.myth-card__fact h4 {
  display: inline-flex;
  align-items: center;
  background: #2e7d32;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 4px;
  margin: 0 0 15px 0;
}
.myth-card__fact p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1em;
}
.myth-card__fact p:last-child {
  margin-bottom: 0;
}
.myth-card__sources {
  padding: 20px 25px;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
}
.myth-card__sources h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  margin: 0 0 8px 0;
}
.myth-card__sources p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.myth-card__sources p a {
  color: #0b3d59;
  text-decoration: none;
}
.myth-card__sources p a:hover {
  text-decoration: underline;
}
.myth-card--expanded {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.myth-card--expanded .myth-card__header {
  background: #ffecec;
}

.myth-card[data-category=economy] .myth-card__category {
  background: #e8f5e9;
  color: #2e7d32;
}

.myth-card[data-category=society] .myth-card__category {
  background: #e3f2fd;
  color: #1565c0;
}

.myth-card[data-category=personal] .myth-card__category {
  background: #f3e5f5;
  color: #7b1fa2;
}

.myth-card[data-category=foreign] .myth-card__category {
  background: #ffebee;
  color: #c62828;
}

.myth-card[data-category=unions] .myth-card__category {
  background: #fff3e0;
  color: #ef6c00;
}

.myth-card[data-category=education] .myth-card__category {
  background: #e0f7fa;
  color: #00838f;
}

.myths-quote {
  padding: 80px 0;
  background: #0b3d59;
  text-align: center;
}
.myths-quote__blockquote {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}
.myths-quote__blockquote p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  font-style: italic;
  margin: 0 0 30px 0;
  position: relative;
}
.myths-quote__blockquote p::before {
  content: '"';
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: -30px;
  top: -20px;
  font-family: Georgia, serif;
}
.myths-quote__blockquote footer {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
.myths-quote__blockquote footer cite {
  font-style: normal;
  font-weight: 600;
  color: #fff;
  display: block;
}
.myths-quote__blockquote footer .quote-date {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
}

.myths-further-reading {
  padding: 80px 0;
  background: #f8f9fa;
}
.myths-further-reading__title {
  text-align: center;
  font-size: 2rem;
  color: #0b3d59;
  margin: 0 0 15px 0;
  font-weight: 700;
}
.myths-further-reading__description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #666;
}

.myths-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.myths-resource-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
}
.myths-resource-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.myths-resource-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  line-height: 1.4;
}
.myths-resource-card__description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 15px 0;
}
.myths-resource-card__link {
  display: inline-flex;
  align-items: center;
  color: #0b3d59;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.myths-resource-card__link:hover {
  text-decoration: underline;
}
.myths-resource-card__link .external-icon {
  margin-left: 6px;
  font-size: 0.85em;
}

.myths-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b3d59 0%, #062a3e 100%);
  text-align: center;
}
.myths-cta__content {
  max-width: 600px;
  margin: 0 auto;
}
.myths-cta__content h2 {
  font-size: 2rem;
  color: #fff;
  margin: 0 0 15px 0;
  font-weight: 700;
}
.myths-cta__content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px 0;
  line-height: 1.6;
}
.myths-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.myths-cta__buttons .btn {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.myths-cta__buttons .btn--primary {
  background: #fff;
  color: #0b3d59;
}
.myths-cta__buttons .btn--primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.myths-cta__buttons .btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.myths-cta__buttons .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .myths-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .myths-intro {
    padding: 40px 0;
  }
  .myths-intro__text {
    font-size: 1rem;
  }
  .myths-facts {
    padding: 50px 0;
  }
  .myth-card__header {
    padding: 15px 20px;
    padding-right: 50px;
  }
  .myth-card__category {
    margin-bottom: 8px;
    width: 100%;
    text-align: left;
    display: inline-block;
    width: auto;
  }
  .myth-card__title {
    font-size: 1rem;
    width: 100%;
    padding-right: 0;
  }
  .myth-card__title .myth-label {
    display: block;
    margin-bottom: 4px;
  }
  .myth-card__toggle {
    top: 20px;
  }
  .myth-card__myth, .myth-card__fact {
    padding: 20px;
  }
  .myth-card__sources {
    padding: 15px 20px;
  }
  .myths-quote {
    padding: 50px 20px;
  }
  .myths-quote__blockquote p {
    font-size: 1.2rem;
  }
  .myths-quote__blockquote p::before {
    position: static;
    display: block;
    margin-bottom: -15px;
  }
  .myths-further-reading {
    padding: 50px 20px;
  }
  .myths-further-reading__title {
    font-size: 1.6rem;
  }
  .myths-resources-grid {
    grid-template-columns: 1fr;
  }
  .myths-cta {
    padding: 50px 20px;
  }
  .myths-cta__content h2 {
    font-size: 1.6rem;
  }
  .myths-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .myths-cta__buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .myth-card,
  .myth-card__toggle svg,
  .myths-resource-card,
  .myths-cta__buttons .btn {
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .myth-card {
    border-width: 2px;
  }
  .myth-card__header:focus {
    outline-width: 3px;
  }
  .myth-card__myth h4,
  .myth-card__fact h4 {
    border: 1px solid currentColor;
  }
}
/**
 * Thatcherism Today - Quarterly Journal Page Styles
 *
 * @package ThatcherCentre
 */
.thatcherism-today-page {
  background: #fff;
}
.thatcherism-today-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.thatcherism-today-page .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.thatcherism-today-page .section-header .section-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9a1b30;
  margin-bottom: 12px;
}
.thatcherism-today-page .section-header h2 {
  font-size: 2.25rem;
  color: #0b3d59;
  margin: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .thatcherism-today-page .section-header h2 {
    font-size: 1.75rem;
  }
}

.thatcherism-intro {
  padding: 60px 0;
  background: #f8f9fa;
}
.thatcherism-intro__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.thatcherism-intro__text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #374151;
  margin: 0 0 15px 0;
}
@media (max-width: 768px) {
  .thatcherism-intro__text {
    font-size: 1.1rem;
  }
}
.thatcherism-intro__subtext {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.thatcherism-current {
  padding: 80px 0;
  background: #fff;
}
.thatcherism-current .current-issue {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .thatcherism-current .current-issue {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.thatcherism-current .current-issue__cover {
  position: relative;
}
.thatcherism-current .current-issue__cover .cover-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.thatcherism-current .current-issue__cover .cover-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #0b3d59 0%, #062a3e 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.thatcherism-current .current-issue__cover .cover-placeholder .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.8;
}
.thatcherism-current .current-issue__cover .cover-placeholder .placeholder-text {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 0 20px;
}
.thatcherism-current .current-issue__cover .issue-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #9a1b30;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.thatcherism-current .current-issue__details .issue-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.thatcherism-current .current-issue__details .issue-meta .issue-volume,
.thatcherism-current .current-issue__details .issue-meta .issue-date {
  font-size: 0.9rem;
  color: #6b7280;
}
.thatcherism-current .current-issue__details .issue-meta .issue-volume {
  font-weight: 600;
}
.thatcherism-current .current-issue__details .issue-title {
  font-size: 1.75rem;
  color: #0b3d59;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.3;
}
.thatcherism-current .current-issue__details .issue-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 25px;
}
.thatcherism-current .current-issue__details .issue-highlights {
  margin-bottom: 30px;
}
.thatcherism-current .current-issue__details .issue-highlights h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.thatcherism-current .current-issue__details .issue-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.thatcherism-current .current-issue__details .issue-highlights ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}
.thatcherism-current .current-issue__details .issue-highlights ul li::before {
  content: "•";
  color: #9a1b30;
  font-weight: 700;
  flex-shrink: 0;
}
.thatcherism-current .current-issue__details .issue-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.thatcherism-current .current-issue__details .issue-actions .btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.thatcherism-current .current-issue__details .issue-actions .btn--primary {
  background: #9a1b30;
  color: #fff;
}
.thatcherism-current .current-issue__details .issue-actions .btn--primary:hover {
  background: #7d1526;
}
.thatcherism-current .current-issue__details .issue-actions .btn--secondary {
  background: transparent;
  color: #0b3d59;
  border: 2px solid #0b3d59;
}
.thatcherism-current .current-issue__details .issue-actions .btn--secondary:hover {
  background: #0b3d59;
  color: #fff;
}

.thatcherism-features {
  padding: 80px 0;
  background: #0b3d59;
}
.thatcherism-features .section-header .section-eyebrow {
  color: #c9a227;
}
.thatcherism-features .section-header h2 {
  color: #fff;
}
.thatcherism-features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .thatcherism-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .thatcherism-features .features-grid {
    grid-template-columns: 1fr;
  }
}
.thatcherism-features .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.thatcherism-features .feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}
.thatcherism-features .feature-card .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #c9a227;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thatcherism-features .feature-card .feature-icon svg {
  width: 32px;
  height: 32px;
  color: #0b3d59;
  stroke: #0b3d59;
}
.thatcherism-features .feature-card .feature-title {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 12px 0;
  font-weight: 600;
}
.thatcherism-features .feature-card .feature-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.thatcherism-archive {
  padding: 80px 0;
  background: #f8f9fa;
}
.thatcherism-archive .archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .thatcherism-archive .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .thatcherism-archive .archive-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
}
.thatcherism-archive .archive-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.thatcherism-archive .archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.thatcherism-archive .archive-card:hover .archive-cover img {
  transform: scale(1.05);
}
.thatcherism-archive .archive-card .archive-cover {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.thatcherism-archive .archive-card .archive-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.thatcherism-archive .archive-card .archive-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #0b3d59 0%, #062a3e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.thatcherism-archive .archive-card .archive-placeholder .placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  opacity: 0.7;
}
.thatcherism-archive .archive-card .archive-placeholder .placeholder-text {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}
.thatcherism-archive .archive-card .archive-details {
  padding: 20px;
}
.thatcherism-archive .archive-card .archive-details .archive-volume {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 5px;
}
.thatcherism-archive .archive-card .archive-details .archive-title {
  font-size: 1rem;
  color: #0b3d59;
  margin: 0 0 5px 0;
  font-weight: 600;
  line-height: 1.4;
}
.thatcherism-archive .archive-card .archive-details .archive-date {
  font-size: 0.85rem;
  color: #6b7280;
}
.thatcherism-archive .archive-card .archive-details .archive-actions {
  margin-top: 12px;
}
.thatcherism-archive .archive-card .archive-details .archive-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.thatcherism-archive .archive-card .archive-details .archive-actions .btn--outline {
  border: 1px solid #0b3d59;
  color: #0b3d59;
  background: transparent;
}
.thatcherism-archive .archive-card .archive-details .archive-actions .btn--outline:hover {
  background: #0b3d59;
  color: #fff;
}

.thatcherism-subscribe {
  padding: 100px 0;
  background: linear-gradient(135deg, #9a1b30 0%, #6d1221 100%);
  position: relative;
  overflow: hidden;
}
.thatcherism-subscribe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}
.thatcherism-subscribe .container {
  position: relative;
  z-index: 1;
}
.thatcherism-subscribe .subscribe-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.thatcherism-subscribe .subscribe-text h2 {
  font-size: 2.25rem;
  color: #fff;
  margin: 0 0 20px 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .thatcherism-subscribe .subscribe-text h2 {
    font-size: 1.75rem;
  }
}
.thatcherism-subscribe .subscribe-text .subscribe-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0 0 30px 0;
}
.thatcherism-subscribe .subscribe-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}
.thatcherism-subscribe .subscribe-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.95rem;
}
.thatcherism-subscribe .subscribe-benefits li .check-icon {
  width: 20px;
  height: 20px;
  color: #c9a227;
  stroke: #c9a227;
  flex-shrink: 0;
}
.thatcherism-subscribe .subscribe-action .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.thatcherism-subscribe .subscribe-action .btn--large {
  padding: 18px 45px;
}
.thatcherism-subscribe .subscribe-action .btn--accent {
  background: #fff;
  color: #9a1b30;
}
.thatcherism-subscribe .subscribe-action .btn--accent:hover {
  background: #c9a227;
  color: #0b3d59;
}
.thatcherism-subscribe .subscribe-action .btn--accent svg {
  stroke: currentColor;
}
.thatcherism-subscribe .subscribe-action .subscribe-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.no-features-message,
.no-issues-message {
  text-align: center;
  padding: 40px 20px;
  font-style: italic;
}

.thatcherism-features .no-features-message {
  color: rgba(255, 255, 255, 0.7);
}

.thatcherism-archive .no-issues-message {
  color: #6b7280;
}

/**
 * Publications Page Styles
 *
 * Styles for the Publications page displaying event booklets and programmes.
 */
.publications-page {
  background: #fff;
}

.publications-page .page-breadcrumb-section {
  background: #f8f9fa;
  padding: 1rem 0;
}
.publications-page .page-breadcrumb-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.publications-page .page-breadcrumb-section .breadcrumb {
  font-size: 0.875rem;
  color: #666;
}
.publications-page .page-breadcrumb-section .breadcrumb a {
  color: #0b3d59;
  text-decoration: none;
}
.publications-page .page-breadcrumb-section .breadcrumb a:hover {
  text-decoration: underline;
}
.publications-page .page-breadcrumb-section .breadcrumb .separator {
  margin: 0 0.5rem;
  color: #999;
}
.publications-page .page-breadcrumb-section .breadcrumb .current {
  color: #333;
}

.publications-hero {
  background: linear-gradient(135deg, #0b3d59 0%, rgb(5.39, 29.89, 43.61) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.publications-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.publications-hero h1 {
  font-size: 3rem;
  margin: 0;
}

.publications-intro {
  padding: 4rem 0 2rem;
}
.publications-intro .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.publications-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.publications-intro .intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}
.publications-intro .intro-subtext {
  font-size: 1rem;
  color: #666;
}

.publications-featured {
  padding: 3rem 0;
  background: #f8f9fa;
}
.publications-featured .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.publications-featured .featured-publication {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .publications-featured .featured-publication {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
.publications-featured .featured-cover {
  position: relative;
}
.publications-featured .featured-cover .cover-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.publications-featured .featured-cover .cover-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #0b3d59 0%, rgb(2.585, 14.335, 20.915) 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.publications-featured .featured-cover .cover-placeholder .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.publications-featured .featured-cover .cover-placeholder .placeholder-text {
  font-size: 1rem;
  opacity: 0.8;
}
.publications-featured .featured-cover .year-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #9a1b30;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}
.publications-featured .featured-details .featured-label {
  display: inline-block;
  background: #c9a227;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.publications-featured .featured-details .featured-title {
  font-size: 1.75rem;
  color: #0b3d59;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.publications-featured .featured-details .featured-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.publications-featured .featured-details .featured-category {
  display: inline-block;
  background: #f8f9fa;
  color: #0b3d59;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.publications-featured .featured-details .btn-primary {
  display: inline-block;
  background: #9a1b30;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}
.publications-featured .featured-details .btn-primary:hover {
  background: rgb(110.6077348066, 19.3922651934, 34.4751381215);
}

.publications-categories {
  padding: 4rem 0;
}
.publications-categories .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.publications-categories .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.publications-categories .section-header .section-eyebrow {
  display: block;
  color: #9a1b30;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.publications-categories .section-header h2 {
  font-size: 2rem;
  color: #0b3d59;
  margin: 0;
}
.publications-categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .publications-categories .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .publications-categories .categories-grid {
    grid-template-columns: 1fr;
  }
}
.publications-categories .category-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.publications-categories .category-card:hover {
  border-color: #9a1b30;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.publications-categories .category-card .category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 61, 89, 0.1);
  border-radius: 50%;
}
.publications-categories .category-card .category-icon svg {
  color: #0b3d59;
}
.publications-categories .category-card .category-name {
  font-size: 1.125rem;
  color: #0b3d59;
  margin: 0 0 0.5rem;
}
.publications-categories .category-card .category-description {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.publications-grid-section {
  padding: 4rem 0;
  background: #f8f9fa;
}
.publications-grid-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.publications-grid-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.publications-grid-section .section-header .section-eyebrow {
  display: block;
  color: #9a1b30;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.publications-grid-section .section-header h2 {
  font-size: 2rem;
  color: #0b3d59;
  margin: 0;
}
.publications-grid-section .publications-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.publications-grid-section .publications-filters .filter-btn {
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.publications-grid-section .publications-filters .filter-btn:hover {
  border-color: #0b3d59;
  color: #0b3d59;
}
.publications-grid-section .publications-filters .filter-btn.active {
  background: #0b3d59;
  border-color: #0b3d59;
  color: #fff;
}
.publications-grid-section .publications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .publications-grid-section .publications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .publications-grid-section .publications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .publications-grid-section .publications-grid {
    grid-template-columns: 1fr;
  }
}
.publications-grid-section .publication-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.publications-grid-section .publication-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.publications-grid-section .publication-card .publication-cover {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.publications-grid-section .publication-card .publication-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.publications-grid-section .publication-card .publication-cover .year-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}
.publications-grid-section .publication-card .publication-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b3d59 0%, rgb(2.585, 14.335, 20.915) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.publications-grid-section .publication-card .publication-placeholder .placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.publications-grid-section .publication-card .publication-placeholder .placeholder-text {
  font-size: 0.875rem;
  opacity: 0.8;
}
.publications-grid-section .publication-card .publication-info {
  padding: 1.25rem;
}
.publications-grid-section .publication-card .publication-info .publication-title {
  font-size: 1rem;
  color: #0b3d59;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
.publications-grid-section .publication-card .publication-info .publication-event {
  display: block;
  font-size: 0.75rem;
  color: #9a1b30;
  margin-bottom: 0.5rem;
}
.publications-grid-section .publication-card .publication-info .publication-description {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.publications-grid-section .publication-card .publication-info .publication-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9a1b30;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}
.publications-grid-section .publication-card .publication-info .publication-link:hover {
  text-decoration: underline;
}
.publications-grid-section .publication-card .publication-info .publication-link svg {
  width: 16px;
  height: 16px;
}

.publications-quote {
  padding: 4rem 0;
  background: #1a1a2e;
}
.publications-quote .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.publications-quote .featured-quote {
  text-align: center;
  margin: 0;
}
.publications-quote .featured-quote .quote-text {
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 1.5rem;
}
.publications-quote .featured-quote .quote-text::before {
  content: '"';
  color: #c9a227;
}
.publications-quote .featured-quote .quote-text::after {
  content: '"';
  color: #c9a227;
}
.publications-quote .featured-quote .quote-attribution {
  display: block;
  color: #c9a227;
  font-size: 1rem;
  font-style: normal;
}
.publications-quote .featured-quote .quote-attribution::before {
  content: "— ";
}

.publications-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #9a1b30 0%, rgb(110.6077348066, 19.3922651934, 34.4751381215) 100%);
}
.publications-cta .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.publications-cta .cta-content {
  text-align: center;
}
.publications-cta .cta-content .cta-title {
  font-size: 2rem;
  color: #fff;
  margin: 0 0 1rem;
}
.publications-cta .cta-content .cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.publications-cta .cta-content .btn-primary {
  display: inline-block;
  background: #fff;
  color: #9a1b30;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.publications-cta .cta-content .btn-primary:hover {
  background: #c9a227;
  color: #fff;
}

/**
 * Books Page Styles
 *
 * Styling for the Books page template.
 *
 * @package ThatcherCentre
 */
.books-page {
  background: #fff;
}

.books-page .page-breadcrumb-section {
  background: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.books-page .page-breadcrumb-section .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.books-page .page-breadcrumb-section .breadcrumb a {
  color: #0b3d59;
  text-decoration: none;
}
.books-page .page-breadcrumb-section .breadcrumb a:hover {
  text-decoration: underline;
}
.books-page .page-breadcrumb-section .breadcrumb .separator {
  color: #ccc;
}
.books-page .page-breadcrumb-section .breadcrumb .current {
  color: #1d2327;
}

.books-hero {
  background: linear-gradient(135deg, #0b3d59 0%, rgb(5.39, 29.89, 43.61) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.books-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.books-intro {
  padding: 3rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.books-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.books-intro .intro-text {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #1d2327;
  margin-bottom: 1rem;
}
.books-intro .intro-subtext {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.books-featured {
  padding: 4rem 0;
  background: #f8f9fa;
}
.books-featured .featured-book {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .books-featured .featured-book {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
.books-featured .featured-cover .cover-image {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.books-featured .featured-cover .cover-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.books-featured .featured-cover .cover-placeholder .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.books-featured .featured-cover .cover-placeholder .placeholder-text {
  font-size: 0.875rem;
}
.books-featured .featured-details .featured-label {
  display: inline-block;
  background: #c9a227;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.books-featured .featured-details .featured-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d2327;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.books-featured .featured-details .featured-author {
  font-size: 1.125rem;
  color: #0b3d59;
  margin: 0 0 0.5rem;
}
.books-featured .featured-details .featured-year {
  display: inline-block;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.books-featured .featured-details .featured-description {
  font-size: 1rem;
  line-height: 1.75;
  color: #1d2327;
  margin-bottom: 1.5rem;
}
.books-featured .featured-details .featured-category {
  display: inline-block;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.books-featured .featured-details .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.books-featured .featured-details .btn.btn-primary {
  background: #9a1b30;
  color: #fff;
  border: none;
}
.books-featured .featured-details .btn.btn-primary:hover {
  background: rgb(110.6077348066, 19.3922651934, 34.4751381215);
}

.books-categories {
  padding: 2rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.books-categories .category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.books-categories .category-tab {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #1d2327;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.books-categories .category-tab:hover {
  background: #f8f9fa;
  border-color: #0b3d59;
}
.books-categories .category-tab.active {
  background: #0b3d59;
  border-color: #0b3d59;
  color: #fff;
}

.books-grid-section {
  padding: 3rem 0;
  background: #fff;
}

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

.book-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.book-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.book-card .book-cover {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
}
.book-card .book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-card .book-cover .book-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-card .book-cover .book-placeholder .placeholder-icon {
  font-size: 3rem;
  color: #aaa;
}
.book-card .book-info {
  padding: 1.25rem;
}
.book-card .book-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1d2327;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
.book-card .book-author {
  font-size: 0.875rem;
  color: #0b3d59;
  margin: 0 0 0.25rem;
}
.book-card .book-year {
  font-size: 0.75rem;
  color: #6b7280;
  display: block;
  margin-bottom: 0.75rem;
}
.book-card .book-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.book-card .book-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9a1b30;
  text-decoration: none;
}
.book-card .book-link svg {
  width: 14px;
  height: 14px;
}
.book-card .book-link:hover {
  text-decoration: underline;
}

.books-quote {
  padding: 4rem 0;
  background: #0b3d59;
}
.books-quote .featured-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border: none;
}
.books-quote .featured-quote .quote-text {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.75;
  color: #fff;
  margin: 0 0 1.5rem;
}
.books-quote .featured-quote .quote-text::before {
  content: '"';
}
.books-quote .featured-quote .quote-text::after {
  content: '"';
}
.books-quote .featured-quote .quote-attribution {
  font-size: 1rem;
  font-weight: 600;
  color: #c9a227;
  font-style: normal;
}
.books-quote .featured-quote .quote-attribution::before {
  content: "— ";
}

.books-cta {
  padding: 4rem 0;
  background: #f8f9fa;
  text-align: center;
}
.books-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.books-cta .cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1d2327;
  margin: 0 0 1rem;
}
.books-cta .cta-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
.books-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.books-cta .btn.btn-primary {
  background: #9a1b30;
  color: #fff;
  border: none;
}
.books-cta .btn.btn-primary:hover {
  background: rgb(110.6077348066, 19.3922651934, 34.4751381215);
}

.books-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .books-intro {
    padding: 2rem 0;
  }
  .books-intro .intro-text {
    font-size: 1.125rem;
  }
  .books-featured {
    padding: 2.5rem 0;
  }
  .books-featured .featured-cover {
    max-width: 200px;
    margin: 0 auto;
  }
  .books-featured .featured-details .featured-title {
    font-size: 1.5rem;
  }
  .books-categories {
    padding: 1.5rem 0;
  }
  .books-grid-section {
    padding: 2rem 0;
  }
  .books-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  .books-quote {
    padding: 3rem 0;
  }
  .books-quote .featured-quote .quote-text {
    font-size: 1.25rem;
  }
  .books-cta {
    padding: 3rem 0;
  }
  .books-cta .cta-title {
    font-size: 1.5rem;
  }
}
/**
 * Videos Page Styles
 *
 * Styling for the Videos page template.
 *
 * @package ThatcherCentre
 */
.videos-page {
  background: #fff;
}

.videos-page .page-breadcrumb-section {
  background: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.videos-page .page-breadcrumb-section .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.videos-page .page-breadcrumb-section .breadcrumb a {
  color: #0b3d59;
  text-decoration: none;
}
.videos-page .page-breadcrumb-section .breadcrumb a:hover {
  text-decoration: underline;
}
.videos-page .page-breadcrumb-section .breadcrumb .separator {
  color: #ccc;
}
.videos-page .page-breadcrumb-section .breadcrumb .current {
  color: #1d2327;
}

.videos-hero {
  background: linear-gradient(135deg, #0b3d59 0%, rgb(5.39, 29.89, 43.61) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.videos-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.videos-intro {
  padding: 3rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.videos-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.videos-intro .intro-text {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #1d2327;
  margin-bottom: 1rem;
}
.videos-intro .intro-subtext {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.videos-featured {
  padding: 4rem 0;
  background: #f8f9fa;
}
.videos-featured .featured-video {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .videos-featured .featured-video {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.videos-featured .featured-player .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.videos-featured .featured-player .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.videos-featured .featured-player .video-thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.videos-featured .featured-player .video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.videos-featured .featured-player .video-thumbnail .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}
.videos-featured .featured-player .video-thumbnail:hover .play-overlay {
  background: #9a1b30;
  transform: translate(-50%, -50%) scale(1.1);
}
.videos-featured .featured-player .video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.videos-featured .featured-player .video-placeholder svg {
  margin-bottom: 0.5rem;
}
.videos-featured .featured-player .video-placeholder span {
  font-size: 0.875rem;
}
.videos-featured .featured-details .featured-label {
  display: inline-block;
  background: #9a1b30;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.videos-featured .featured-details .featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d2327;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.videos-featured .featured-details .featured-date {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.videos-featured .featured-details .featured-description {
  font-size: 1rem;
  line-height: 1.75;
  color: #1d2327;
  margin-bottom: 1.5rem;
}
.videos-featured .featured-details .featured-category {
  display: inline-block;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.videos-featured .featured-details .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.videos-featured .featured-details .btn.btn-primary {
  background: #9a1b30;
  color: #fff;
  border: none;
}
.videos-featured .featured-details .btn.btn-primary:hover {
  background: rgb(110.6077348066, 19.3922651934, 34.4751381215);
}

.videos-categories {
  padding: 2rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.videos-categories .category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.videos-categories .category-tab {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #1d2327;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.videos-categories .category-tab:hover {
  background: #f8f9fa;
  border-color: #0b3d59;
}
.videos-categories .category-tab.active {
  background: #0b3d59;
  border-color: #0b3d59;
  color: #fff;
}

.videos-grid-section {
  padding: 3rem 0;
  background: #fff;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.video-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.video-card:hover .play-overlay {
  opacity: 1;
}
.video-card .video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}
.video-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card .video-thumbnail .thumbnail-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}
.video-card .video-thumbnail .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}
.video-card .video-info {
  padding: 1.25rem;
}
.video-card .video-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1d2327;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
.video-card .video-date {
  font-size: 0.75rem;
  color: #6b7280;
  display: block;
  margin-bottom: 0.75rem;
}
.video-card .video-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card .video-source {
  display: block;
  font-size: 0.75rem;
  color: #c9a227;
  margin-bottom: 0.75rem;
}
.video-card .video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9a1b30;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.video-card .video-link svg {
  width: 14px;
  height: 14px;
}
.video-card .video-link:hover {
  text-decoration: underline;
}

.videos-quote {
  padding: 4rem 0;
  background: #0b3d59;
}
.videos-quote .featured-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border: none;
}
.videos-quote .featured-quote .quote-text {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.75;
  color: #fff;
  margin: 0 0 1.5rem;
}
.videos-quote .featured-quote .quote-text::before {
  content: '"';
}
.videos-quote .featured-quote .quote-text::after {
  content: '"';
}
.videos-quote .featured-quote .quote-attribution {
  font-size: 1rem;
  font-weight: 600;
  color: #c9a227;
  font-style: normal;
}
.videos-quote .featured-quote .quote-attribution::before {
  content: "— ";
}

.videos-cta {
  padding: 4rem 0;
  background: #f8f9fa;
  text-align: center;
}
.videos-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.videos-cta .cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1d2327;
  margin: 0 0 1rem;
}
.videos-cta .cta-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
.videos-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.videos-cta .btn.btn-primary {
  background: #9a1b30;
  color: #fff;
  border: none;
}
.videos-cta .btn.btn-primary:hover {
  background: rgb(110.6077348066, 19.3922651934, 34.4751381215);
}

.videos-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .videos-intro {
    padding: 2rem 0;
  }
  .videos-intro .intro-text {
    font-size: 1.125rem;
  }
  .videos-featured {
    padding: 2.5rem 0;
  }
  .videos-featured .featured-details {
    text-align: center;
  }
  .videos-featured .featured-details .featured-title {
    font-size: 1.25rem;
  }
  .videos-categories {
    padding: 1.5rem 0;
  }
  .videos-grid-section {
    padding: 2rem 0;
  }
  .videos-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  .videos-quote {
    padding: 3rem 0;
  }
  .videos-quote .featured-quote .quote-text {
    font-size: 1.25rem;
  }
  .videos-cta {
    padding: 3rem 0;
  }
  .videos-cta .cta-title {
    font-size: 1.5rem;
  }
}
/**
 * Movies Page Styles
 *
 * Smart, elegant, and sophisticated styling for the Movies page template.
 * Class names match the actual HTML structure in page-movies.php.
 *
 * @package ThatcherCentre
 */
.movies-page {
  background: #fff;
}
.movies-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .movies-page .container {
    padding: 0 16px;
  }
}

.movies-intro {
  padding: 70px 0 50px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .movies-intro {
    padding: 50px 0 35px;
  }
}
.movies-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
}
.movies-intro .intro-text {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #2c2c2c;
  font-weight: 400;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .movies-intro .intro-text {
    font-size: 1.05rem;
  }
}
.movies-intro .intro-subtext {
  font-size: 0.95rem;
  color: #5a5a5a;
  font-style: italic;
  margin: 0;
}

.movies-featured {
  padding: 70px 0;
  background: #0d0d14;
  color: #fff;
}
@media (max-width: 768px) {
  .movies-featured {
    padding: 50px 0;
  }
}

.featured-movie {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  background: rgba(255, 255, 255, 0.03);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
  .featured-movie {
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 35px;
  }
}
@media (max-width: 640px) {
  .featured-movie {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px;
  }
}

.featured-poster {
  position: relative;
}
@media (max-width: 640px) {
  .featured-poster {
    max-width: 220px;
    margin: 0 auto;
  }
}
.featured-poster img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.featured-poster .poster-placeholder {
  aspect-ratio: 2/3;
  background: linear-gradient(180deg, #1a1a2e 0%, #0d0d14 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.25);
}
.featured-poster .poster-placeholder svg {
  width: 80px;
  height: 80px;
}
.featured-poster .poster-placeholder span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.featured-details .featured-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c9a227;
  margin-bottom: 15px;
  font-weight: 600;
}
.featured-details .featured-title {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .featured-details .featured-title {
    font-size: 1.85rem;
  }
}
.featured-details .featured-year {
  display: inline-block;
  font-size: 1.1rem;
  color: #c9a227;
  margin-bottom: 30px;
  font-weight: 500;
}
.featured-details .featured-director,
.featured-details .featured-starring {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  line-height: 1.5;
}
.featured-details .featured-director strong,
.featured-details .featured-starring strong {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.featured-details .featured-description {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin: 25px 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.featured-details .featured-awards {
  background: rgba(201, 162, 39, 0.1);
  border-left: 3px solid #c9a227;
  padding: 18px 22px;
  margin: 25px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .featured-details .featured-awards {
    text-align: left;
  }
}
.featured-details .featured-awards strong {
  color: #c9a227;
  font-weight: 600;
}
.featured-details .featured-runtime {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 20px;
}
.featured-details .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #9a1b30;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}
.featured-details .btn:hover {
  background: rgb(119.2861878453, 20.9138121547, 37.1801104972);
  color: #fff;
}
.featured-details .btn svg {
  width: 16px;
  height: 16px;
}

.movies-categories {
  padding: 45px 0 25px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.category-tab {
  background: transparent;
  border: 1px solid #e0e0e0;
  color: #5a5a5a;
  padding: 12px 26px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.category-tab:hover {
  border-color: #0b3d59;
  color: #0b3d59;
}
.category-tab.active {
  background: #0b3d59;
  border-color: #0b3d59;
  color: #fff;
}

.movies-grid-section {
  padding: 50px 0 80px;
  background: #f5f6f7;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .movies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .movies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .movies-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.movie-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.movie-card:hover .movie-poster img {
  transform: scale(1.03);
}

.movie-poster {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #1a1a2e;
}
.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.movie-poster .poster-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1a1a2e 0%, #0d0d14 100%);
  color: rgba(255, 255, 255, 0.2);
}
.movie-poster .poster-placeholder svg {
  width: 48px;
  height: 48px;
}

.movie-year-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 14px;
  letter-spacing: 0.5px;
}

.movie-info {
  padding: 22px;
}
@media (max-width: 768px) {
  .movie-info {
    padding: 18px;
  }
}

.movie-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c2c2c;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .movie-title {
    font-size: 0.95rem;
  }
}

.movie-director {
  font-size: 0.85rem;
  color: #5a5a5a;
  margin-bottom: 6px;
}

.movie-starring {
  font-size: 0.85rem;
  color: #0b3d59;
  font-weight: 500;
  margin-bottom: 12px;
}

.movie-description {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #5a5a5a;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.movie-network {
  display: inline-block;
  background: #9a1b30;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  margin-right: 10px;
}

.movie-runtime {
  display: inline-block;
  font-size: 0.8rem;
  color: #5a5a5a;
}

.movie-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0b3d59;
  text-decoration: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e0e0e0;
}
.movie-link:hover {
  color: #9a1b30;
}
.movie-link svg {
  width: 14px;
  height: 14px;
}

.movies-actors {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .movies-actors {
    padding: 55px 0;
  }
}
.movies-actors .section-title {
  text-align: center;
  font-size: 1.7rem;
  color: #0b3d59;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.movies-actors .section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  color: #5a5a5a;
  font-size: 1rem;
  line-height: 1.6;
}

.actors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .actors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .actors-grid {
    grid-template-columns: 1fr;
  }
}

.actor-card {
  background: #f5f6f7;
  padding: 30px;
  border-left: 3px solid #c9a227;
  transition: background 0.2s ease;
}
.actor-card:hover {
  background: rgb(239.3333333333, 240.9, 242.4666666667);
}
.actor-card .actor-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 6px;
}
.actor-card .actor-production {
  font-size: 0.9rem;
  color: #5a5a5a;
  margin-bottom: 12px;
  font-style: italic;
}
.actor-card .actor-awards {
  font-size: 0.8rem;
  color: #c9a227;
  font-weight: 600;
  line-height: 1.4;
}

.movies-quote {
  padding: 100px 0;
  background: #0b3d59;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .movies-quote {
    padding: 70px 0;
  }
}
.movies-quote .featured-quote {
  max-width: 850px;
  margin: 0 auto;
  border: none;
  padding: 0;
  background: none;
}
.movies-quote .quote-text {
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .movies-quote .quote-text {
    font-size: 1.3rem;
  }
}
.movies-quote .quote-text::before {
  content: '"';
  display: block;
  font-size: 5rem;
  line-height: 0.6;
  opacity: 0.2;
  margin-bottom: 25px;
  font-family: Georgia, serif;
}
.movies-quote .quote-attribution {
  display: block;
  margin-top: 35px;
  font-size: 0.95rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
}
.movies-quote .quote-attribution::before {
  content: "— ";
}

.movies-cta {
  padding: 80px 0;
  text-align: center;
  background: #f5f6f7;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .movies-cta {
    padding: 55px 0;
  }
}
.movies-cta .cta-content {
  max-width: 580px;
  margin: 0 auto;
}
.movies-cta .cta-title {
  font-size: 1.7rem;
  color: #0b3d59;
  margin-bottom: 15px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .movies-cta .cta-title {
    font-size: 1.45rem;
  }
}
.movies-cta .cta-description {
  color: #5a5a5a;
  margin-bottom: 30px;
  line-height: 1.7;
}
.movies-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #9a1b30;
  color: #fff;
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s ease;
  border: none;
}
.movies-cta .btn:hover {
  background: rgb(119.2861878453, 20.9138121547, 37.1801104972);
  color: #fff;
}

.movies-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #5a5a5a;
}
.movies-empty-state p {
  font-size: 1.1rem;
}

/**
 * Podcasts & Websites Page Styles
 *
 * Styles for the Podcasts & Websites resource page.
 * Class names match page-podcasts-websites.php template.
 *
 * @package ThatcherCentre
 */
.podcasts-websites-page {
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
}

.podcasts-websites-intro {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
.podcasts-websites-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
}
.podcasts-websites-intro .intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #333;
  margin: 0 0 15px;
}
.podcasts-websites-intro .intro-subtext {
  font-size: 1rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

.podcasts-section,
.websites-section {
  padding: 80px 0;
}

.podcasts-section {
  background: #f8f9fa;
}

.websites-section {
  background: #f5f0e8;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .section-title {
  font-size: 2.25rem;
  color: #0b3d59;
  margin-bottom: 15px;
  font-weight: 700;
}
.section-header .section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.featured-podcast,
.featured-website {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  .featured-podcast,
  .featured-website {
    grid-template-columns: 1fr;
  }
}

.featured-artwork,
.featured-screenshot {
  position: relative;
  min-height: 320px;
  background: linear-gradient(145deg, #0b3d59 0%, rgb(4.268, 23.668, 34.532) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-artwork img,
.featured-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.featured-artwork .featured-badge,
.featured-screenshot .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #c9a962;
  color: #0b3d59;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 2;
}
.featured-artwork .artwork-placeholder,
.featured-artwork .screenshot-placeholder,
.featured-screenshot .artwork-placeholder,
.featured-screenshot .screenshot-placeholder {
  color: rgba(255, 255, 255, 0.25);
  z-index: 1;
}
.featured-artwork .artwork-placeholder svg,
.featured-artwork .screenshot-placeholder svg,
.featured-screenshot .artwork-placeholder svg,
.featured-screenshot .screenshot-placeholder svg {
  width: 80px;
  height: 80px;
}

.featured-details {
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-details .featured-label {
  display: inline-block;
  font-size: 0.75rem;
  color: #9a1b30;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 12px;
}
.featured-details .featured-title {
  font-size: 1.75rem;
  color: #0b3d59;
  margin: 0 0 15px;
  font-weight: 700;
  line-height: 1.3;
}
.featured-details .featured-host,
.featured-details .featured-platform,
.featured-details .featured-organisation {
  font-size: 0.95rem;
  color: #333;
  margin: 0 0 8px;
}
.featured-details .featured-host strong,
.featured-details .featured-platform strong,
.featured-details .featured-organisation strong {
  color: #0b3d59;
  font-weight: 600;
}
.featured-details .featured-description {
  font-size: 1rem;
  line-height: 1.75;
  color: #666;
  margin: 15px 0 20px;
}
.featured-details .featured-highlights {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
}
.featured-details .featured-highlights strong {
  color: #0b3d59;
  display: block;
  margin-bottom: 5px;
}
.featured-details .featured-episodes {
  display: inline-block;
  font-size: 0.85rem;
  color: #666;
  background: #f8f9fa;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.featured-details .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.featured-details .btn.btn-primary {
  background: #0b3d59;
  color: #fff;
}
.featured-details .btn.btn-primary:hover {
  background: rgb(6.512, 36.112, 52.688);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(11, 61, 89, 0.3);
}
.featured-details .btn svg {
  flex-shrink: 0;
}

.podcasts-grid,
.websites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .podcasts-grid,
  .websites-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .podcasts-grid,
  .websites-grid {
    grid-template-columns: 1fr;
  }
}

.podcast-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.podcast-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.podcast-artwork {
  position: relative;
  padding-top: 75%;
  background: linear-gradient(145deg, #0b3d59 0%, #9a1b30 100%);
  overflow: hidden;
}
.podcast-artwork img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.podcast-artwork .artwork-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.2);
}
.podcast-artwork .artwork-placeholder svg {
  width: 50px;
  height: 50px;
}
.podcast-artwork .platform-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.podcast-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.podcast-info .podcast-title {
  font-size: 1.1rem;
  color: #0b3d59;
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.4;
}
.podcast-info .podcast-host {
  font-size: 0.875rem;
  color: #9a1b30;
  margin: 0 0 12px;
  font-weight: 600;
}
.podcast-info .podcast-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 15px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.podcast-info .podcast-episodes {
  display: inline-block;
  font-size: 0.8rem;
  color: #666;
  background: #f8f9fa;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.podcast-info .podcast-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0b3d59;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}
.podcast-info .podcast-link:hover {
  color: #9a1b30;
}
.podcast-info .podcast-link svg {
  flex-shrink: 0;
}

.website-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.website-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}
.website-card:hover .website-screenshot img {
  transform: scale(1.05);
}

.website-screenshot {
  position: relative;
  padding-top: 56.25%;
  background: #f8f9fa;
  overflow: hidden;
}
.website-screenshot img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.website-screenshot .screenshot-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #e0e0e0;
}
.website-screenshot .screenshot-placeholder svg {
  width: 45px;
  height: 45px;
}
.website-screenshot .category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0b3d59;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.website-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.website-info .website-title {
  font-size: 1.1rem;
  color: #0b3d59;
  margin: 0 0 6px;
  font-weight: 700;
  line-height: 1.4;
}
.website-info .website-organisation {
  font-size: 0.85rem;
  color: #9a1b30;
  margin: 0 0 12px;
  font-weight: 600;
}
.website-info .website-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 15px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.website-info .website-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0b3d59;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}
.website-info .website-link:hover {
  color: #9a1b30;
}
.website-info .website-link svg {
  flex-shrink: 0;
}

.podcasts-websites-quote {
  padding: 80px 0;
  background: #0b3d59;
  text-align: center;
}
.podcasts-websites-quote .featured-quote {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
}
.podcasts-websites-quote .quote-text {
  font-size: 1.625rem;
  line-height: 1.65;
  color: #fff;
  font-style: italic;
  margin: 0 0 25px;
  position: relative;
}
.podcasts-websites-quote .quote-text::before {
  content: '"';
  font-size: 4rem;
  color: #c9a962;
  display: block;
  margin-bottom: 15px;
  line-height: 1;
  font-style: normal;
  font-family: Georgia, serif;
}
.podcasts-websites-quote .quote-attribution {
  font-size: 1rem;
  color: #c9a962;
  font-style: normal;
  font-weight: 600;
}

.podcasts-websites-cta {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.podcasts-websites-cta .cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.podcasts-websites-cta .cta-title {
  font-size: 2rem;
  color: #0b3d59;
  margin: 0 0 15px;
  font-weight: 700;
}
.podcasts-websites-cta .cta-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 30px;
}
.podcasts-websites-cta .btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.podcasts-websites-cta .btn.btn-primary {
  background: #9a1b30;
  color: #fff;
}
.podcasts-websites-cta .btn.btn-primary:hover {
  background: rgb(119.2861878453, 20.9138121547, 37.1801104972);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(154, 27, 48, 0.3);
}

@media (max-width: 768px) {
  .podcasts-websites-intro {
    padding: 40px 0;
  }
  .podcasts-websites-intro .intro-text {
    font-size: 1.1rem;
  }
  .podcasts-section,
  .websites-section {
    padding: 50px 0;
  }
  .section-header {
    margin-bottom: 35px;
  }
  .section-header .section-title {
    font-size: 1.75rem;
  }
  .section-header .section-description {
    font-size: 1rem;
  }
  .featured-podcast,
  .featured-website {
    margin-bottom: 35px;
  }
  .featured-artwork,
  .featured-screenshot {
    min-height: 220px;
  }
  .featured-details {
    padding: 25px;
  }
  .featured-details .featured-title {
    font-size: 1.5rem;
  }
  .featured-details .featured-description {
    font-size: 0.95rem;
  }
  .podcasts-websites-quote {
    padding: 60px 0;
  }
  .podcasts-websites-quote .quote-text {
    font-size: 1.375rem;
  }
  .podcasts-websites-quote .quote-text::before {
    font-size: 3rem;
  }
  .podcasts-websites-cta {
    padding: 50px 0;
  }
  .podcasts-websites-cta .cta-title {
    font-size: 1.625rem;
  }
}
/**
 * Programmes Landing Page Styles
 *
 * Styles for the Programmes landing page featuring the three educational programmes.
 *
 * @package ThatcherCentre
 */
.programmes-page {
  background: #ffffff;
  overflow-x: hidden;
}
.programmes-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.programmes-page .page-breadcrumb-section {
  background: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}
.programmes-page .page-breadcrumb-section .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #4b5563;
}
.programmes-page .page-breadcrumb-section .breadcrumb a {
  color: #0b3d59;
  text-decoration: none;
}
.programmes-page .page-breadcrumb-section .breadcrumb a:hover {
  text-decoration: underline;
}
.programmes-page .page-breadcrumb-section .breadcrumb .separator {
  color: #ccc;
}
.programmes-page .page-breadcrumb-section .breadcrumb .current {
  color: #1f2937;
}

.programmes-hero {
  background: linear-gradient(135deg, #0b3d59, #062538);
  color: #ffffff;
  padding: 6rem 0;
  text-align: center;
}
.programmes-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 768px) {
  .programmes-hero h1 {
    font-size: 2.25rem;
  }
}

.programmes-intro {
  padding: 4rem 0;
  background: #ffffff;
  text-align: center;
}
.programmes-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
}
.programmes-intro .intro-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a1b30;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(154, 27, 48, 0.1);
  border-radius: 2px;
}
.programmes-intro .intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .programmes-intro .intro-title {
    font-size: 2rem;
  }
}
.programmes-intro .intro-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
}

.programmes-grid {
  padding: 4rem 0 6rem;
  background: #f8f9fa;
}

.programmes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .programmes-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .programmes-cards {
    grid-template-columns: 1fr;
  }
}

.programme-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.programme-card-icon {
  padding: 2rem;
  background: linear-gradient(135deg, #0b3d59, #062538);
  color: #ffffff;
  text-align: center;
}
.programme-card-icon svg {
  width: 64px;
  height: 64px;
}

.programme-card--scales .programme-card-icon {
  background: linear-gradient(135deg, #1a4d2e, #0d2818);
}

.programme-card--parliament .programme-card-icon {
  background: linear-gradient(135deg, #0b3d59, #062538);
}

.programme-card--fellowship .programme-card-icon {
  background: linear-gradient(135deg, #9a1b30, #6d1424);
}

.programme-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.programme-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.programme-card-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 1.5rem;
}

.programme-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.programme-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #1f2937;
  line-height: 1.5;
}
.programme-card-features li svg {
  flex-shrink: 0;
  color: #9a1b30;
  margin-top: 2px;
}

.programme-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #9a1b30;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease;
  margin-top: auto;
}
.programme-card .btn:hover {
  background: #7a162a;
  color: #ffffff;
}

.programmes-quote {
  padding: 5rem 0;
  background: #0b3d59;
  color: #ffffff;
  text-align: center;
}
.programmes-quote .featured-quote {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}
.programmes-quote .quote-text {
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .programmes-quote .quote-text {
    font-size: 1.4rem;
  }
}
.programmes-quote .quote-text::before {
  content: "“";
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
}
.programmes-quote .quote-attribution {
  font-size: 1rem;
  color: #c4a962;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-style: normal;
}
.programmes-quote .quote-attribution::before {
  content: "— ";
}

.programmes-impact {
  padding: 5rem 0;
  background: #ffffff;
  text-align: center;
}
.programmes-impact .impact-header {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.programmes-impact .impact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 0.75rem;
}
.programmes-impact .impact-description {
  font-size: 1.1rem;
  color: #4b5563;
  margin: 0;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .impact-stats {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  padding: 2rem 1.25rem;
  background: #faf7f2;
  border-radius: 8px;
  border-top: 3px solid #9a1b30;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.stat-item .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #0b3d59;
  line-height: 1;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .stat-item .stat-number {
    font-size: 2.5rem;
  }
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.programmes-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a1a1a, rgb(51.5, 51.5, 51.5));
  color: #ffffff;
  text-align: center;
}
.programmes-cta .cta-content {
  max-width: 800px;
  margin: 0 auto;
}
.programmes-cta .cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.programmes-cta .cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2rem;
  line-height: 1.7;
}
.programmes-cta .btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #9a1b30;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.programmes-cta .btn:hover {
  background: #7a162a;
  transform: translateY(-2px);
  color: #ffffff;
}

/**
 * Rule of Law Institute Page Styles
 *
 * Elegant, distinguished styling for the Director's Statement
 * and Rule of Law Institute programme page.
 *
 * @package ThatcherCentre
 */
.rule-of-law-page {
  background: #faf8f4;
  overflow-x: hidden;
}
.rule-of-law-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rule-of-law-page blockquote {
  border-left: none;
  padding-left: 0;
  color: inherit;
  font-style: inherit;
}
.rule-of-law-page a:visited {
  color: #1a3a52;
}

.rule-of-law-page .page-breadcrumb-section {
  background: #f5f3ef;
  padding: 1rem 0;
  border-bottom: 1px solid #d4d0c8;
}
.rule-of-law-page .page-breadcrumb-section .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #5a5a5a;
}
.rule-of-law-page .page-breadcrumb-section .breadcrumb a {
  color: #1a3a52;
  text-decoration: none;
}
.rule-of-law-page .page-breadcrumb-section .breadcrumb a:visited {
  color: #1a3a52;
}
.rule-of-law-page .page-breadcrumb-section .breadcrumb a:hover {
  text-decoration: underline;
}
.rule-of-law-page .page-breadcrumb-section .breadcrumb .separator {
  color: #ccc;
}
.rule-of-law-page .page-breadcrumb-section .breadcrumb .current {
  color: #2a2a2a;
}

.director-statement {
  padding: 4rem 0 5rem;
  background: #faf8f4;
}

.statement-article {
  position: relative;
  overflow: visible;
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #d4d0c8;
}

.roli-letterhead-logo {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  pointer-events: none;
  width: 220px;
  height: 220px;
  object-fit: contain;
  object-position: center;
  padding: 22px;
  background: #ffffff;
  border-radius: 50%;
  border: 3px solid #c4a962;
  outline: 2px solid rgba(196, 169, 98, 0.3);
  outline-offset: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 6px 16px rgba(0, 0, 0, 0.3), 0 12px 32px rgba(0, 0, 0, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.1), inset 0 -1px 2px rgba(0, 0, 0, 0.2);
  transform: rotate(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
@media (max-width: 768px) {
  .roli-letterhead-logo {
    width: 160px;
    height: 160px;
    padding: 14px;
    top: -1rem;
    right: -1rem;
  }
}
@media (max-width: 480px) {
  .roli-letterhead-logo {
    width: 110px;
    height: 110px;
    padding: 10px;
    top: -0.75rem;
    right: -0.75rem;
    border-width: 2px;
    outline-width: 1px;
    outline-offset: 2px;
  }
}

.statement-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(135deg, #1a3a52, #1a4a6a);
  color: #ffffff;
}
@media (max-width: 600px) {
  .statement-header {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

.director-portrait {
  flex-shrink: 0;
}
.director-portrait img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 600px) {
  .director-portrait img {
    width: 120px;
    height: 120px;
  }
}

.director-details {
  flex: 1;
}

.director-from {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.5rem;
}

.director-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #ffffff;
}
@media (max-width: 600px) {
  .director-name {
    font-size: 1.75rem;
  }
}

.director-title {
  font-size: 0.9rem;
  color: #c4a962;
  margin: 0;
  font-style: italic;
}

.runnymede-quote {
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, #f9f7f2, #faf8f4);
  border-top: 3px solid #c4a962;
  border-bottom: 1px solid #d4d0c8;
}
@media (max-width: 600px) {
  .runnymede-quote {
    padding: 2rem;
  }
}
.runnymede-quote blockquote {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
  color: #1a3a52;
}
.runnymede-quote blockquote p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  color: #1a3a52;
  margin: 0 0 1.25rem;
}
@media (max-width: 600px) {
  .runnymede-quote blockquote p {
    font-size: 1rem;
  }
}
.runnymede-quote blockquote cite {
  display: block;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: #c4a962;
}

.statement-body {
  padding: 3rem;
  font-family: Georgia, "Times New Roman", Times, serif;
}
@media (max-width: 600px) {
  .statement-body {
    padding: 2rem;
  }
}
.statement-body p:empty {
  display: none;
}
.statement-body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0 0 1.5rem;
}
@media (max-width: 600px) {
  .statement-body p {
    font-size: 1rem;
  }
}
.statement-body p:last-child {
  margin-bottom: 0;
}
.statement-body p a {
  color: #1a3a52;
  text-decoration: underline;
  text-decoration-color: #c4a962;
  text-underline-offset: 2px;
}
.statement-body p a:visited {
  color: #1a3a52;
}
.statement-body p a:hover {
  color: #722f37;
}
.statement-body .emphasis {
  font-size: 1.125rem;
  color: #1a3a52;
  text-align: center;
  padding: 1.5rem 0;
  line-height: 1.7;
}
.statement-body .emphasis strong {
  font-weight: 700;
}
.statement-body em {
  font-style: italic;
}
.statement-body .statement-link {
  font-weight: 600;
}

.quote-with-figure {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 0 0 1.5rem;
  background: none;
  border-left: 4px solid #c4a962;
  border-radius: 0;
}
@media (max-width: 700px) {
  .quote-with-figure {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: none;
    border-top: 4px solid #c4a962;
    border-radius: 0;
  }
}
.quote-with-figure img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .quote-with-figure img {
    width: 120px;
    height: 155px;
  }
}
.quote-with-figure blockquote {
  margin: 0;
  padding: 0;
  border: none;
  flex: 1;
  color: #2a2a2a;
}
.quote-with-figure blockquote p {
  font-size: 1rem;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0 0 1.25rem;
  font-style: italic;
}
.quote-with-figure blockquote p:last-child {
  margin-bottom: 0;
}

.statecraft-quote {
  margin: 2rem 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border: none;
  border-left: 4px solid #c4a962;
  background: none;
  color: #2a2a2a;
  border-radius: 0;
  position: relative;
}
.statecraft-quote p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0;
  color: #2a2a2a;
  font-style: italic;
}
@media (max-width: 600px) {
  .statecraft-quote p {
    font-size: 1rem;
  }
}

.statement-signature {
  padding: 2.5rem 3rem;
  background: #f5f3ef;
  border-top: 1px solid #d4d0c8;
  text-align: right;
}
@media (max-width: 600px) {
  .statement-signature {
    padding: 2rem;
    text-align: center;
  }
}

.signature-name {
  font-family: "Brush Script MT", "Dancing Script", cursive;
  font-size: 2rem;
  color: #1a3a52;
  margin: 0 0 0.5rem;
}
@supports not (font-family: "Brush Script MT") {
  .signature-name {
    font-family: Georgia, serif;
    font-style: italic;
  }
}

.signature-title {
  font-size: 0.875rem;
  color: #5a5a5a;
  margin: 0;
  font-style: italic;
}

.rule-of-law-support {
  padding: 5rem 0;
  background: linear-gradient(135deg, #722f37, #521f26);
  color: #ffffff;
  text-align: center;
}

.support-content {
  max-width: 700px;
  margin: 0 auto;
}

.support-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", Times, serif;
}
@media (max-width: 768px) {
  .support-title {
    font-size: 1.875rem;
  }
}

.support-description {
  font-size: 1.125rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
}

.rule-of-law-support .btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: #c4a962;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.rule-of-law-support .btn:visited {
  color: #1a1a1a;
}
.rule-of-law-support .btn:hover {
  background: rgb(207.1444444444, 185.2444444444, 127.6555555556);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.support-newsletter-form {
  max-width: 480px;
  margin: 0 auto;
}
.support-newsletter-form .newsletter-form {
  gap: 0.75rem;
}
.support-newsletter-form .newsletter-form .form-label {
  color: rgba(255, 255, 255, 0.9);
}
.support-newsletter-form .newsletter-form .form-label .required {
  color: #fca5a5;
}
.support-newsletter-form .newsletter-form input[type=email],
.support-newsletter-form .newsletter-form input[type=text] {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #1e293b;
}
.support-newsletter-form .newsletter-form input[type=email]:focus,
.support-newsletter-form .newsletter-form input[type=text]:focus {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}
.support-newsletter-form .newsletter-form input[type=email]::placeholder,
.support-newsletter-form .newsletter-form input[type=text]::placeholder {
  color: rgba(30, 41, 59, 0.5);
}
.support-newsletter-form .newsletter-form .btn-subscribe {
  background: #c4a962;
  color: #1a1a1a;
  border-color: #c4a962;
}
.support-newsletter-form .newsletter-form .btn-subscribe:hover {
  background: rgb(207.1444444444, 185.2444444444, 127.6555555556);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.support-newsletter-form .newsletter-form .newsletter-message--success {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.4);
}
.support-newsletter-form .newsletter-form .newsletter-message--error {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.4);
}
.support-newsletter-form .newsletter-form .form-notice {
  color: rgba(255, 255, 255, 0.6);
}

.btn-large {
  padding: 1.125rem 3.5rem;
  font-size: 1.125rem;
}

.rule-of-law-programmes {
  padding: 5rem 0;
  background: #ffffff;
}
.rule-of-law-programmes .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a3a52;
  text-align: center;
  margin: 0 0 3rem;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.rule-of-law-programmes .programmes-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .rule-of-law-programmes .programmes-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
}

.programme-item {
  background: #ffffff;
  padding: 2.25rem 1.75rem;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #d4d0c8;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.programme-item:hover {
  border-color: #c4a962;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.programme-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a3a52;
  border-radius: 50%;
}
.programme-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.programme-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a3a52;
  margin: 0 0 0.75rem;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.programme-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0;
}

.rule-of-law-newsletter {
  padding: 4rem 0;
  background: #f5f3ef;
  border-top: 1px solid #d4d0c8;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a3a52;
}
@media (max-width: 768px) {
  .newsletter-title {
    font-size: 1.625rem;
  }
}

.newsletter-description {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: #5a5a5a;
  margin: 0 0 1.5rem;
}

.newsletter-form-wrapper {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #d4d0c8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
  .newsletter-form-wrapper {
    padding: 1.5rem 1rem;
  }
}

.rule-of-law-newsletter .newsletter-form {
  text-align: left;
}
.rule-of-law-newsletter .newsletter-form .btn-subscribe {
  background: #c4a962;
  color: #1a1a1a;
  border-color: #c4a962;
}
.rule-of-law-newsletter .newsletter-form .btn-subscribe:hover {
  background: rgb(184.0388888889, 152.3888888889, 69.1611111111);
  border-color: rgb(184.0388888889, 152.3888888889, 69.1611111111);
}
.rule-of-law-newsletter .newsletter-form input[type=email],
.rule-of-law-newsletter .newsletter-form input[type=text] {
  border-color: #d4d0c8;
}
.rule-of-law-newsletter .newsletter-form input[type=email]:focus,
.rule-of-law-newsletter .newsletter-form input[type=text]:focus {
  border-color: #722f37;
  box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

/**
 * Parliamentary Internship Programme Page Styles
 *
 * Styles for the internship programme page sections.
 * All class names use BEM naming convention matching the PHP template.
 *
 * @package ThatcherCentre
 */
.parliamentary-internship-page {
  background: #fff;
}
.parliamentary-internship-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.parliamentary-internship-page .page-breadcrumb-section {
  background: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}
.parliamentary-internship-page .page-breadcrumb-section .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666666;
}
.parliamentary-internship-page .page-breadcrumb-section .breadcrumb a {
  color: #0b3d59;
  text-decoration: none;
}
.parliamentary-internship-page .page-breadcrumb-section .breadcrumb a:hover {
  text-decoration: underline;
}
.parliamentary-internship-page .page-breadcrumb-section .breadcrumb .separator {
  color: #ccc;
}
.parliamentary-internship-page .page-breadcrumb-section .breadcrumb .current {
  color: #333333;
}

.internship-hero {
  background: linear-gradient(135deg, #0b3d59 0%, #1a5276 100%);
  padding: 80px 0;
  color: #fff;
  text-align: center;
}
.internship-hero .internship-hero__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}
.internship-hero .internship-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.2;
}
.internship-hero .internship-hero__text {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.internship-intro {
  padding: 80px 0;
  background: #fff;
}
.internship-intro .internship-intro__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.internship-intro .internship-intro__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a1b30;
  margin-bottom: 15px;
}
.internship-intro .internship-intro__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 20px;
  line-height: 1.3;
}
.internship-intro .internship-intro__text {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.8;
  margin: 0;
}

.internship-overview {
  padding: 80px 0;
  background: #f8f9fa;
}
.internship-overview .internship-overview__header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}
.internship-overview .internship-overview__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 20px;
}
.internship-overview .internship-overview__text {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.internship-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.internship-feature {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.internship-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.internship-feature .internship-feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: #0b3d59;
}
.internship-feature .internship-feature__icon svg {
  width: 100%;
  height: 100%;
  fill: #0b3d59;
}
.internship-feature .internship-feature__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b3d59;
  margin: 0 0 10px;
}
.internship-feature .internship-feature__desc {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.internship-placements {
  padding: 80px 0;
  background: #fff;
}
.internship-placements .internship-placements__header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}
.internship-placements .internship-placements__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 20px;
}
.internship-placements .internship-placements__desc {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}
.internship-placements .internship-placements__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.internship-placement {
  position: relative;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #0b3d59;
}
.internship-placement .internship-placement__number {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(11, 61, 89, 0.1);
  line-height: 1;
}
.internship-placement .internship-placement__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b3d59;
  margin: 0 0 15px;
}
.internship-placement .internship-placement__desc {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.internship-visits {
  padding: 80px 0;
  background: #0b3d59;
  color: #fff;
}
.internship-visits .internship-visits__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .internship-visits .internship-visits__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.internship-visits .internship-visits__text .internship-visits__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 20px;
}
.internship-visits .internship-visits__text .internship-visits__desc {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}
.internship-visits .internship-visits__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.internship-visits .internship-visits__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.internship-visits .internship-visits__item:last-child {
  border-bottom: none;
}
.internship-visits .internship-visits__check {
  flex-shrink: 0;
  color: #4caf50;
  margin-top: 2px;
}

.internship-expansion {
  padding: 80px 0;
  background: #f8f9fa;
}
.internship-expansion .internship-expansion__header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}
.internship-expansion .internship-expansion__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 20px;
}
.internship-expansion .internship-expansion__text {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}
.internship-expansion .internship-expansion__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.internship-expansion .internship-expansion__card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.internship-expansion .internship-expansion__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.internship-expansion .internship-expansion__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b3d59;
  margin: 0 0 15px;
}
.internship-expansion .internship-expansion__card-desc {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.internship-eligibility {
  padding: 80px 0;
  background: #fff;
}
.internship-eligibility .internship-eligibility__content {
  max-width: 800px;
  margin: 0 auto;
}
.internship-eligibility .internship-eligibility__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0b3d59;
  margin: 0 0 30px;
  text-align: center;
}
.internship-eligibility .internship-eligibility__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 15px;
}
.internship-eligibility .internship-eligibility__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: #333333;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 6px;
}
.internship-eligibility .internship-eligibility__check {
  flex-shrink: 0;
  color: #0b3d59;
  margin-top: 2px;
}
.internship-eligibility .internship-eligibility__deadline {
  text-align: center;
  font-size: 1rem;
  color: #666666;
  font-style: italic;
  margin: 0;
}

.internship-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #9a1b30 0%, #6d1424 100%);
  color: #fff;
  text-align: center;
}
.internship-cta .internship-cta__content {
  max-width: 700px;
  margin: 0 auto;
}
.internship-cta .internship-cta__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 20px;
}
.internship-cta .internship-cta__desc {
  font-size: 1.15rem;
  opacity: 0.95;
  line-height: 1.7;
  margin: 0 0 30px;
}
.internship-cta .internship-cta__button {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #9a1b30;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.internship-cta .internship-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #9a1b30;
}

/**
 * Thatcher Fellowship Page Styles
 *
 * Frontend styles for the Thatcher Fellowship Programme page.
 * Uses gold/cream accent colours to reflect the prestigious fellowship branding.
 *
 * @package ThatcherCentre
 */
.thatcher-fellowship-page {
  background: #fff;
}
.thatcher-fellowship-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.thatcher-fellowship-page .page-breadcrumb-section {
  background: #f5f5f5;
  padding: 15px 0;
}
.thatcher-fellowship-page .page-breadcrumb-section .breadcrumb {
  font-size: 14px;
  color: #666666;
  display: flex;
  align-items: center;
}
.thatcher-fellowship-page .page-breadcrumb-section .breadcrumb a {
  color: #0b3d59;
  text-decoration: none;
}
.thatcher-fellowship-page .page-breadcrumb-section .breadcrumb a:hover {
  text-decoration: underline;
}
.thatcher-fellowship-page .page-breadcrumb-section .breadcrumb .separator {
  margin: 0 8px;
  color: #999;
}
.thatcher-fellowship-page .page-breadcrumb-section .breadcrumb .current {
  color: #333333;
}

.fellowship-hero {
  background: linear-gradient(135deg, #0b3d59 0%, #062538 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.fellowship-hero .fellowship-hero__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}
.fellowship-hero .fellowship-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.2;
}
.fellowship-hero .fellowship-hero__text {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.fellowship-intro {
  padding: 80px 0;
  text-align: center;
  background: #faf8f5;
}
.fellowship-intro .fellowship-intro__content {
  max-width: 900px;
  margin: 0 auto;
}
.fellowship-intro .fellowship-intro__label {
  display: inline-block;
  background: #b8860b;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.fellowship-intro .fellowship-intro__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0b3d59;
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.3;
}
.fellowship-intro .fellowship-intro__text {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.8;
  margin: 0;
}

.fellowship-overview {
  padding: 80px 0;
  background: #fff;
}
.fellowship-overview .fellowship-overview__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .fellowship-overview .fellowship-overview__grid {
    grid-template-columns: 1fr;
  }
}
.fellowship-overview .fellowship-overview__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0b3d59;
  margin: 0 0 20px;
  font-weight: 700;
}
.fellowship-overview .fellowship-overview__desc {
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}
.fellowship-overview .fellowship-overview__facts {
  background: #0b3d59;
  color: #fff;
  border-radius: 8px;
  padding: 30px;
}

.fellowship-fact {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.fellowship-fact:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.fellowship-fact .fellowship-fact__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.fellowship-fact .fellowship-fact__content {
  display: flex;
  flex-direction: column;
}
.fellowship-fact .fellowship-fact__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 4px;
}
.fellowship-fact .fellowship-fact__value {
  font-size: 16px;
  font-weight: 600;
}

.fellowship-highlights {
  padding: 80px 0;
  background: #f5f5f5;
}
.fellowship-highlights .fellowship-highlights__header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}
.fellowship-highlights .fellowship-highlights__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0b3d59;
  margin: 0 0 15px;
  font-weight: 700;
}
.fellowship-highlights .fellowship-highlights__desc {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}
.fellowship-highlights .fellowship-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) {
  .fellowship-highlights .fellowship-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .fellowship-highlights .fellowship-highlights__grid {
    grid-template-columns: 1fr;
  }
}

.fellowship-highlight {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fellowship-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.fellowship-highlight .fellowship-highlight__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: #faf8f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fellowship-highlight .fellowship-highlight__icon svg {
  width: 28px;
  height: 28px;
  fill: #b8860b;
}
.fellowship-highlight .fellowship-highlight__title {
  font-size: 1.25rem;
  color: #0b3d59;
  margin: 0 0 12px;
  font-weight: 600;
}
.fellowship-highlight .fellowship-highlight__desc {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.fellowship-structure {
  padding: 80px 0;
  background: #fff;
}
.fellowship-structure .fellowship-structure__header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}
.fellowship-structure .fellowship-structure__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0b3d59;
  margin: 0 0 15px;
  font-weight: 700;
}
.fellowship-structure .fellowship-structure__desc {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}
.fellowship-structure .fellowship-structure__parts {
  max-width: 800px;
  margin: 0 auto;
}

.fellowship-part {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}
.fellowship-part:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 600px) {
  .fellowship-part {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.fellowship-part .fellowship-part__number {
  width: 80px;
  height: 80px;
  background: #b8860b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .fellowship-part .fellowship-part__number {
    margin: 0 auto;
  }
}
.fellowship-part .fellowship-part__content {
  padding-top: 5px;
}
.fellowship-part .fellowship-part__days {
  display: inline-block;
  font-size: 0.875rem;
  color: #b8860b;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fellowship-part .fellowship-part__title {
  font-size: 1.5rem;
  color: #0b3d59;
  margin: 0 0 12px;
  font-weight: 700;
}
.fellowship-part .fellowship-part__desc {
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
  margin: 0;
}

.fellowship-eligibility {
  padding: 80px 0;
  background: #faf8f5;
}
.fellowship-eligibility .fellowship-eligibility__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0b3d59;
  margin: 0 0 50px;
  font-weight: 700;
}
.fellowship-eligibility .fellowship-eligibility__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 768px) {
  .fellowship-eligibility .fellowship-eligibility__grid {
    grid-template-columns: 1fr;
  }
}
.fellowship-eligibility .fellowship-eligibility__column {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.fellowship-eligibility .fellowship-eligibility__subtitle {
  font-size: 1.25rem;
  color: #0b3d59;
  margin: 0 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #b8860b;
  font-weight: 700;
}
.fellowship-eligibility .fellowship-eligibility__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fellowship-eligibility .fellowship-eligibility__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
}
.fellowship-eligibility .fellowship-eligibility__item:last-child {
  margin-bottom: 0;
}
.fellowship-eligibility .fellowship-eligibility__check {
  flex-shrink: 0;
  color: #b8860b;
  margin-top: 2px;
}
.fellowship-eligibility .fellowship-eligibility__star {
  flex-shrink: 0;
  color: #d4af37;
  margin-top: 2px;
}
.fellowship-eligibility .fellowship-eligibility__column--benefits .fellowship-eligibility__subtitle {
  border-bottom-color: #0b3d59;
}

.fellowship-subsidy {
  padding: 80px 0;
  background: #0b3d59;
  color: #fff;
}
.fellowship-subsidy .fellowship-subsidy__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.fellowship-subsidy .fellowship-subsidy__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 20px;
  font-weight: 700;
  color: #fff !important;
}
.fellowship-subsidy .fellowship-subsidy__text {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.95;
  margin: 0 0 15px;
}
.fellowship-subsidy .fellowship-subsidy__note {
  font-size: 0.95rem;
  opacity: 0.8;
  font-style: italic;
  margin: 0;
}

.fellowship-testimonials {
  padding: 80px 0;
  background: #fff;
}
.fellowship-testimonials .fellowship-testimonials__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0b3d59;
  margin: 0 0 50px;
  font-weight: 700;
}
.fellowship-testimonials .fellowship-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .fellowship-testimonials .fellowship-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.fellowship-testimonial {
  background: #faf8f5;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  margin: 0;
}
.fellowship-testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  color: #b8860b;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.fellowship-testimonial .fellowship-testimonial__text {
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.fellowship-testimonial .fellowship-testimonial__footer {
  position: relative;
  z-index: 1;
}
.fellowship-testimonial .fellowship-testimonial__author {
  display: block;
  font-style: normal;
  color: #0b3d59;
  font-weight: 600;
  font-size: 1rem;
}
.fellowship-testimonial .fellowship-testimonial__role {
  display: block;
  font-size: 0.875rem;
  color: #666666;
  margin-top: 4px;
}

a.fellowship-apply-btn,
.fellowship-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 38px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
a.fellowship-apply-btn .fellowship-apply-btn__icon,
.fellowship-apply-btn .fellowship-apply-btn__icon {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
a.fellowship-apply-btn:hover, a.fellowship-apply-btn:focus-visible,
.fellowship-apply-btn:hover,
.fellowship-apply-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}
a.fellowship-apply-btn:hover .fellowship-apply-btn__icon, a.fellowship-apply-btn:focus-visible .fellowship-apply-btn__icon,
.fellowship-apply-btn:hover .fellowship-apply-btn__icon,
.fellowship-apply-btn:focus-visible .fellowship-apply-btn__icon {
  transform: translateX(3px);
}
a.fellowship-apply-btn:focus-visible,
.fellowship-apply-btn:focus-visible {
  outline: 3px solid #d4af37;
  outline-offset: 3px;
}

a.fellowship-apply-btn--primary,
.fellowship-apply-btn--primary {
  background: #0b3d59;
  color: #fff;
  border-color: #0b3d59;
}
a.fellowship-apply-btn--primary:visited,
.fellowship-apply-btn--primary:visited {
  color: #fff;
}
a.fellowship-apply-btn--primary:hover, a.fellowship-apply-btn--primary:focus-visible,
.fellowship-apply-btn--primary:hover,
.fellowship-apply-btn--primary:focus-visible {
  background: rgb(7.634, 42.334, 61.766);
  border-color: rgb(7.634, 42.334, 61.766);
  color: #fff;
}

a.fellowship-apply-btn--on-dark,
.fellowship-apply-btn--on-dark {
  background: #fff;
  color: #0b3d59;
  border-color: #fff;
}
a.fellowship-apply-btn--on-dark:visited,
.fellowship-apply-btn--on-dark:visited {
  color: #0b3d59;
}
a.fellowship-apply-btn--on-dark:hover, a.fellowship-apply-btn--on-dark:focus-visible,
.fellowship-apply-btn--on-dark:hover,
.fellowship-apply-btn--on-dark:focus-visible {
  background: #faf8f5;
  border-color: #faf8f5;
  color: #0b3d59;
}

.fellowship-intro__actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.fellowship-intro__actions-meta {
  font-size: 0.8125rem;
  color: #666666;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.fellowship-subsidy__actions {
  margin-top: 36px;
  text-align: center;
}

.fellowship-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
  color: #fff;
  text-align: center;
}
.fellowship-cta .fellowship-cta__content {
  max-width: 700px;
  margin: 0 auto;
}
.fellowship-cta .fellowship-cta__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0 0 20px;
  font-weight: 700;
}
.fellowship-cta .fellowship-cta__desc {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.95;
  line-height: 1.7;
}
.fellowship-cta .fellowship-cta__button {
  display: inline-block;
  background: #fff;
  color: #b8860b;
  padding: 15px 40px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fellowship-cta .fellowship-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #b8860b;
}

/**
 * Get Involved Page Styles
 *
 * Landing page for donor clubs and community engagement.
 * Design: Elegant, classy, generous whitespace, no rounded corners.
 */
.get-involved-hero {
  background: linear-gradient(135deg, #0b3d59 0%, rgb(5.39, 29.89, 43.61) 100%);
  color: #fff;
  padding: 120px 0;
  text-align: center;
}
.get-involved-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.get-involved-hero .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.get-involved-intro {
  padding: 100px 0;
  background: #fff;
}
.get-involved-intro .container {
  max-width: 800px;
}
.get-involved-intro .intro-content {
  text-align: center;
}
.get-involved-intro .intro-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #0b3d59;
  font-weight: 500;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.get-involved-intro .intro-subtext {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.donor-clubs-section {
  padding: 100px 0 120px;
  background: #f5f7fa;
}
.donor-clubs-section .section-header {
  text-align: center;
  margin-bottom: 70px;
}
.donor-clubs-section .section-header h2 {
  font-size: 2.5rem;
  color: #0b3d59;
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.donor-clubs-section .section-header .section-subtitle {
  font-size: 1.15rem;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

.donor-clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .donor-clubs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .donor-clubs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.donor-club-card {
  background: #fff;
  padding: 40px 35px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
  position: relative;
}
.donor-club-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}
.donor-club-card.tier-1 {
  border-top: 3px solid #c4a962;
}
.donor-club-card.tier-1 .card-header .lapel-pin {
  background: linear-gradient(135deg, #c4a962 0%, rgb(176.625, 146.25, 66.375) 100%);
}
.donor-club-card.tier-1 .btn-primary {
  background: #c4a962;
  border-color: #c4a962;
}
.donor-club-card.tier-1 .btn-primary:hover {
  background: rgb(184.0388888889, 152.3888888889, 69.1611111111);
}
.donor-club-card.tier-2 {
  border-top: 3px solid #a8a9ad;
}
.donor-club-card.tier-2 .card-header .lapel-pin {
  background: linear-gradient(135deg, #a8a9ad 0%, rgb(128.6183431953, 130.0710059172, 135.8816568047) 100%);
}
.donor-club-card.tier-3 {
  border-top: 3px solid #cd7f32;
}
.donor-club-card.tier-3 .card-header .lapel-pin {
  background: linear-gradient(135deg, #cd7f32 0%, rgb(164, 101.6, 40) 100%);
}
.donor-club-card .card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}
.donor-club-card .card-header .lapel-pin {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.donor-club-card .card-header .lapel-pin.gold {
  background: linear-gradient(135deg, #c4a962 0%, rgb(176.625, 146.25, 66.375) 100%);
}
.donor-club-card .card-header .lapel-pin.silver {
  background: linear-gradient(135deg, #a8a9ad 0%, rgb(128.6183431953, 130.0710059172, 135.8816568047) 100%);
}
.donor-club-card .card-header .lapel-pin.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, rgb(164, 101.6, 40) 100%);
}
.donor-club-card .card-header h3 {
  font-size: 1.4rem;
  color: #0b3d59;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.donor-club-card .card-pricing {
  margin-bottom: 20px;
}
.donor-club-card .card-pricing .price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0b3d59;
  letter-spacing: -0.02em;
}
.donor-club-card .card-pricing .period {
  font-size: 0.95rem;
  color: #888;
  margin-left: 6px;
}
.donor-club-card .card-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}
.donor-club-card .card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex-grow: 1;
}
.donor-club-card .card-benefits li {
  padding: 12px 0 12px 28px;
  position: relative;
  font-size: 0.95rem;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}
.donor-club-card .card-benefits li:last-child {
  border-bottom: none;
}
.donor-club-card .card-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d7a4d;
  font-weight: 600;
}
.donor-club-card .card-benefits li.more-benefits {
  color: #9a1b30;
  font-weight: 500;
  padding-left: 0;
}
.donor-club-card .card-benefits li.more-benefits::before {
  content: "";
}
.donor-club-card .btn {
  display: block;
  text-align: center;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.donor-club-card .btn.btn-primary {
  background: #9a1b30;
  color: #fff;
  border: 2px solid #9a1b30;
}
.donor-club-card .btn.btn-primary:hover {
  background: rgb(119.2861878453, 20.9138121547, 37.1801104972);
  border-color: rgb(119.2861878453, 20.9138121547, 37.1801104972);
}
.donor-club-card .btn.btn-secondary {
  background: transparent;
  color: #0b3d59;
  border: 2px solid #0b3d59;
}
.donor-club-card .btn.btn-secondary:hover {
  background: #0b3d59;
  color: #fff;
}

.donor-clubs-cta {
  text-align: center;
  padding-top: 20px;
}
.donor-clubs-cta p {
  font-size: 1.05rem;
  color: #666;
  margin: 0 0 20px;
}
.donor-clubs-cta .btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #0b3d59;
  color: #0b3d59;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.donor-clubs-cta .btn-outline:hover {
  background: #0b3d59;
  color: #fff;
}

.community-section {
  padding: 100px 0 120px;
  background: #fff;
}
.community-section .section-header {
  text-align: center;
  margin-bottom: 70px;
}
.community-section .section-header h2 {
  font-size: 2.5rem;
  color: #0b3d59;
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.community-section .section-header .section-subtitle {
  font-size: 1.15rem;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .community-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.community-card {
  background: #f5f7fa;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.community-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.community-card .card-image {
  height: 200px;
  overflow: hidden;
}
.community-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.community-card:hover .card-image img {
  transform: scale(1.03);
}
.community-card .card-content {
  padding: 35px 30px;
}
.community-card .card-content h3 {
  font-size: 1.35rem;
  color: #0b3d59;
  margin: 0 0 12px;
  font-weight: 600;
}
.community-card .card-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 20px;
}
.community-card .card-content .card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9a1b30;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.community-card .card-content .card-link:hover {
  gap: 14px;
}
.community-card .card-content .card-link .arrow {
  transition: transform 0.2s ease;
}
.community-card .card-content .card-link:hover .arrow {
  transform: translateX(4px);
}

.get-involved-quote {
  padding: 120px 0;
  background: #0b3d59;
  color: #fff;
}
.get-involved-quote .container {
  max-width: 800px;
}
.get-involved-quote blockquote {
  margin: 0;
  text-align: center;
}
.get-involved-quote blockquote p {
  font-size: 1.65rem;
  font-style: italic;
  line-height: 1.75;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}
.get-involved-quote blockquote p::before {
  content: '"';
}
.get-involved-quote blockquote p::after {
  content: '"';
}
.get-involved-quote blockquote cite {
  font-size: 1.1rem;
  font-style: normal;
  opacity: 0.85;
  letter-spacing: 0.02em;
}
.get-involved-quote blockquote cite::before {
  content: "— ";
}

.get-involved-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #9a1b30 0%, rgb(110.6077348066, 19.3922651934, 34.4751381215) 100%);
  color: #fff;
  text-align: center;
}
.get-involved-cta .cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.get-involved-cta .cta-content h2 {
  font-size: 2.25rem;
  margin: 0 0 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.get-involved-cta .cta-content p {
  font-size: 1.2rem;
  line-height: 1.75;
  opacity: 0.95;
  margin: 0 0 2.5rem;
}
.get-involved-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.get-involved-cta .cta-buttons .btn {
  padding: 16px 38px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.get-involved-cta .cta-buttons .btn.btn-primary {
  background: #fff;
  color: #9a1b30;
}
.get-involved-cta .cta-buttons .btn.btn-primary:hover {
  background: #faf8f4;
}
.get-involved-cta .cta-buttons .btn.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.get-involved-cta .cta-buttons .btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.get-involved-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/**
 * Donor Club Page Styles
 *
 * Shared styles for all donor club tiers (1979 Club, Grand Committee, Fellows).
 * Design: Elegant, classy, generous whitespace, no rounded corners.
 */
.donor-club-hero {
  padding: 140px 0 120px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donor-club-hero.tier-1 {
  background: linear-gradient(135deg, #8b7355 0%, #c4a962 50%, #a08c5a 100%);
}
.donor-club-hero.tier-2 {
  background: linear-gradient(135deg, #6b6e70 0%, #a8a9ad 50%, #7a7d80 100%);
}
.donor-club-hero.tier-3 {
  background: linear-gradient(135deg, #8b5a2b 0%, #cd7f32 50%, #a0652a 100%);
}
.donor-club-hero .container {
  position: relative;
  z-index: 2;
}
.donor-club-hero .lapel-badge {
  display: inline-block;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.25);
}
.donor-club-hero h1 {
  font-size: 3.75rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .donor-club-hero h1 {
    font-size: 2.75rem;
  }
}
.donor-club-hero .hero-tagline {
  font-size: 1.35rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.donor-club-hero .hero-pricing .price {
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.donor-club-hero .hero-pricing .period {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-left: 10px;
}

.donor-club-intro {
  padding: 100px 0;
  background: #fff;
}
.donor-club-intro .container {
  max-width: 750px;
}
.donor-club-intro .intro-content {
  text-align: center;
}
.donor-club-intro .intro-content p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #444;
  margin: 0 0 1.25rem;
}
.donor-club-intro .intro-content p:last-child {
  margin-bottom: 0;
}

.donor-club-benefits {
  padding: 100px 0 120px;
  background: #f5f7fa;
}
.donor-club-benefits .section-header {
  text-align: center;
  margin-bottom: 70px;
}
.donor-club-benefits .section-header h2 {
  font-size: 2.5rem;
  color: #0b3d59;
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.donor-club-benefits .section-header .section-subtitle {
  font-size: 1.15rem;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 70px;
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.benefit-item .benefit-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #2d7a4d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.benefit-item .benefit-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.lapel-pin-feature {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 50px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 600px) {
  .lapel-pin-feature {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
}
.lapel-pin-feature .pin-visual {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.lapel-pin-feature .pin-visual.gold {
  background: linear-gradient(135deg, #c4a962 0%, rgb(176.625, 146.25, 66.375) 100%);
}
.lapel-pin-feature .pin-visual.silver {
  background: linear-gradient(135deg, #a8a9ad 0%, rgb(128.6183431953, 130.0710059172, 135.8816568047) 100%);
}
.lapel-pin-feature .pin-visual.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, rgb(164, 101.6, 40) 100%);
}
.lapel-pin-feature .pin-info h3 {
  font-size: 1.4rem;
  color: #0b3d59;
  margin: 0 0 12px;
  font-weight: 600;
}
.lapel-pin-feature .pin-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.donor-club-pricing {
  padding: 100px 0 120px;
  background: #0b3d59;
}
.donor-club-pricing .pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.donor-club-pricing .pricing-header {
  padding: 50px 40px;
  background: #f5f7fa;
}
.donor-club-pricing .pricing-header h2 {
  font-size: 1.85rem;
  color: #0b3d59;
  margin: 0 0 20px;
  font-weight: 600;
}
.donor-club-pricing .pricing-header .pricing-amount .price {
  font-size: 3.75rem;
  font-weight: 700;
  color: #9a1b30;
  letter-spacing: -0.02em;
}
.donor-club-pricing .pricing-header .pricing-amount .period {
  font-size: 1.1rem;
  color: #666;
  margin-left: 6px;
}
.donor-club-pricing .pricing-header .annual-note {
  font-size: 0.95rem;
  color: #888;
  margin: 12px 0 0;
}
.donor-club-pricing .pricing-body {
  padding: 40px;
}
.donor-club-pricing .pricing-body > p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 30px;
}
.donor-club-pricing .pricing-body .btn-join {
  display: block;
  width: 100%;
  padding: 18px 28px;
  background: #9a1b30;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.donor-club-pricing .pricing-body .btn-join:hover {
  background: rgb(119.2861878453, 20.9138121547, 37.1801104972);
}
.donor-club-pricing .pricing-body .pricing-note {
  font-size: 0.9rem;
  color: #888;
  margin: 18px 0 0;
}

.donor-club-page.tier-1 .pricing-header {
  background: linear-gradient(135deg, rgb(237.7916666667, 229.9166666667, 209.2083333333) 0%, rgb(230.8263888889, 219.7638888889, 190.6736111111) 100%);
}
.donor-club-page.tier-2 .pricing-header {
  background: linear-gradient(135deg, rgb(220.5088757396, 220.9053254438, 222.4911242604) 0%, rgb(207.3816568047, 207.9289940828, 210.1183431953) 100%);
}
.donor-club-page.tier-3 .pricing-header {
  background: linear-gradient(135deg, rgb(240, 216.6, 193.5) 0%, rgb(235, 203.8, 173) 100%);
}

.donor-club-quote {
  padding: 120px 0;
  background: #faf8f4;
}
.donor-club-quote .container {
  max-width: 750px;
}
.donor-club-quote blockquote {
  margin: 0;
  text-align: center;
}
.donor-club-quote blockquote p {
  font-size: 1.65rem;
  font-style: italic;
  color: #0b3d59;
  line-height: 1.75;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}
.donor-club-quote blockquote p::before {
  content: '"';
}
.donor-club-quote blockquote p::after {
  content: '"';
}
.donor-club-quote blockquote cite {
  font-size: 1.1rem;
  font-style: normal;
  color: #666;
  letter-spacing: 0.02em;
}
.donor-club-quote blockquote cite::before {
  content: "— ";
}

.other-tiers {
  padding: 100px 0 120px;
  background: #fff;
}
.other-tiers .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.other-tiers .section-header h2 {
  font-size: 1.85rem;
  color: #0b3d59;
  margin: 0;
  font-weight: 600;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .tiers-grid {
    grid-template-columns: 1fr;
  }
}

.tier-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: #f5f7fa;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.tier-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background: rgb(234.8, 238.84, 244.9);
}
.tier-card:hover h3 {
  color: #9a1b30;
}
.tier-card .tier-pin {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}
.tier-card .tier-pin.gold {
  background: linear-gradient(135deg, #c4a962 0%, rgb(176.625, 146.25, 66.375) 100%);
}
.tier-card .tier-pin.silver {
  background: linear-gradient(135deg, #a8a9ad 0%, rgb(128.6183431953, 130.0710059172, 135.8816568047) 100%);
}
.tier-card .tier-pin.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, rgb(164, 101.6, 40) 100%);
}
.tier-card h3 {
  font-size: 1.2rem;
  color: #0b3d59;
  margin: 0 0 6px;
  font-weight: 600;
}
.tier-card .tier-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: #9a1b30;
  margin: 0;
}
.tier-card .tier-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
}

.donor-club-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/**
 * Alumni Network Page Styles
 *
 * Design: Elegant, classy, generous whitespace, no rounded corners.
 *
 * @package ThatcherCentre
 */
.alumni-page {
  background: #fff;
}

.alumni-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.alumni-page .page-breadcrumb-section {
  background: #f5f7fa;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}
.alumni-page .page-breadcrumb-section .breadcrumb {
  font-size: 14px;
  color: #666;
}
.alumni-page .page-breadcrumb-section .breadcrumb a {
  color: #0b3d59;
  text-decoration: none;
}
.alumni-page .page-breadcrumb-section .breadcrumb a:hover {
  text-decoration: underline;
}
.alumni-page .page-breadcrumb-section .breadcrumb .separator {
  margin: 0 10px;
  color: #999;
}
.alumni-page .page-breadcrumb-section .breadcrumb .current {
  color: #9a1b30;
}

.alumni-intro {
  padding: 100px 0;
  text-align: center;
  background: #fff;
}
.alumni-intro .intro-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #0b3d59;
  max-width: 800px;
  margin: 0 auto 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.alumni-intro .intro-subtext {
  font-size: 1.15rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.alumni-intro .intro-cta {
  margin-top: 40px;
}
.alumni-intro .intro-cta .btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.alumni-intro .intro-cta .btn-primary {
  background: #9a1b30;
  color: #fff;
}
.alumni-intro .intro-cta .btn-primary:hover {
  background: rgb(119.2861878453, 20.9138121547, 37.1801104972);
}

.alumni-programmes {
  padding: 80px 0 100px;
  background: #f5f7fa;
}
.alumni-programmes .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.alumni-programmes .section-header h2 {
  font-size: 2.25rem;
  color: #0b3d59;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.alumni-programmes .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .programmes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .programmes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.programme-card {
  background: #fff;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #e8eaed;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.programme-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-color: #d0d4da;
}
.programme-card h3 {
  font-size: 1.2rem;
  color: #0b3d59;
  margin: 0 0 16px;
  font-weight: 600;
  line-height: 1.35;
}
.programme-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
  margin: 0 0 20px;
  flex-grow: 1;
}
.programme-card .card-link {
  font-size: 0.9rem;
  color: #9a1b30;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: auto;
  transition: color 0.2s ease;
}
.programme-card .card-link:hover {
  color: rgb(110.6077348066, 19.3922651934, 34.4751381215);
  text-decoration: underline;
}

.alumni-benefits {
  padding: 80px 0 100px;
  background: #fff;
}
.alumni-benefits .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.alumni-benefits .section-header h2 {
  font-size: 2.25rem;
  color: #0b3d59;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.alumni-benefits .section-cta {
  text-align: center;
  margin-top: 50px;
}
.alumni-benefits .section-cta .btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  color: #0b3d59;
  border: 2px solid #0b3d59;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.alumni-benefits .section-cta .btn-secondary:hover {
  background: #0b3d59;
  color: #fff;
}

.alumni-page .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .alumni-page .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .alumni-page .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.alumni-page .benefit-item {
  background: #f5f7fa;
  padding: 32px 24px;
  text-align: left;
  border: 1px solid #e8eaed;
  border-top: 4px solid #c4a962;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.alumni-page .benefit-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-color: #d0d4da;
  border-top-color: #9a1b30;
}
.alumni-page .benefit-item .benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #0b3d59;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.alumni-page .benefit-item .benefit-content h3 {
  font-size: 1.05rem;
  color: #0b3d59;
  margin: 0 0 10px;
  font-weight: 600;
  line-height: 1.35;
}
.alumni-page .benefit-item .benefit-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.alumni-page .benefit-item h4 {
  font-size: 1.05rem;
  color: #0b3d59;
  margin: 0 0 10px;
  font-weight: 600;
}
.alumni-page .benefit-item > p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.alumni-quote {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b3d59 0%, #1a1a2e 100%);
  text-align: center;
}
.alumni-quote blockquote {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.alumni-quote blockquote::before {
  content: "“";
  font-size: 80px;
  color: rgba(196, 169, 98, 0.25);
  position: absolute;
  top: -20px;
  left: 0;
  line-height: 1;
}
.alumni-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.alumni-quote blockquote cite {
  font-size: 1rem;
  color: #c4a962;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .alumni-quote {
    padding: 60px 0;
  }
  .alumni-quote blockquote {
    padding: 0 20px;
  }
  .alumni-quote blockquote::before {
    font-size: 50px;
    position: static;
    display: block;
    margin-bottom: 12px;
  }
  .alumni-quote blockquote p {
    font-size: 1.25rem;
  }
}

.alumni-cta {
  padding: 80px 0;
  background: #faf8f4;
  text-align: center;
}
.alumni-cta h2 {
  font-size: 2rem;
  color: #0b3d59;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.alumni-cta p {
  font-size: 1.1rem;
  color: #555;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.cta-buttons .btn-primary {
  background: #9a1b30;
  color: #fff;
}
.cta-buttons .btn-primary:hover {
  background: rgb(119.2861878453, 20.9138121547, 37.1801104972);
}
.cta-buttons .btn-secondary {
  background: transparent;
  color: #0b3d59;
  border: 2px solid #0b3d59;
}
.cta-buttons .btn-secondary:hover {
  background: #0b3d59;
  color: #fff;
}

/**
 * Young Thatcherites Page Styles
 *
 * Design: Elegant, classy, generous whitespace, no rounded corners.
 * Maintains energy and vibrancy while being refined.
 *
 * @package ThatcherCentre
 */
.young-thatcherites-page {
  background: #fff;
}

.young-thatcherites-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.young-thatcherites-page .page-breadcrumb-section {
  background: #f5f7fa;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}
.young-thatcherites-page .page-breadcrumb-section .breadcrumb {
  font-size: 14px;
  color: #666;
}
.young-thatcherites-page .page-breadcrumb-section .breadcrumb a {
  color: #0b3d59;
  text-decoration: none;
}
.young-thatcherites-page .page-breadcrumb-section .breadcrumb a:hover {
  text-decoration: underline;
}
.young-thatcherites-page .page-breadcrumb-section .breadcrumb .separator {
  margin: 0 10px;
  color: #999;
}
.young-thatcherites-page .page-breadcrumb-section .breadcrumb .current {
  color: #9a1b30;
}

.young-thatcherites-intro {
  padding: 100px 0;
  text-align: center;
  background: #fff;
}
.young-thatcherites-intro .age-badge {
  display: inline-block;
  background: #9a1b30;
  color: #fff;
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.young-thatcherites-intro .intro-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #0b3d59;
  max-width: 800px;
  margin: 0 auto 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.young-thatcherites-intro .intro-subtext {
  font-size: 1.15rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.young-thatcherites-intro .intro-cta {
  margin-top: 40px;
}
.young-thatcherites-intro .intro-cta .btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.young-thatcherites-intro .intro-cta .btn-primary {
  background: #9a1b30;
  color: #fff;
}
.young-thatcherites-intro .intro-cta .btn-primary:hover {
  background: rgb(119.2861878453, 20.9138121547, 37.1801104972);
}

.young-thatcherites-activities {
  padding: 80px 0 100px;
  background: #f5f7fa;
}
.young-thatcherites-activities .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.young-thatcherites-activities .section-header h2 {
  font-size: 2.25rem;
  color: #0b3d59;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.young-thatcherites-activities .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.activity-card {
  background: #fff;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #e8eaed;
  border-left: 4px solid #c4a962;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.activity-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-left-color: #9a1b30;
}
.activity-card .activity-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #0b3d59;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.activity-card h3 {
  font-size: 1.15rem;
  color: #0b3d59;
  margin: 0 0 14px;
  font-weight: 600;
  line-height: 1.35;
}
.activity-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.young-thatcherites-benefits {
  padding: 80px 0 100px;
  background: #fff;
}
.young-thatcherites-benefits .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.young-thatcherites-benefits .section-header h2 {
  font-size: 2.25rem;
  color: #0b3d59;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.young-thatcherites-benefits .section-cta {
  text-align: center;
  margin-top: 50px;
}
.young-thatcherites-benefits .section-cta .btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  color: #0b3d59;
  border: 2px solid #0b3d59;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.young-thatcherites-benefits .section-cta .btn-secondary:hover {
  background: #0b3d59;
  color: #fff;
}

.benefits-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .benefits-list {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f5f7fa;
  padding: 20px 24px;
  border-left: 3px solid #c4a962;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item:hover {
  border-left-color: #9a1b30;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.benefit-item .benefit-marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: #9a1b30;
  margin-top: 8px;
}
.benefit-item .benefit-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.young-thatcherites-quote {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #0b3d59 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.young-thatcherites-quote::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(154, 27, 48, 0.1) 0%, transparent 70%);
}
.young-thatcherites-quote::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 169, 98, 0.08) 0%, transparent 70%);
}
.young-thatcherites-quote blockquote {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.young-thatcherites-quote blockquote::before {
  content: "“";
  font-size: 100px;
  color: rgba(196, 169, 98, 0.3);
  position: absolute;
  top: -30px;
  left: 0;
  line-height: 1;
}
.young-thatcherites-quote blockquote p {
  font-size: 1.65rem;
  font-style: italic;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}
.young-thatcherites-quote blockquote cite {
  font-size: 1.1rem;
  color: #c4a962;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .young-thatcherites-quote {
    padding: 100px 0;
  }
  .young-thatcherites-quote blockquote {
    padding: 0 24px;
  }
  .young-thatcherites-quote blockquote::before {
    font-size: 60px;
    position: static;
    display: block;
    margin-bottom: 16px;
  }
  .young-thatcherites-quote blockquote p {
    font-size: 1.35rem;
  }
}

.young-thatcherites-cta {
  padding: 120px 0;
  background: #faf8f4;
  text-align: center;
}
.young-thatcherites-cta h2 {
  font-size: 2.25rem;
  color: #0b3d59;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.young-thatcherites-cta p {
  font-size: 1.15rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.yt-cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.yt-cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.yt-cta-buttons .btn-primary {
  background: #9a1b30;
  color: #fff;
}
.yt-cta-buttons .btn-primary:hover {
  background: rgb(119.2861878453, 20.9138121547, 37.1801104972);
}
.yt-cta-buttons .btn-secondary {
  background: transparent;
  color: #0b3d59;
  border: 2px solid #0b3d59;
}
.yt-cta-buttons .btn-secondary:hover {
  background: #0b3d59;
  color: #fff;
}

.yt-social {
  margin-top: 50px;
}
.yt-social span {
  display: block;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 18px;
}

.yt-social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.yt-social-links a {
  width: 48px;
  height: 48px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b3d59;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}
.yt-social-links a i {
  font-size: 20px;
}
.yt-social-links a:hover {
  background: #9a1b30;
  color: #fff;
  border-color: #9a1b30;
}

/**
 * Quotes Library Page Styles
 *
 * Pinterest-inspired masonry grid with share modal.
 */
.quotes-hero {
  background: linear-gradient(135deg, #0b3d59 0%, rgb(5.39, 29.89, 43.61) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.quotes-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 15px;
  letter-spacing: -0.02em;
}
.quotes-hero .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin: 0;
  font-style: italic;
}

.quotes-intro {
  padding: 50px 0 30px;
  background: #fff;
}
.quotes-intro .intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
}
.quotes-intro .intro-text p {
  margin: 0 0 15px;
}
.quotes-intro .intro-text p:last-child {
  margin-bottom: 0;
}

.quotes-filter-bar {
  background: #f8f9fa;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.quotes-filter-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.quotes-filter-bar .filter-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.quotes-filter-bar .filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quotes-filter-bar .filter-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}
.quotes-filter-bar .quote-filter-select {
  padding: 8px 32px 8px 12px;
  font-size: 0.9375rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  cursor: pointer;
  min-width: 160px;
}
.quotes-filter-bar .quote-filter-select:focus {
  outline: none;
  border-color: #0b3d59;
  box-shadow: 0 0 0 3px rgba(11, 61, 89, 0.15);
}
.quotes-filter-bar .quote-search-input {
  padding: 8px 12px 8px 36px;
  font-size: 0.9375rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  min-width: 220px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E") no-repeat left 10px center;
}
.quotes-filter-bar .quote-search-input:focus {
  outline: none;
  border-color: #0b3d59;
  box-shadow: 0 0 0 3px rgba(11, 61, 89, 0.15);
}
.quotes-filter-bar .quote-search-input::placeholder {
  color: #999;
}
.quotes-filter-bar .quote-count {
  font-size: 0.9375rem;
  color: #666;
  font-weight: 500;
}
.quotes-filter-bar .quote-count #quote-count-number {
  font-weight: 700;
  color: #0b3d59;
}

.quotes-grid-section {
  padding: 50px 0 80px;
  background: #fff;
}

.quotes-masonry-grid {
  column-count: 2;
  column-gap: 30px;
}
@media (max-width: 768px) {
  .quotes-masonry-grid {
    column-count: 1;
    column-gap: 20px;
  }
}

.quote-card {
  break-inside: avoid;
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.quote-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.quote-card.hidden {
  display: none;
}
@media (max-width: 768px) {
  .quote-card {
    margin-bottom: 20px;
  }
}

.quote-card-inner {
  padding: 35px;
}
@media (max-width: 768px) {
  .quote-card-inner {
    padding: 24px;
  }
}

.quote-text {
  margin: 0 0 24px;
  font-size: 1.25rem;
  line-height: 1.65;
  color: #1a1a1a;
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
}
.quote-text::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(11, 61, 89, 0.12);
  position: absolute;
  top: -25px;
  left: -15px;
  line-height: 1;
}
.quote-text p {
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .quote-text {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  .quote-text::before {
    font-size: 4rem;
    top: -20px;
    left: -10px;
  }
}

.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 15px;
  border-left: 3px solid #c9a227;
}

.attribution-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1a1a1a;
  font-style: normal;
}
.attribution-name .about-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9a1b30;
  display: block;
  margin-bottom: 2px;
}

.attribution-context {
  font-size: 0.8125rem;
  color: #666;
  font-style: italic;
}

.quote-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.topic-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #f8f9fa;
  color: #0b3d59;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.quote-actions {
  display: flex;
  border-top: 1px solid #e0e0e0;
}

.quote-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666;
  transition: all 0.2s ease;
}
.quote-action-btn:hover {
  background: #f8f9fa;
  color: #0b3d59;
}
.quote-action-btn:first-child {
  border-right: 1px solid #e0e0e0;
}
.quote-action-btn svg {
  flex-shrink: 0;
}

.no-quotes-message {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}
.no-quotes-message p {
  font-size: 1.125rem;
  margin: 0 0 20px;
}
.no-quotes-message .btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.no-quotes-message .btn-secondary {
  background: #f8f9fa;
  color: #0b3d59;
  border: 1px solid #e0e0e0;
}
.no-quotes-message .btn-secondary:hover {
  background: rgb(233.125, 236.25, 239.375);
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quote-modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-container {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border-radius: 12px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
}
.modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

.modal-close {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #666;
  transition: all 0.2s;
  border-radius: 50%;
}
.modal-close:hover {
  color: #1a1a1a;
  background: rgba(0, 0, 0, 0.05);
}

.modal-body {
  padding: 28px;
  display: flex;
  gap: 28px;
}
@media (max-width: 700px) {
  .modal-body {
    flex-direction: column;
    padding: 20px;
    gap: 24px;
  }
}

.modal-preview-section {
  flex: 1.2;
  min-width: 0;
}

.quote-preview-card {
  aspect-ratio: 1/1;
  background: #0b3d59;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, aspect-ratio 0.3s ease;
}
.quote-preview-card.format-square {
  aspect-ratio: 1/1;
}
.quote-preview-card.format-portrait {
  aspect-ratio: 4/5;
}
.quote-preview-card.format-wide {
  aspect-ratio: 16/9;
}

.preview-card-inner {
  padding: 40px 35px;
  text-align: center;
  color: #fff;
  max-width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.preview-quote-text {
  font-size: 1.25rem;
  line-height: 1.55;
  margin: 0 0 24px;
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
  max-width: 100%;
  word-break: break-word;
}
.preview-quote-text::before, .preview-quote-text::after {
  content: '"';
  font-family: Georgia, serif;
}
@media (max-width: 700px) {
  .preview-quote-text {
    font-size: 1.125rem;
  }
}

.preview-attribution {
  font-size: 1rem;
  opacity: 0.9;
  font-style: italic;
}
@media (max-width: 700px) {
  .preview-attribution {
    font-size: 0.9375rem;
  }
}

.preview-watermark {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.modal-options-section {
  flex: 0 0 220px;
}
@media (max-width: 700px) {
  .modal-options-section {
    flex: none;
  }
}

.option-group {
  margin-bottom: 28px;
}
.option-group:last-child {
  margin-bottom: 0;
}

.option-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.colour-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 700px) {
  .colour-options {
    grid-template-columns: repeat(6, 1fr);
  }
}

.colour-btn {
  width: 100%;
  aspect-ratio: 1;
  max-width: 52px;
  border: 3px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline-offset: 2px;
}
.colour-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.colour-btn.active {
  border-color: #c9a227;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.35);
  transform: scale(1.05);
}
@media (max-width: 700px) {
  .colour-btn {
    max-width: 44px;
  }
}

.format-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 700px) {
  .format-options {
    flex-direction: row;
    gap: 8px;
  }
}

.format-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.format-btn:hover {
  background: #f8f9fa;
  border-color: rgb(198.5, 198.5, 198.5);
}
.format-btn.active {
  background: rgba(11, 61, 89, 0.06);
  border-color: #0b3d59;
  box-shadow: 0 0 0 3px rgba(11, 61, 89, 0.1);
}
.format-btn .format-icon {
  width: 24px;
  height: 20px;
  border: 2px solid #1a1a1a;
  border-radius: 3px;
  flex-shrink: 0;
}
.format-btn .format-icon.square-icon {
  width: 20px;
  height: 20px;
}
.format-btn .format-icon.portrait-icon {
  width: 16px;
  height: 20px;
}
.format-btn .format-icon.wide-icon {
  width: 28px;
  height: 16px;
}
.format-btn .format-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
}
@media (max-width: 700px) {
  .format-btn {
    flex: 1;
    padding: 10px;
    justify-content: center;
  }
  .format-btn .format-label {
    display: none;
  }
  .format-btn .format-icon {
    margin: 0 auto;
  }
}

.modal-footer {
  padding: 24px 28px;
  border-top: 1px solid #e0e0e0;
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;
}
@media (max-width: 700px) {
  .modal-footer {
    padding: 20px;
  }
}

.share-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 700px) {
  .share-buttons {
    gap: 8px;
  }
}

.share-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.2s ease;
}
.share-btn.share-twitter {
  background: #000;
}
.share-btn.share-twitter:hover {
  background: #222;
  transform: translateY(-2px);
}
.share-btn.share-facebook {
  background: #1877f2;
}
.share-btn.share-facebook:hover {
  background: rgb(11.9983606557, 99.6786885246, 213.2016393443);
  transform: translateY(-2px);
}
.share-btn.share-linkedin {
  background: #0a66c2;
}
.share-btn.share-linkedin:hover {
  background: rgb(8, 81.6, 155.2);
  transform: translateY(-2px);
}
@media (max-width: 500px) {
  .share-btn span {
    display: none;
  }
}
@media (max-width: 700px) {
  .share-btn {
    padding: 12px 14px;
  }
}

.download-section {
  display: flex;
  gap: 12px;
}
@media (max-width: 700px) {
  .download-section {
    gap: 8px;
  }
}

.download-btn,
.copy-link-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 700px) {
  .download-btn,
  .copy-link-btn {
    padding: 14px 16px;
    font-size: 0.9375rem;
  }
}

.download-btn {
  background: #0b3d59;
  color: #fff;
}
.download-btn:hover {
  background: rgb(6.512, 36.112, 52.688);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 61, 89, 0.3);
}

.copy-link-btn {
  background: #fff;
  color: #1a1a1a;
  border: 2px solid #e0e0e0;
}
.copy-link-btn:hover {
  background: #f8f9fa;
  border-color: rgb(198.5, 198.5, 198.5);
  transform: translateY(-2px);
}

.quote-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1a;
  color: #fff;
  padding: 14px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  opacity: 0;
  transition: all 0.3s ease;
}
.quote-toast[hidden] {
  display: block;
  visibility: hidden;
}
.quote-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.quote-of-day-cta {
  background: linear-gradient(135deg, #0b3d59 0%, rgb(6.512, 36.112, 52.688) 100%);
  padding: 60px 0;
}
.quote-of-day-cta .cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .quote-of-day-cta .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}
.quote-of-day-cta .cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .quote-of-day-cta .cta-icon {
    margin: 0 auto;
  }
}
.quote-of-day-cta .cta-content h2 {
  color: #fff;
  font-size: 1.75rem;
  margin: 0 0 12px;
  font-weight: 700;
}
.quote-of-day-cta .cta-content .cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 600px;
}
@media (max-width: 900px) {
  .quote-of-day-cta .cta-content .cta-description {
    margin-left: auto;
    margin-right: auto;
  }
}
.quote-of-day-cta .cta-warning {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.5;
}
.quote-of-day-cta .cta-warning svg {
  flex-shrink: 0;
  color: #c9a227;
  margin-top: 2px;
}
.quote-of-day-cta .cta-warning span {
  opacity: 0.95;
}
@media (max-width: 900px) {
  .quote-of-day-cta .cta-warning {
    text-align: left;
  }
}
.quote-of-day-cta .cta-form {
  flex-shrink: 0;
  min-width: 320px;
}
@media (max-width: 900px) {
  .quote-of-day-cta .cta-form {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.quote-of-day-cta .qotd-form .form-row {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.quote-of-day-cta .qotd-form input[type=email] {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 1rem;
  min-width: 0;
}
.quote-of-day-cta .qotd-form input[type=email]::placeholder {
  color: #888;
}
.quote-of-day-cta .qotd-form input[type=email]:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #c9a227;
}
.quote-of-day-cta .qotd-form .qotd-submit {
  padding: 16px 28px;
  background: #c9a227;
  color: #1a1a1a;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.quote-of-day-cta .qotd-form .qotd-submit:hover {
  background: rgb(166.83, 134.46, 32.37);
}
.quote-of-day-cta .qotd-form .form-note {
  margin: 12px 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}
.quote-of-day-cta .qotd-form .form-note a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
.quote-of-day-cta .qotd-form .form-note a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .quotes-hero {
    padding: 60px 0;
  }
  .quotes-hero h1 {
    font-size: 2.25rem;
  }
  .quotes-filter-bar {
    position: relative;
  }
  .quotes-filter-bar .container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .quotes-filter-bar .filter-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .quotes-filter-bar .filter-group {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .quotes-filter-bar .filter-group label {
    font-size: 0.8125rem;
  }
  .quotes-filter-bar .quote-filter-select,
  .quotes-filter-bar .quote-search-input {
    width: 100%;
    min-width: auto;
    padding: 12px 36px 12px 14px;
    font-size: 1rem;
  }
  .quotes-filter-bar .quote-search-input {
    padding-left: 40px;
  }
  .quotes-filter-bar .quote-count {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
  }
}
@media (max-width: 400px) {
  .quotes-grid-section {
    padding: 30px 0 50px;
  }
  .quote-card-inner {
    padding: 20px;
  }
  .quote-text {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .quote-text::before {
    font-size: 3rem;
    top: -15px;
    left: -5px;
  }
  .download-section {
    flex-direction: column;
  }
  .share-buttons {
    flex-wrap: wrap;
  }
  .share-btn {
    min-width: calc(50% - 4px);
    flex: 0 0 calc(50% - 4px);
  }
  .share-btn:last-child {
    flex: 1;
  }
}
.freedom-festival-page section,
.event-page section {
  padding: var(--space-16) 0;
}

.event-page .page-breadcrumb-section {
  padding: var(--space-6) 0 var(--space-4);
}

.event-page .festival-hero {
  padding: var(--space-18) 0 var(--space-22);
}

.festival-hero {
  position: relative;
  background: linear-gradient(120deg, var(--color-navy-dark) 0%, var(--color-navy) 50%, var(--color-teal) 100%);
  color: var(--color-white);
  padding: var(--space-18) 0 var(--space-22);
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.festival-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 35%), linear-gradient(180deg, rgba(34, 56, 114, 0.82) 0%, rgba(27, 45, 93, 0.8) 40%, rgba(15.525, 25.875, 53.475, 0.7) 100%);
}

.festival-hero .container {
  position: relative;
  z-index: 1;
}

.festival-hero-content {
  max-width: 820px;
  display: grid;
  gap: var(--space-4);
}

.festival-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--font-size-xs);
  margin: 0 0 var(--space-2);
  color: rgba(255, 255, 255, 0.8);
}

.festival-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--color-white);
  margin: 0 0 var(--space-3);
}

.festival-meta {
  font-size: var(--font-size-md);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
}
.festival-meta .meta-divider {
  margin: 0 var(--space-2);
}

.festival-cta-group {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}

.festival-overview {
  padding: var(--space-16) 0;
}
.festival-overview h2 {
  margin: 0 0 var(--space-4);
}
.festival-overview .overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.event-overview-tabs {
  background: var(--color-white);
}

.event-overview-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.event-overview-tabs__button {
  appearance: none;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 0;
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.event-overview-tabs__button:hover, .event-overview-tabs__button:focus {
  border-color: var(--color-navy);
}
.event-overview-tabs__button.is-active {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.event-overview-tabs__panel {
  display: none;
}
.event-overview-tabs__panel.is-active {
  display: block;
}
.event-overview-tabs__panel p:last-child {
  margin-bottom: 0;
}

.event-newsfeed {
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-6);
}

.event-newsfeed__intro {
  color: var(--color-text-muted);
  margin: 0 0 var(--space-6);
}

.event-newsfeed__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.event-newsfeed__filters-label {
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
}

.event-newsfeed__filters-select {
  appearance: none;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-navy);
  padding: var(--space-2) var(--space-6) var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230b3d59' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.event-newsfeed__filters-select:focus {
  outline: 2px solid var(--color-navy);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .event-newsfeed__filters {
    flex-direction: column;
    align-items: stretch;
  }
  .event-newsfeed__filters-select {
    width: 100%;
  }
}
.event-newsfeed__share {
  border: 1px solid var(--color-border-light);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
  background: var(--color-gray-light);
}

.event-newsfeed__share-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  color: var(--color-navy);
}

.event-newsfeed__share-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.event-newsfeed__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-navy);
  text-decoration: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.event-newsfeed__share-btn:hover,
.event-newsfeed__share-btn:focus {
  border-color: var(--color-navy);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  color: var(--color-navy);
}

.event-newsfeed__share-btn:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 2px;
}

.event-newsfeed__share-btn.is-copied {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.event-newsfeed__icon {
  width: 18px;
  height: 18px;
  display: block;
}

.event-newsfeed__share-btn--small {
  width: 32px;
  height: 32px;
  box-shadow: none;
  border-color: var(--color-border-light);
}

.event-newsfeed__share-btn--small .event-newsfeed__icon {
  width: 14px;
  height: 14px;
}

.event-newsfeed__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-6);
}

.event-newsfeed__item {
  border: 1px solid var(--color-border);
  padding: var(--space-6);
  background: var(--color-white);
}

.event-newsfeed__embed {
  margin-top: var(--space-4);
  border: 1px solid var(--color-border-light);
  padding: var(--space-4);
  background: var(--color-gray-light);
}
.event-newsfeed__embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.event-newsfeed__gallery {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-3);
}

.event-newsfeed__gallery-item {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  background: var(--color-gray-light);
}

.event-newsfeed__gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.event-newsfeed__item.is-locked {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.event-newsfeed__header {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.event-newsfeed__type {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--font-size-xs);
  color: var(--color-teal);
}

.event-newsfeed__date {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.event-newsfeed__title {
  font-size: var(--font-size-lg);
  margin: 0 0 var(--space-4);
}

.event-newsfeed__actions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.event-newsfeed__like {
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-navy);
  padding: var(--space-1) var(--space-3);
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border-radius: 0;
}

.event-newsfeed__like.is-liked {
  border-color: var(--color-red);
  color: var(--color-red);
}

.event-newsfeed__like.is-popping .event-newsfeed__like-icon {
  animation: heart-pop 0.4s ease;
}

.event-newsfeed__like.is-exhausted {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

@keyframes heart-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
.event-newsfeed__paywall {
  margin-top: var(--space-4);
}

.event-newsfeed__paywall-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d2240 0%, #1a3a5c 40%, #0d2240 100%);
  border-radius: var(--radius-md, 6px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-newsfeed__paywall-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
}
.event-newsfeed__paywall-frame--gallery {
  aspect-ratio: 4/3;
}
.event-newsfeed__paywall-frame--document {
  aspect-ratio: 3/4;
  max-height: 320px;
}

.event-newsfeed__paywall-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
  padding: var(--space-6);
}

.event-newsfeed__paywall-lock {
  color: var(--color-gold);
  opacity: 0.9;
}

.event-newsfeed__paywall-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.event-newsfeed__paywall-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.event-newsfeed__paywall-play svg {
  width: 64px;
  height: 64px;
  color: rgba(255, 255, 255, 0.12);
}

.event-newsfeed__paywall-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-gray-light);
  border-radius: var(--radius-md, 6px);
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .event-newsfeed__paywall-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

.event-newsfeed__paywall-text {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  font-weight: 500;
  flex: 1;
  min-width: 0;
}

.event-newsfeed__paywall-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-3) var(--space-5);
  background: var(--color-navy);
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-md, 6px);
  white-space: nowrap;
  transition: background-color var(--transition-fast);
}
.event-newsfeed__paywall-btn:hover, .event-newsfeed__paywall-btn:focus {
  background: var(--color-navy-dark, #091728);
  color: var(--color-white);
}
.event-newsfeed__paywall-btn svg {
  flex-shrink: 0;
}

.event-newsfeed__paywall-login {
  margin: var(--space-3) 0 0;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-align: center;
}
.event-newsfeed__paywall-login a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.event-newsfeed__paywall-login a:hover, .event-newsfeed__paywall-login a:focus {
  color: var(--color-navy);
}

.event-newsfeed__locked {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted);
}

.event-newsfeed__cta {
  display: inline-block;
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  border-radius: 0;
}

.event-newsfeed__type--pdf {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.08em;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.65rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.event-newsfeed__pdf-link {
  display: inline-block;
  position: relative;
  max-width: 160px;
  margin-top: var(--space-4);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-newsfeed__pdf-link:hover, .event-newsfeed__pdf-link:focus {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.event-newsfeed__pdf-link:hover .event-newsfeed__pdf-overlay, .event-newsfeed__pdf-link:focus .event-newsfeed__pdf-overlay {
  opacity: 1;
}

.event-newsfeed__pdf-preview {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
}

.event-newsfeed__pdf-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 32, 63, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.event-newsfeed__pdf-overlay svg {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  flex: 0 0 32px;
  color: var(--color-white);
}

.event-newsfeed__toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 0;
}

.event-newsfeed__toast[hidden] {
  display: block;
  visibility: hidden;
}

.event-newsfeed__toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.event-newsfeed__cta-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 10000;
  background: var(--color-navy, #1b2a4a);
  color: #fff;
  padding: var(--space-4, 1rem) var(--space-6, 1.5rem);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: var(--space-4, 1rem);
  max-width: 540px;
  width: calc(100% - 2rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.event-newsfeed__cta-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.event-newsfeed__cta-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
.event-newsfeed__cta-banner a:hover, .event-newsfeed__cta-banner a:focus {
  text-decoration: none;
}

.event-newsfeed__cta-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.event-newsfeed__cta-banner-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
  opacity: 0.7;
}
.event-newsfeed__cta-banner-close:hover, .event-newsfeed__cta-banner-close:focus {
  opacity: 1;
}

.event-newsfeed__media {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--font-size-xs);
}

.event-newsfeed__source {
  margin: var(--space-3) 0 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.event-newsfeed__empty {
  border: 1px solid var(--color-border-light);
  padding: var(--space-6);
  background: var(--color-gray-light);
}

.event-newsfeed__empty--filter {
  margin-top: var(--space-4);
}

.event-newsfeed-subscribe {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-4) var(--space-5);
  align-items: start;
}

.event-newsfeed-subscribe__icon {
  grid-row: 1/2;
  grid-column: 1/2;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-newsfeed-subscribe__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.event-newsfeed-subscribe__content {
  grid-row: 1/2;
  grid-column: 2/3;
}

.event-newsfeed-subscribe__title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin: 0 0 var(--space-1);
  color: var(--color-white);
}

.event-newsfeed-subscribe__text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

.event-newsfeed-subscribe__form {
  grid-row: 2/3;
  grid-column: 1/3;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.event-newsfeed-subscribe__form.is-expanded .event-newsfeed-subscribe__extra {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  margin-top: var(--space-1);
}

.event-newsfeed-subscribe__fields {
  display: flex;
  gap: 0;
}

.event-newsfeed-subscribe__extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.event-newsfeed-subscribe__extra[hidden] {
  display: block;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
}

.event-newsfeed-subscribe__name-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.event-newsfeed-subscribe__field {
  display: flex;
}

.event-newsfeed-subscribe__input {
  flex: 1;
  min-width: 0;
  padding: var(--space-3) var(--space-4);
  border: 2px solid transparent;
  border-radius: 0;
  font-size: var(--font-size-sm);
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-navy);
  transition: border-color var(--transition-fast);
}
.event-newsfeed-subscribe__input::placeholder {
  color: var(--color-text-muted);
}
.event-newsfeed-subscribe__input:focus {
  outline: none;
  border-color: var(--color-teal);
}

.event-newsfeed-subscribe__button {
  flex-shrink: 0;
  padding: var(--space-3) var(--space-5);
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border: none;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-width: 120px;
}
.event-newsfeed-subscribe__button:hover, .event-newsfeed-subscribe__button:focus {
  background: rgb(166.83, 134.46, 32.37);
}
.event-newsfeed-subscribe__button:active {
  transform: translateY(1px);
}
.event-newsfeed-subscribe__button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.event-newsfeed-subscribe__button-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.event-newsfeed-subscribe__button-loading[hidden] {
  display: none !important;
}
.event-newsfeed-subscribe__button-loading svg {
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.event-newsfeed-subscribe__consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.95);
}
.event-newsfeed-subscribe__consent input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  margin: 0;
  position: relative;
  flex-shrink: 0;
}
.event-newsfeed-subscribe__consent input[type=checkbox]:checked {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.event-newsfeed-subscribe__consent input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--color-navy-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.event-newsfeed-subscribe__consent input[type=checkbox]:focus {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}
.event-newsfeed-subscribe__consent label {
  cursor: pointer;
  line-height: 1.4;
  color: var(--color-white);
}

.event-newsfeed-subscribe__status {
  padding: var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-white);
}
.event-newsfeed-subscribe__status.is-success {
  background: rgba(16, 185, 129, 0.2);
  border-left: 3px solid #10b981;
}
.event-newsfeed-subscribe__status.is-error {
  background: rgba(239, 68, 68, 0.25);
  border-left: 3px solid #ef4444;
}

.event-newsfeed-subscribe.is-subscribed .event-newsfeed-subscribe__form {
  display: none;
}
.event-newsfeed-subscribe.is-subscribed::after {
  content: attr(data-success-message);
  grid-row: 2/3;
  grid-column: 1/3;
  padding: var(--space-3);
  background: rgba(16, 185, 129, 0.15);
  border-left: 3px solid #10b981;
  font-size: var(--font-size-sm);
  color: var(--color-white);
}

@media (max-width: 600px) {
  .event-newsfeed-subscribe {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
  }
  .event-newsfeed-subscribe__icon {
    grid-row: 1/2;
    grid-column: 1/2;
    justify-self: center;
  }
  .event-newsfeed-subscribe__content {
    grid-row: 2/3;
    grid-column: 1/2;
  }
  .event-newsfeed-subscribe__form {
    grid-row: 3/4;
    grid-column: 1/2;
  }
  .event-newsfeed-subscribe__fields {
    flex-direction: column;
    gap: var(--space-2);
  }
  .event-newsfeed-subscribe__name-fields {
    grid-template-columns: 1fr;
  }
  .event-newsfeed-subscribe__button {
    width: 100%;
  }
  .event-newsfeed-subscribe__consent {
    justify-content: center;
    text-align: left;
  }
}
.topic-logo-card {
  margin-bottom: var(--space-4);
}
.topic-logo-card .topic-logo-link {
  display: block;
  transition: opacity 0.2s ease;
}
.topic-logo-card .topic-logo-link:hover, .topic-logo-card .topic-logo-link:focus {
  opacity: 0.85;
}
.topic-logo-card .topic-logo-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.overview-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.festival-sidebar-cta {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}
.festival-sidebar-cta h3 {
  margin: 0 0 var(--space-3);
  color: var(--color-white);
}
.festival-sidebar-cta p {
  margin: 0 0 var(--space-4);
  color: rgba(255, 255, 255, 0.9);
}
.festival-sidebar-cta .btn-primary {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-navy);
  font-weight: 700;
}
.festival-sidebar-cta .btn-primary:hover, .festival-sidebar-cta .btn-primary:focus {
  background-color: var(--color-gray-light);
  border-color: var(--color-gray-light);
  color: var(--color-navy-dark);
}

.festival-schedule {
  background: var(--color-gray-light);
  padding: var(--space-16) 0;
}
.festival-schedule h2 {
  margin: 0 0 var(--space-4);
}

.festival-speakers {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef2f7 100%);
}
.festival-speakers h2 {
  margin: 0 0 var(--space-4);
}

.festival-gallery {
  padding: var(--space-16) 0;
  background: var(--color-gray-light);
}
.festival-gallery h2 {
  margin-bottom: var(--space-2);
}

.gallery-strip {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-2) 0;
}

.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.festival-cta {
  background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
  padding: var(--space-16) 0;
}
.festival-cta h2 {
  margin: 0 0 var(--space-4);
  color: var(--color-white);
}
.festival-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-md);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.festival-cta .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.festival-cta .btn-primary {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-navy);
  font-weight: 700;
}
.festival-cta .btn-primary:hover, .festival-cta .btn-primary:focus {
  background-color: var(--color-gray-light);
  border-color: var(--color-gray-light);
  color: var(--color-navy-dark);
}
.festival-cta .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}
.festival-cta .btn-outline:hover, .festival-cta .btn-outline:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.festival-cta--no-sections {
  margin-top: var(--space-12);
  border-top: 1px solid var(--color-border);
  position: relative;
}
.festival-cta--no-sections::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-gold);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.venue-facts {
  margin: var(--space-4) 0 0;
  padding-left: var(--space-5);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.venue-note {
  margin-top: var(--space-4);
  padding: var(--space-3);
  background: var(--color-gray-light);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
}

.venue-map-embed {
  margin-top: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.venue-map-embed iframe {
  width: 100%;
  height: 200px;
  display: block;
}

@media (max-width: 960px) {
  .festival-hero {
    padding: var(--space-14) 0 var(--space-18);
    min-height: 480px;
  }
  .festival-hero-content {
    max-width: 100%;
    text-align: center;
    justify-items: center;
  }
  .festival-meta {
    justify-content: center;
  }
  .festival-cta-group {
    justify-content: center;
  }
  .festival-overview .overview-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .festival-hero {
    padding: var(--space-12) 0 var(--space-16);
    min-height: 420px;
  }
  .festival-title {
    font-size: clamp(2.1rem, 7vw, 2.6rem);
  }
  .festival-meta {
    font-size: var(--font-size-sm);
  }
  .festival-cta-group {
    flex-direction: column;
  }
  .gallery-item {
    flex: 0 0 75%;
  }
}
.event-video-playlist {
  margin: var(--space-10) 0;
}
.event-video-playlist .container {
  max-width: 1100px;
}
.event-video-playlist__header {
  margin-bottom: var(--space-6);
  text-align: center;
}
.event-video-playlist__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 0 0 var(--space-2);
}
.event-video-playlist__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  margin: 0;
  color: var(--color-navy);
}
.event-video-playlist__lede {
  max-width: 720px;
  margin: var(--space-3) auto 0;
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.6;
}
.event-video-playlist__embed {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  background: #000;
}
.event-video-playlist__embed iframe {
  display: block;
  width: 100%;
}
.event-video-playlist--inline .event-video-playlist__embed iframe {
  min-height: 420px;
}
.event-video-playlist--hero {
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  border-top: none;
}
.event-video-playlist--hero .container {
  max-width: 1400px;
  padding: 0;
}
.event-video-playlist--hero .event-video-playlist__header {
  display: none;
}
.event-video-playlist--hero .event-video-playlist__embed {
  border-radius: 0;
  box-shadow: none;
  background: #000;
}
.event-video-playlist--hero .event-video-playlist__embed iframe {
  min-height: 70vh;
  max-height: 720px;
}
@media (max-width: 768px) {
  .event-video-playlist--hero {
    padding: 0;
  }
  .event-video-playlist--hero .event-video-playlist__embed iframe {
    min-height: 56vh;
    max-height: 360px;
  }
}

.speaker-tile__photo-credit {
  margin: var(--space-1) 0 var(--space-2);
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  text-align: center;
}
.speaker-tile__photo-credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--color-border);
  text-underline-offset: 2px;
}
.speaker-tile__photo-credit a:hover, .speaker-tile__photo-credit a:focus {
  color: var(--color-navy);
  text-decoration-color: currentColor;
}

.festival-speakers__role-label {
  margin: var(--space-8) 0 var(--space-3);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.festival-speakers__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.speaker-tile {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.speaker-tile:hover, .speaker-tile:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.speaker-tile__media {
  display: block;
  aspect-ratio: 1/1;
  background: var(--color-gray-light);
  overflow: hidden;
}
.speaker-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.speaker-tile__body {
  padding: var(--space-4) var(--space-4) var(--space-5);
  text-align: center;
}
.speaker-tile__name {
  margin: 0 0 var(--space-1);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.25;
}
.speaker-tile__name a {
  color: var(--color-navy);
  text-decoration: none;
}
.speaker-tile__name a:hover, .speaker-tile__name a:focus {
  text-decoration: underline;
}
.speaker-tile__role {
  margin: 0 0 var(--space-1);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.speaker-tile__session {
  margin: var(--space-1) 0 0;
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-style: italic;
}

.event-header-compact {
  padding: var(--space-8) 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.event-header-compact__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
}
.event-header-compact__meta {
  margin: 0 0 var(--space-5);
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.5;
}
.event-header-compact__meta .meta-divider {
  margin: 0 var(--space-2);
  opacity: 0.6;
}
.event-header-compact__contact {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.youtube-subscribe-cta {
  padding: var(--space-8) 0 var(--space-10);
  background: var(--color-white);
}
.youtube-subscribe-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.04) 0%, rgba(34, 56, 114, 0.04) 100%);
  border: 1px solid var(--color-border);
  border-left: 4px solid #FF0000;
  border-radius: 4px;
}
.youtube-subscribe-cta__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.youtube-subscribe-cta__copy {
  flex: 1 1 320px;
  min-width: 0;
}
.youtube-subscribe-cta__title {
  margin: 0 0 var(--space-1);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}
.youtube-subscribe-cta__lede {
  margin: 0;
  color: var(--color-text);
  line-height: 1.55;
  font-size: 0.95rem;
}
.youtube-subscribe-cta__button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  flex: 0 0 auto;
  padding: var(--space-3) var(--space-5);
  background: #FF0000;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.youtube-subscribe-cta__button:hover, .youtube-subscribe-cta__button:focus {
  background: #c50000;
  transform: translateY(-1px);
  color: #fff;
}
.youtube-subscribe-cta__button svg {
  display: block;
}
@media (max-width: 640px) {
  .youtube-subscribe-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-5) var(--space-4);
  }
  .youtube-subscribe-cta__button {
    width: 100%;
    justify-content: center;
  }
}

.store-page {
  background: var(--color-cream);
}

.store-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0f2744 100%);
  color: var(--color-white);
  padding: var(--space-20) 0 var(--space-16);
  text-align: center;
  position: relative;
}
.store-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}
.store-hero .container {
  position: relative;
  z-index: 1;
}
.store-hero .section-label {
  color: var(--color-gold);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  display: block;
}
@media (max-width: 768px) {
  .store-hero {
    padding: var(--space-12) 0 var(--space-10);
  }
  .store-hero .section-label {
    font-size: var(--font-size-xs);
  }
}

.store-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 400;
  margin: var(--space-4) 0;
  line-height: 1.1;
  color: var(--color-white);
}

.store-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .store-subtitle {
    font-size: var(--font-size-base);
  }
}

.store-content {
  padding: var(--space-16) 0;
}
@media (max-width: 768px) {
  .store-content {
    padding: var(--space-10) 0;
  }
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-8);
}
.store-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
}
@media (max-width: 768px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}
@media (max-width: 480px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
}

.store-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.store-card:hover .store-card__image img {
  transform: scale(1.05);
}
.store-card__image {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}
.store-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.store-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0f2f5 0%, #e4e7eb 100%);
}
.store-card__image--placeholder svg {
  color: #b8c0cc;
  opacity: 0.6;
}
@media (max-width: 480px) {
  .store-card__image {
    aspect-ratio: 16/10;
  }
}
.store-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-2);
}
@media (max-width: 768px) {
  .store-card__body {
    padding: var(--space-4);
  }
}
.store-card__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}
.store-card__title a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.store-card__title a:hover {
  color: var(--color-teal);
}
@media (max-width: 768px) {
  .store-card__title {
    font-size: var(--font-size-base);
  }
}
.store-card__excerpt {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.store-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-gray-light);
}
@media (max-width: 768px) {
  .store-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }
  .store-card__footer .btn {
    width: 100%;
    text-align: center;
  }
}
.store-card__price {
  font-family: var(--font-serif);
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--color-navy);
}
@media (max-width: 768px) {
  .store-card__price {
    font-size: var(--font-size-lg);
  }
}
.store-card__out-of-stock {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-style: italic;
  background: var(--color-gray-light);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}

.store-empty {
  text-align: center;
  padding: var(--space-20) var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.store-empty svg {
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.store-empty h2 {
  font-family: var(--font-serif);
  font-size: var(--font-size-2xl);
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
}
.store-empty p {
  color: var(--color-text-muted);
  margin: 0 0 var(--space-8);
  line-height: 1.6;
}

.store-cta {
  padding: var(--space-16) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-light);
}
@media (max-width: 768px) {
  .store-cta {
    padding: var(--space-10) 0;
  }
}
.store-cta__content {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.store-cta__content h2 {
  font-family: var(--font-serif);
  font-size: var(--font-size-2xl);
  color: var(--color-navy);
  margin: 0 0 var(--space-4);
}
@media (max-width: 768px) {
  .store-cta__content h2 {
    font-size: var(--font-size-xl);
  }
}
.store-cta__content p {
  color: var(--color-text);
  margin: 0 0 var(--space-6);
  line-height: 1.6;
}
.store-cta__buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

.single-stock-item {
  background: var(--color-cream);
}

.stock-item-breadcrumb {
  padding: var(--space-4) 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
}

.stock-item-detail {
  padding: var(--space-10) 0;
}
@media (max-width: 768px) {
  .stock-item-detail {
    padding: var(--space-6) 0;
  }
}

.stock-item-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 992px) {
  .stock-item-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.stock-item__gallery {
  position: sticky;
  top: var(--space-6);
}
@media (max-width: 992px) {
  .stock-item__gallery {
    position: static;
  }
}

.stock-item__main-image {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.stock-item__main-image img {
  width: 100%;
  height: auto;
  display: block;
}
.stock-item__main-image--placeholder {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.stock-item__info {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .stock-item__info {
    padding: var(--space-5);
  }
}

.stock-item__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  color: var(--color-navy);
  margin: 0 0 var(--space-4);
  line-height: 1.2;
}

.stock-item__price-block {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-gray-light);
}

.stock-item__price {
  font-family: var(--font-serif);
  font-size: var(--font-size-3xl);
  font-weight: 600;
  color: var(--color-navy);
}

.stock-item__low-stock {
  font-size: var(--font-size-sm);
  color: var(--color-danger);
  background: rgba(220, 53, 69, 0.1);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
}

.stock-item__excerpt {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin: 0 0 var(--space-4);
  line-height: 1.6;
}

.stock-item__description {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.stock-item__description p:last-child {
  margin-bottom: 0;
}

.stock-item__sku {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-6);
}
.stock-item__sku .label {
  font-weight: 500;
}

.stock-item__actions {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
@media (max-width: 768px) {
  .stock-item__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.stock-item__quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 768px) {
  .stock-item__quantity {
    justify-content: center;
  }
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--color-gray-light);
  color: var(--color-navy);
  font-size: var(--font-size-lg);
  cursor: pointer;
  transition: background var(--transition-fast);
}
.qty-btn:hover {
  background: var(--color-gray);
}

.qty-input {
  width: 60px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: var(--font-size-base);
  font-weight: 500;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stock-item__add-btn {
  flex: 1;
  min-width: 180px;
}
@media (max-width: 768px) {
  .stock-item__add-btn {
    width: 100%;
  }
}

.stock-item__out-of-stock {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-weight: 500;
  margin: 0;
}

.stock-item__notify-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: var(--space-2) 0 0;
}

.stock-item__trust {
  display: flex;
  gap: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-gray-light);
}
@media (max-width: 768px) {
  .stock-item__trust {
    flex-direction: column;
    gap: var(--space-3);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.trust-item svg {
  color: var(--color-teal);
}

.stock-item-related {
  padding: var(--space-12) 0;
  background: var(--color-white);
}
@media (max-width: 768px) {
  .stock-item-related {
    padding: var(--space-8) 0;
  }
}
.stock-item-related .related-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-2xl);
  color: var(--color-navy);
  text-align: center;
  margin: 0 0 var(--space-8);
}

.stock-item-cta {
  padding: var(--space-8) 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.back-link:hover {
  color: var(--color-teal);
}
.back-link:hover svg {
  transform: translateX(-4px);
}
.back-link svg {
  transition: transform var(--transition-fast);
}

.checkout-page {
  --checkout-surface: #ffffff;
  --checkout-muted: #6b7280;
  --checkout-border: var(--color-border);
  --checkout-shadow: var(--shadow-sm);
  --checkout-shadow-strong: var(--shadow-md);
}
.checkout-page .checkout-hero {
  padding: var(--space-16) 0 var(--space-10);
  border-bottom: 1px solid var(--checkout-border);
  background: #f7f7f7;
}
.checkout-page .checkout-hero h1 {
  margin: 0 0 var(--space-3);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
}
.checkout-page .checkout-hero .lead {
  color: var(--checkout-muted);
  font-size: 1.05rem;
  max-width: 640px;
}
.checkout-page .checkout-content {
  padding: var(--space-16) 0 var(--space-20);
}
.checkout-page .checkout-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: stretch;
}
.checkout-page .checkout-section {
  background: var(--checkout-surface);
  border: 1px solid var(--checkout-border);
  padding: var(--space-8);
  box-shadow: var(--checkout-shadow);
}
.checkout-page .checkout-section h2 {
  margin: 0 0 var(--space-4);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.checkout-page .checkout-section .section-intro {
  margin: 0 0 var(--space-6);
  color: var(--checkout-muted);
}
.checkout-page .checkout-section--summary {
  order: 1;
}
.checkout-page .checkout-section--login {
  order: 2;
}
.checkout-page .checkout-section--supporter {
  order: 3;
}
.checkout-page .checkout-section--card {
  order: 4;
}
.checkout-page .summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--checkout-border);
}
.checkout-page .summary-header h2 {
  margin: 0;
}
.checkout-page .edit-basket-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--color-teal);
  text-decoration: none;
}
.checkout-page .edit-basket-link:hover {
  text-decoration: underline;
}
.checkout-page .cart-lines-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
}
.checkout-page .cart-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #eef1f5;
}
.checkout-page .cart-line:last-child {
  border-bottom: none;
}
.checkout-page .cart-line--upsell {
  font-size: 0.9rem;
  color: var(--checkout-muted);
}
.checkout-page .cart-line__thumb {
  width: 56px;
  height: 56px;
  border-radius: 0;
  overflow: hidden;
  background: #f4f6f8;
  flex-shrink: 0;
  border: 1px solid var(--checkout-border);
}
.checkout-page .cart-line__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-page .cart-line__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkout-page .cart-line__name {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.98rem;
}
.checkout-page .cart-line__sublabel,
.checkout-page .cart-line__qty-info {
  font-size: 0.8rem;
  color: var(--checkout-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-page .cart-line__price {
  font-weight: 700;
  color: var(--color-navy);
  white-space: nowrap;
}
.checkout-page .cart-line > .cart-line__name {
  flex: 1;
}
.checkout-page .cart-totals {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--checkout-border);
}
.checkout-page .cart-totals__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 1rem;
}
.checkout-page .cart-totals__row--total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  padding-top: 12px;
  margin-top: 8px;
  border-top: 2px solid var(--color-navy);
}
.checkout-page .cart-empty {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}
.checkout-page .cart-empty p {
  margin: 0 0 var(--space-4);
  color: var(--checkout-muted);
}
.checkout-page .pending-basket-notice {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  margin: 16px 0 24px;
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f9fb 100%);
  border-left: 4px solid var(--color-teal);
  border-radius: 0;
}
.checkout-page .pending-basket-notice__icon {
  flex-shrink: 0;
  color: var(--color-teal);
  padding-top: 2px;
}
.checkout-page .pending-basket-notice__content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-navy);
  font-size: 1rem;
}
.checkout-page .pending-basket-notice__content p {
  margin: 0;
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.5;
}
.checkout-page .loading-membership {
  padding: 24px;
  text-align: center;
  color: var(--checkout-muted);
  font-style: italic;
}
.checkout-page .checkout-section--login {
  background: #f8fafc;
}
.checkout-page .login-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkout-page .login-option-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #4a5568;
}
.checkout-page .login-form-wrapper {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--checkout-border);
}
.checkout-page .checkout-legal,
.checkout-page .checkout-secure {
  color: var(--checkout-muted);
  font-size: 0.85rem;
  margin-top: var(--space-4);
}
.checkout-page .payment-error,
.checkout-page .form-error {
  color: var(--color-red);
  margin-top: var(--space-4);
}
.checkout-page .btn-outline {
  background: transparent;
  border: 1px solid var(--color-teal);
  color: var(--color-teal);
  padding: 8px 16px;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.checkout-page .btn-outline:hover {
  background: var(--color-teal);
  color: white;
}
.checkout-page .btn-small {
  padding: 6px 12px;
  font-size: 0.85rem;
}

.home-section {
  padding: var(--space-16) 0;
}
@media (max-width: 768px) {
  .home-section {
    padding: var(--space-12) 0;
  }
}

.home-section.home-hero {
  padding: 0;
}

.home-compact-cta {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
  padding: var(--space-5) 0;
  background: linear-gradient(135deg, #223872 0%, #1b2d5d 100%);
  border-top: 3px solid #c9a227;
}
.home-compact-cta .compact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.home-compact-cta .compact-cta__message {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  margin: 0;
  flex: 1;
}
.home-compact-cta .compact-cta__buttons {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}
.home-compact-cta .compact-cta__btn {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .home-compact-cta {
    margin-top: -2rem;
    padding: var(--space-4) 0;
  }
  .home-compact-cta .compact-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .home-compact-cta .compact-cta__message {
    font-size: 1.25rem;
  }
}

.home-events {
  position: relative;
  z-index: 5;
  background: var(--color-white);
}

.home-events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
@media (max-width: 992px) {
  .home-events__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .home-events__grid {
    grid-template-columns: 1fr;
  }
}

.home-event-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.home-event-card__media {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.home-event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.home-event-card:hover .home-event-card__media img {
  transform: scale(1.05);
}

.home-event-card__body {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
}

.home-event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: var(--space-2) var(--space-3);
  background: #223872;
  border-radius: 4px;
  color: #ffffff;
  text-align: center;
  flex-shrink: 0;
  align-self: flex-start;
}

.home-event-card__day {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.home-event-card__month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.home-event-card__info {
  flex: 1;
  min-width: 0;
}

.home-event-card__type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00A5B8;
  margin-bottom: var(--space-1);
}

.home-event-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.home-event-card__title a {
  color: #223872;
  text-decoration: none;
}
.home-event-card__title a:hover {
  color: #00A5B8;
}

.home-event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.home-event-card__venue,
.home-event-card__time {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.875rem;
  color: #666666;
}
.home-event-card__venue svg,
.home-event-card__time svg {
  flex-shrink: 0;
  color: #00A5B8;
}

.home-event-card--cta {
  border: 2px dashed var(--color-border);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-event-card--cta:hover {
  transform: none;
  box-shadow: none;
  border-color: #00A5B8;
}

.home-event-card__body--cta {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-10) var(--space-6);
}
.home-event-card__body--cta .home-event-card__title {
  color: #223872;
  margin-bottom: var(--space-2);
}

.home-event-card__cta-text {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.home-events__empty {
  text-align: center;
  padding: var(--space-16) var(--space-6);
  max-width: 540px;
  margin: 0 auto var(--space-12);
}
.home-events__empty p {
  font-size: 1.25rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.home-news {
  background: var(--color-gray-light);
}

.home-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
@media (max-width: 992px) {
  .home-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .home-news__grid {
    grid-template-columns: 1fr;
  }
}

.home-newsletter {
  background: var(--color-navy);
  color: var(--color-white);
}
.home-newsletter .newsletter-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: center;
  text-align: center;
}
.home-newsletter .newsletter-title {
  color: var(--color-white);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-2xl);
}
.home-newsletter .newsletter-description {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  font-size: var(--font-size-lg);
}

.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 500px;
  width: 100%;
}
.newsletter-signup .form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.newsletter-signup .form-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}
.newsletter-signup .form-label .required {
  color: var(--color-gold);
}
.newsletter-signup .form-row--names {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease-out, opacity 0.35s ease-out;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.newsletter-signup .form-row--names.is-visible {
  max-height: 200px;
  opacity: 1;
}
.newsletter-signup input[type=email],
.newsletter-signup input[type=text] {
  padding: var(--space-3) var(--space-4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  background: var(--color-white);
  color: var(--color-gray-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.newsletter-signup input[type=email]::placeholder,
.newsletter-signup input[type=text]::placeholder {
  color: var(--color-gray-400);
}
.newsletter-signup input[type=email]:focus,
.newsletter-signup input[type=text]:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(var(--color-gold-rgb, 212, 175, 55), 0.25);
}
.newsletter-signup .form-field--submit {
  margin-top: var(--space-2);
}
.newsletter-signup .btn-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: 600;
}
.newsletter-signup .btn-subscribe .btn-text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.newsletter-signup .btn-subscribe .btn-icon {
  flex-shrink: 0;
}
.newsletter-signup .btn-subscribe.is-loading {
  cursor: wait;
  opacity: 0.8;
}
.newsletter-signup .btn-subscribe .btn-loading {
  display: inline-flex;
  align-items: center;
}
.newsletter-signup .btn-subscribe .btn-loading[hidden] {
  display: none !important;
}
.newsletter-signup .btn-subscribe .spinner {
  animation: spin 0.8s linear infinite;
}
.newsletter-signup .form-notice {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-align: center;
}

.newsletter-messages {
  min-height: 0;
}

.newsletter-message {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  animation: slideIn 0.3s ease-out;
}
.newsletter-message svg {
  flex-shrink: 0;
}
.newsletter-message--success {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.newsletter-message--error {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.home-news .home-news__grid {
  align-items: stretch;
  gap: var(--space-6);
}
.home-news .home-news__grid .news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.home-news .home-news__grid .news-card:hover, .home-news .home-news__grid .news-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.home-news .home-news__grid .news-card__media {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--color-gray-light);
  overflow: hidden;
}
.home-news .home-news__grid .news-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.home-news .home-news__grid .news-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  flex: 1 1 auto;
  min-height: 0;
}
.home-news .home-news__grid .news-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.25;
  color: var(--color-navy);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news .home-news__grid .news-card__title a {
  color: inherit;
  text-decoration: none;
}
.home-news .home-news__grid .news-card__title a:hover, .home-news .home-news__grid .news-card__title a:focus {
  color: var(--color-gold);
}
.home-news .home-news__grid .news-card__excerpt {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news .home-news__grid .news-card__date {
  margin-top: auto;
  padding-top: var(--space-3);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-border-light);
}

/**
 * Contact Page Styles
 *
 * @package Thatcher
 */
.contact-page {
  background: #f8fafc;
}

.contact-hero {
  position: relative;
  padding: 6rem 0;
  background: #0b3d59;
  color: #fff;
  text-align: center;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 61, 89, 0.95) 0%, rgba(5.39, 29.89, 43.61, 0.95) 100%);
}
.contact-hero .container {
  position: relative;
  z-index: 1;
}
.contact-hero-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.contact-section {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .contact-section {
    padding: 5rem 0;
  }
}

.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 3rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-messages {
  min-height: 0;
}

.contact-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.contact-message svg {
  flex-shrink: 0;
}
.contact-message--success {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.2);
}
.contact-message--error {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.form-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .form-row--two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}
.form-field--submit {
  margin-top: 0.5rem;
}

.form-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
}
.form-label .required {
  color: #dc2626;
}
.form-label .optional {
  font-weight: 400;
  color: #64748b;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=date],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.5;
  color: #1e293b;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form input[type=tel]::placeholder,
.contact-form input[type=date]::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=date]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}
.contact-form input[type=text]:disabled,
.contact-form input[type=email]:disabled,
.contact-form input[type=tel]:disabled,
.contact-form input[type=date]:disabled,
.contact-form select:disabled,
.contact-form textarea:disabled {
  background: #f8fafc;
  cursor: not-allowed;
}
.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 0.75rem) center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}
.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.checkbox-label input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #0d9488;
}
.checkbox-label .checkbox-text {
  font-size: 0.9375rem;
  color: #1e293b;
  line-height: 1.5;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #dc2626;
}
.form-field.has-error input:focus,
.form-field.has-error select:focus,
.form-field.has-error textarea:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.field-error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 0.25rem;
}

.conditional-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conditional-field {
  background: rgba(13, 148, 136, 0.05);
  padding: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: #0d9488;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-submit:hover:not(:disabled) {
  background: rgb(10.9409937888, 124.5590062112, 114.4596273292);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.btn-submit:active:not(:disabled) {
  transform: translateY(0);
}
.btn-submit:disabled, .btn-submit.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.btn-submit .spinner {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-notice {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
}
.form-notice a {
  color: #0d9488;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-notice a:hover {
  text-decoration: none;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .contact-card {
    padding: 2rem;
  }
}

.contact-card-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b3d59;
}

.contact-address {
  font-size: 1rem;
  font-style: normal;
  line-height: 1.75;
  color: #1e293b;
}

.contact-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f8fafc;
  color: #1e293b;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-link svg {
  width: 22px;
  height: 22px;
}
.social-link:hover {
  transform: translateY(-2px);
}
.social-link--facebook:hover {
  background: #1877f2;
  color: #fff;
}
.social-link--instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.social-link--x:hover {
  background: #000;
  color: #fff;
}
.social-link--tiktok:hover {
  background: #000;
  color: #fff;
}

/**
 * Thank You Page Styles
 *
 * Context-aware thank you page for form submissions.
 *
 * @package Thatcher
 */
.thank-you-page {
  background: #f8fafc;
}

.thank-you-section {
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .thank-you-section {
    padding: 8rem 0;
  }
}

.thank-you-container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.05) 100%);
  border-radius: 50%;
  color: #0d9488;
  animation: pulse-icon 2s ease-in-out infinite;
}
.thank-you-icon svg {
  width: 60px;
  height: 60px;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.2);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(13, 148, 136, 0);
  }
}
.thank-you-title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #0b3d59;
  line-height: 1.2;
}

.thank-you-subtitle {
  margin: 0 0 2rem;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #0d9488;
}

.thank-you-message {
  margin-bottom: 2.5rem;
}
.thank-you-message p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #1e293b;
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 480px) {
  .thank-you-actions {
    flex-direction: row;
    justify-content: center;
  }
}
.thank-you-actions .btn {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.thank-you-actions .btn-primary {
  background: #0d9488;
  color: #fff;
  border: 2px solid #0d9488;
}
.thank-you-actions .btn-primary:hover {
  background: rgb(10.9409937888, 124.5590062112, 114.4596273292);
  border-color: rgb(10.9409937888, 124.5590062112, 114.4596273292);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.thank-you-actions .btn-outline {
  background: transparent;
  color: #0b3d59;
  border: 2px solid #0b3d59;
}
.thank-you-actions .btn-outline:hover {
  background: #0b3d59;
  color: #fff;
  transform: translateY(-2px);
}

.thank-you-newsletter {
  padding: 2.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.thank-you-newsletter h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b3d59;
}
.thank-you-newsletter p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: #64748b;
}
.thank-you-newsletter .newsletter-form {
  max-width: 400px;
  margin: 0 auto;
}

.page-header-simple {
  padding: var(--space-16) 0 var(--space-12);
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light, #1e3a5f) 100%);
  text-align: center;
}
.page-header-simple .page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
  letter-spacing: 0.02em;
}

.default-page .page-content-section {
  padding: var(--space-16) 0;
  background: var(--color-white);
}
.default-page .page-content-section .container {
  max-width: 900px;
}
.default-page .page-article .entry-content,
.default-page .page-article .prose {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
}
.default-page .page-article .entry-content h2,
.default-page .page-article .prose h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 400;
  color: var(--color-navy);
  margin: var(--space-12) 0 var(--space-6);
  letter-spacing: 0.02em;
}
.default-page .page-article .entry-content h2:first-child,
.default-page .page-article .prose h2:first-child {
  margin-top: 0;
}
.default-page .page-article .entry-content h3,
.default-page .page-article .prose h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--color-navy);
  margin: var(--space-10) 0 var(--space-4);
}
.default-page .page-article .entry-content h4,
.default-page .page-article .prose h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin: var(--space-8) 0 var(--space-3);
}
.default-page .page-article .entry-content p,
.default-page .page-article .prose p {
  margin: 0 0 var(--space-6);
}
.default-page .page-article .entry-content p:last-child,
.default-page .page-article .prose p:last-child {
  margin-bottom: 0;
}
.default-page .page-article .entry-content ul,
.default-page .page-article .entry-content ol,
.default-page .page-article .prose ul,
.default-page .page-article .prose ol {
  margin: var(--space-6) 0;
  padding-left: var(--space-8);
}
.default-page .page-article .entry-content ul li,
.default-page .page-article .entry-content ol li,
.default-page .page-article .prose ul li,
.default-page .page-article .prose ol li {
  margin-bottom: var(--space-3);
}
.default-page .page-article .entry-content a,
.default-page .page-article .prose a {
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}
.default-page .page-article .entry-content a:hover,
.default-page .page-article .prose a:hover {
  color: var(--color-accent, #c4a000);
}
.default-page .page-article .entry-content blockquote,
.default-page .page-article .prose blockquote {
  margin: var(--space-10) 0;
  padding: var(--space-6) var(--space-8);
  border-left: 4px solid var(--color-navy);
  background: #f8f9fa;
  font-style: italic;
}
.default-page .page-article .entry-content blockquote p,
.default-page .page-article .prose blockquote p {
  margin: 0;
}
.default-page .page-article .entry-content blockquote cite,
.default-page .page-article .prose blockquote cite {
  display: block;
  margin-top: var(--space-4);
  font-size: 0.9rem;
  font-style: normal;
  color: #666;
}
.default-page .page-article .entry-content img,
.default-page .page-article .prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md, 8px);
  margin: var(--space-8) 0;
}
.default-page .page-article .entry-content .aligncenter,
.default-page .page-article .prose .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.default-page .page-article .entry-content .alignleft,
.default-page .page-article .prose .alignleft {
  float: left;
  margin-right: var(--space-6);
  margin-bottom: var(--space-4);
}
.default-page .page-article .entry-content .alignright,
.default-page .page-article .prose .alignright {
  float: right;
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
}
.default-page .page-article .entry-content .wp-caption,
.default-page .page-article .prose .wp-caption {
  max-width: 100%;
  margin: var(--space-8) 0;
}
.default-page .page-article .entry-content .wp-caption img,
.default-page .page-article .prose .wp-caption img {
  margin: 0;
}
.default-page .page-article .entry-content .wp-caption-text,
.default-page .page-article .prose .wp-caption-text {
  font-size: 0.875rem;
  color: #666;
  margin-top: var(--space-2);
  text-align: center;
}
.default-page .entry-footer {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid #eee;
}
.default-page .entry-footer .edit-link a {
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
}
.default-page .entry-footer .edit-link a:hover {
  color: var(--color-navy);
}

.page-cta-donor-clubs {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}
.page-cta-donor-clubs .container {
  max-width: 1100px;
  text-align: center;
}
.page-cta-donor-clubs h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #333;
  margin: 0 0 var(--space-4);
  letter-spacing: 0.02em;
}
.page-cta-donor-clubs > .container > p {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto var(--space-12);
  line-height: 1.8;
}
.page-cta-donor-clubs .donor-clubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
.page-cta-donor-clubs .donor-club-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
}
.page-cta-donor-clubs .donor-club-card:hover {
  border-color: var(--color-navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.page-cta-donor-clubs .donor-club-card:hover .club-arrow {
  transform: translateX(4px);
}
.page-cta-donor-clubs .donor-club-card.tier-1 {
  border-color: #d4af37;
}
.page-cta-donor-clubs .donor-club-card.tier-1 .club-badge {
  background: linear-gradient(135deg, #d4af37, #f5d45d);
  color: #333;
}
.page-cta-donor-clubs .donor-club-card.tier-2 {
  border-color: #c0c0c0;
}
.page-cta-donor-clubs .donor-club-card.tier-2 .club-badge {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
  color: #333;
}
.page-cta-donor-clubs .donor-club-card.tier-3 {
  border-color: #cd7f32;
}
.page-cta-donor-clubs .donor-club-card.tier-3 .club-badge {
  background: linear-gradient(135deg, #cd7f32, #e4a861);
  color: #fff;
}
.page-cta-donor-clubs .donor-club-card .club-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full, 9999px);
  margin-bottom: var(--space-4);
}
.page-cta-donor-clubs .donor-club-card h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
}
.page-cta-donor-clubs .donor-club-card .club-price .price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}
.page-cta-donor-clubs .donor-club-card .club-price .period {
  font-size: 0.875rem;
  color: #666;
  margin-left: var(--space-1);
}
.page-cta-donor-clubs .donor-club-card .club-arrow {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--color-navy);
  transition: transform var(--transition-fast);
}
.page-cta-donor-clubs .cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.page-cta-newsletter {
  padding: var(--space-16) 0;
  background: var(--color-navy);
  color: var(--color-white);
}
.page-cta-newsletter .container {
  max-width: 1100px;
}
.page-cta-newsletter .page-cta-newsletter-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 768px) {
  .page-cta-newsletter .page-cta-newsletter-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
}
.page-cta-newsletter .page-cta-newsletter-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 var(--space-4);
}
.page-cta-newsletter .page-cta-newsletter-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.7;
}
.page-cta-newsletter .page-cta-newsletter-form .newsletter-form {
  max-width: 100%;
}
.page-cta-newsletter h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 400;
  color: var(--color-white);
  margin: 0 0 var(--space-4);
}
.page-cta-newsletter > .container > p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--space-8);
  line-height: 1.7;
}

.page-cta-events {
  padding: var(--space-16) 0;
  background: #f8f9fa;
}
.page-cta-events .container {
  max-width: 900px;
  text-align: center;
}
.page-cta-events h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 400;
  color: #333;
  margin: 0 0 var(--space-4);
}
.page-cta-events > .container > p {
  font-size: 1.05rem;
  color: #666;
  margin: 0 0 var(--space-10);
  line-height: 1.7;
}
.page-cta-events .events-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.page-cta-events .event-preview-card {
  display: block;
  padding: var(--space-5);
  background: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-sm, 4px);
  text-decoration: none;
  text-align: left;
  transition: all var(--transition-fast);
}
.page-cta-events .event-preview-card:hover {
  border-color: var(--color-navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.page-cta-events .event-preview-card .event-date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent, #c4a000);
  margin-bottom: var(--space-2);
}
.page-cta-events .event-preview-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.page-cta-custom {
  position: relative;
  padding: var(--space-20) 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color-navy);
}
.page-cta-custom .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.page-cta-custom .container {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
}
.page-cta-custom h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-white);
  margin: 0 0 var(--space-4);
}
.page-cta-custom p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-10);
  line-height: 1.8;
}
.page-cta-custom .cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.page-cta-custom .cta-buttons .btn-primary {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}
.page-cta-custom .cta-buttons .btn-primary:hover {
  background: transparent;
  color: var(--color-white);
}
.page-cta-custom .cta-buttons .btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.page-cta-custom .cta-buttons .btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

@media (max-width: 768px) {
  .page-header-simple {
    padding: var(--space-12) 0 var(--space-8);
  }
  .default-page .page-content-section {
    padding: var(--space-10) 0;
  }
  .page-cta-donor-clubs {
    padding: var(--space-14) 0;
  }
  .page-cta-donor-clubs .donor-clubs-grid {
    grid-template-columns: 1fr;
  }
  .page-cta-donor-clubs .donor-club-card .club-arrow {
    display: none;
  }
}
.error-404-page .error-hero {
  padding: var(--space-20) 0 var(--space-16);
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light, #1e3a5f) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.error-404-page .error-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.error-404-page .error-hero .container {
  position: relative;
  z-index: 1;
}
.error-404-page .error-hero .error-code {
  display: block;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  font-family: Georgia, "Times New Roman", serif;
}
.error-404-page .error-hero .error-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 400;
  color: var(--color-white);
  margin: 0 0 var(--space-6);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.error-404-page .error-hero .error-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.error-404-page .error-content {
  padding: var(--space-16) 0 var(--space-20);
  background: var(--color-white);
}
.error-404-page .error-content .container {
  max-width: 800px;
}
.error-404-page .error-actions {
  text-align: center;
  margin-bottom: var(--space-16);
}
.error-404-page .error-actions h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--color-navy);
  margin: 0 0 var(--space-8);
  letter-spacing: 0.02em;
}
.error-404-page .error-actions .action-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}
.error-404-page .error-actions .action-buttons .btn {
  padding: var(--space-3) var(--space-8);
  font-size: 1rem;
  border-radius: var(--radius-sm, 4px);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-weight: 500;
}
.error-404-page .error-actions .action-buttons .btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
  border: 2px solid var(--color-navy);
}
.error-404-page .error-actions .action-buttons .btn-primary:hover {
  background: var(--color-navy-dark, #1b2d5d);
  border-color: var(--color-navy-dark, #1b2d5d);
}
.error-404-page .error-actions .action-buttons .btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.error-404-page .error-actions .action-buttons .btn-secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
}
.error-404-page .error-actions .error-search p {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 var(--space-4);
}
.error-404-page .error-actions .error-search .search-form {
  display: flex;
  max-width: 450px;
  margin: 0 auto;
  gap: var(--space-2);
}
.error-404-page .error-actions .error-search .search-form .search-field {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm, 4px);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}
.error-404-page .error-actions .error-search .search-form .search-field:focus {
  outline: none;
  border-color: var(--color-navy);
}
.error-404-page .error-actions .error-search .search-form .search-submit {
  padding: var(--space-3) var(--space-6);
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm, 4px);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.error-404-page .error-actions .error-search .search-form .search-submit:hover {
  background: var(--color-navy-dark, #1b2d5d);
}
.error-404-page .error-suggestions {
  margin-bottom: var(--space-14);
}
.error-404-page .error-suggestions h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin: 0 0 var(--space-6);
}
.error-404-page .error-suggestions .suggestions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  list-style: none;
  padding: 0;
  margin: 0;
}
.error-404-page .error-suggestions .suggestions-list li {
  margin: 0;
}
.error-404-page .error-suggestions .suggestions-list a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-sm, 4px);
  text-decoration: none;
  transition: all var(--transition-fast);
}
.error-404-page .error-suggestions .suggestions-list a:hover {
  background: var(--color-white);
  border-color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.error-404-page .error-suggestions .suggestions-list .suggestion-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.error-404-page .error-suggestions .suggestions-list .suggestion-text {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}
.error-404-page .error-quote {
  text-align: center;
  padding: var(--space-10);
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md, 8px);
  margin: 0;
}
.error-404-page .error-quote p {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-style: italic;
  color: var(--color-navy);
  margin: 0 0 var(--space-4);
  line-height: 1.6;
  font-family: Georgia, "Times New Roman", serif;
}
.error-404-page .error-quote cite {
  font-size: 0.875rem;
  font-style: normal;
  color: #666;
  display: block;
}

@media (max-width: 768px) {
  .error-404-page .error-hero {
    padding: var(--space-14) 0 var(--space-10);
  }
  .error-404-page .error-hero .error-code {
    font-size: 7rem;
    margin-bottom: var(--space-2);
  }
  .error-404-page .error-content {
    padding: var(--space-10) 0 var(--space-14);
  }
  .error-404-page .error-actions {
    margin-bottom: var(--space-10);
  }
  .error-404-page .error-actions .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  .error-404-page .error-actions .action-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .error-404-page .error-actions .error-search .search-form {
    flex-direction: column;
  }
  .error-404-page .error-actions .error-search .search-form .search-submit {
    width: 100%;
  }
  .error-404-page .error-suggestions .suggestions-list {
    grid-template-columns: 1fr;
  }
  .error-404-page .error-quote {
    padding: var(--space-6);
  }
}

/*# sourceMappingURL=custom.css.map */
