/* ==========================================================================
   TCBA Shared Header Stylesheet
   Applied globally to all pages on tcba.or.th
   Stitch "Header Component - Desktop" — Heritage Modernism system
   ========================================================================== */

:root {
  --tcba-primary:    #253576;
  --tcba-primary-light: #3d509f;
  --tcba-primary-dk: #162153;
  --tcba-cyan:       #00b4d8;
  --tcba-gold:       #c5a059;
  --tcba-bg-nav:     rgba(255, 255, 255, 0.9);
  --tcba-text:       #253576;
  --tcba-header-muted: #454650;
  --tcba-border:     rgba(198, 197, 210, 0.35);
  --tcba-font:       'Noto Sans Thai', 'Inter', -apple-system, sans-serif;
  --tcba-transition-fast: 0.2s ease;
}

/* ================================================
   Navbar Layout
   ================================================ */
.tcba-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--tcba-bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tcba-border);
  transition: background-color var(--tcba-transition-fast), top var(--tcba-transition-fast), box-shadow var(--tcba-transition-fast), height var(--tcba-transition-fast);
  font-family: var(--tcba-font);
  height: 80px;
}

.tcba-navbar.tcba-scrolled {
  height: 64px;
  box-shadow: 0 2px 16px rgba(10, 15, 29, 0.06);
}

.tcba-navbar * {
  box-sizing: border-box;
}

.tcba-navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================
   Brand / Logo
   ================================================ */
.tcba-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.tcba-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.tcba-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--tcba-primary);
}

/* ================================================
   Navigation Menu & Links
   ================================================ */
.tcba-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.tcba-nav-link,
.tcba-nav-link:visited {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--tcba-header-muted);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--tcba-transition-fast), border-color var(--tcba-transition-fast);
}

.tcba-nav-link:hover,
.tcba-nav-link:visited:hover {
  color: var(--tcba-gold);
}

.tcba-nav-link.tcba-active,
.tcba-nav-link.tcba-active:visited {
  color: var(--tcba-primary);
  font-weight: 600;
  border-bottom-color: var(--tcba-gold);
}

/* ================================================
   Search Box
   ================================================ */
.tcba-nav-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #eceef4;
  border: 1px solid var(--tcba-border);
  border-radius: 8px;
  padding: 6px 12px;
  transition: border-color var(--tcba-transition-fast);
}

.tcba-nav-search:focus-within {
  border-color: var(--tcba-gold);
}

.tcba-nav-search svg {
  width: 16px;
  height: 16px;
  color: var(--tcba-header-muted);
  flex-shrink: 0;
}

.tcba-nav-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.85rem;
  width: 110px;
  color: var(--tcba-text);
  font-family: var(--tcba-font);
}

.tcba-nav-search input::placeholder {
  color: var(--tcba-header-muted);
  opacity: 0.7;
}

/* ================================================
   CTA Button
   ================================================ */
.tcba-btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 10px 24px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.tcba-btn-primary {
  background-color: var(--tcba-primary);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(37, 53, 118, 0.2);
}

.tcba-btn-primary:hover {
  background-color: var(--tcba-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 53, 118, 0.3);
  color: #ffffff;
}

.tcba-nav-cta {
  padding: 8px 20px;
  font-size: 0.95rem;
}

/* ================================================
   Mobile Menu Toggle Button
   ================================================ */
.tcba-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.tcba-menu-toggle .tcba-bar {
  width: 100%;
  height: 3px;
  background-color: var(--tcba-primary);
  border-radius: 3px;
  transition: all var(--tcba-transition-fast);
}

/* Open states for mobile navigation */
.tcba-menu-toggle.active .tcba-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.tcba-menu-toggle.active .tcba-bar:nth-child(2) {
  opacity: 0;
}

.tcba-menu-toggle.active .tcba-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================================================
   WordPress Specific Offsets & Layout Clears
   ================================================ */

/* Clear header height on body */
body:not(.befirm-event-page) {
  padding-top: 80px !important;
}

/* Offset for Admin Bar */
body.admin-bar .tcba-navbar {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .tcba-navbar {
    top: 46px;
  }
}

/* ================================================
   Mobile Responsive Navigation
   ================================================ */
@media (max-width: 768px) {
  .tcba-navbar,
  .tcba-navbar.tcba-scrolled {
    height: 72px;
  }

  body:not(.befirm-event-page) {
    padding-top: 72px !important;
  }

  .tcba-menu-toggle {
    display: flex;
  }

  .tcba-nav-search {
    display: none;
  }

  .tcba-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--tcba-bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
    border-top: 1px solid var(--tcba-border);
    border-bottom: 1px solid var(--tcba-border);
  }

  .tcba-nav-menu.open {
    display: flex;
  }

  .tcba-nav-link {
    padding: 12px 24px;
    width: 100%;
    display: block;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .tcba-nav-link.tcba-active {
    border-left-color: var(--tcba-gold);
    background-color: rgba(197, 160, 89, 0.08);
  }

  .tcba-nav-cta {
    margin: 8px 24px;
    width: calc(100% - 48px);
    text-align: center;
  }
}

/* ==========================================================================
   Stitch-Aligned Systematic Design Tokens & Layouts
   ========================================================================== */

:root {
  --tcba-sys-primary:          #253576;
  --tcba-sys-surface-bg:       #f7f9ff;
  --tcba-sys-surface-white:    #ffffff;
  --tcba-sys-primary-fixed:    #dde1ff;
  --tcba-sys-status-gold:      #c5a059;
  --tcba-sys-text-muted:       #454650;
  --tcba-sys-outline:          #c6c5d2;
  --tcba-sys-card-shadow:      0px 4px 20px rgba(10, 15, 29, 0.05);
}

.tcba-stitch-contact-page {
  font-family: 'Noto Sans Thai', 'Inter', sans-serif;
  color: #181c20;
}

/* Hero Header */
.tcba-contact-hero {
  position: relative;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--tcba-sys-primary);
  margin-bottom: 48px;
}

.tcba-contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(1);
}

.tcba-contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--tcba-sys-primary) 0%, rgba(37, 53, 118, 0.4) 100%);
}

.tcba-contact-hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  color: #ffffff;
}

.tcba-contact-hero-bar {
  width: 64px;
  height: 4px;
  background-color: var(--tcba-sys-status-gold);
  margin-bottom: 16px;
}

.tcba-contact-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #ffffff !important;
}

.tcba-contact-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 500;
}

/* Grid Layout */
.tcba-contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.tcba-contact-info-col {
  grid-column: span 5;
  min-width: 0;
}

.tcba-contact-form-col {
  grid-column: span 7;
  min-width: 0;
}

@media (max-width: 1024px) {
  .tcba-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tcba-contact-info-col,
  .tcba-contact-form-col {
    grid-column: span 1;
  }
}

/* Contact Info Items */
.tcba-contact-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 24px;
}

.tcba-contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tcba-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tcba-contact-icon-wrapper {
  background-color: var(--tcba-sys-primary-fixed);
  color: var(--tcba-sys-primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tcba-contact-icon-wrapper .material-symbols-outlined {
  font-size: 24px;
}

.tcba-contact-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--tcba-sys-status-gold);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tcba-contact-item-desc {
  font-size: 16px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.6;
  margin: 0;
}

.tcba-contact-item-desc a {
  color: inherit;
  text-decoration: none;
}

.tcba-contact-item-desc a:hover {
  text-decoration: underline;
  color: var(--tcba-sys-primary);
}

/* Social Media Follow */
.tcba-contact-follow {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(198, 197, 210, 0.3);
}

.tcba-contact-follow h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tcba-contact-social-row {
  display: flex;
  gap: 16px;
}

.tcba-contact-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--tcba-sys-outline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tcba-sys-primary);
  transition: all 0.2s ease;
  text-decoration: none;
}

.tcba-contact-social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.tcba-contact-social-btn:hover {
  background-color: var(--tcba-sys-primary);
  border-color: var(--tcba-sys-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Inquiry Form Card */
.tcba-contact-card {
  background-color: var(--tcba-sys-surface-white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(198, 197, 210, 0.3);
  box-shadow: var(--tcba-sys-card-shadow);
}

.tcba-contact-card h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 8px;
}

.tcba-contact-card p {
  font-size: 15px;
  color: var(--tcba-sys-text-muted);
  margin: 0 0 32px;
}

/* Form Layout */
.tcba-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .tcba-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.tcba-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.tcba-form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--tcba-sys-text-muted);
}

.tcba-form-input {
  width: 100%;
  background-color: #f1f3f9;
  border: none;
  border-bottom: 2px solid var(--tcba-sys-outline);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  color: #181c20;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  outline: none;
}

.tcba-form-input:focus {
  border-bottom-color: #00639b;
  background-color: #eef1f7;
}

textarea.tcba-form-input {
  resize: none;
  border-radius: 8px;
}

/* Checkbox */
.tcba-form-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.tcba-form-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--tcba-sys-outline);
  accent-color: var(--tcba-sys-primary);
  cursor: pointer;
}

.tcba-form-checkbox-label {
  font-size: 13px;
  color: var(--tcba-sys-text-muted);
  cursor: pointer;
  user-select: none;
}

/* Submit Button */
.tcba-form-submit {
  width: 100%;
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(37, 53, 118, 0.2);
}

.tcba-form-submit:hover {
  background-color: #1c2a66;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 53, 118, 0.3);
}

.tcba-form-submit:active {
  transform: scale(0.98);
}

/* Maps Section */
.tcba-contact-map {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(198, 197, 210, 0.3);
  box-shadow: var(--tcba-sys-card-shadow);
  margin-bottom: 24px;
}

.tcba-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Shared Main Content Container
   Keeps page content aligned with the 1280px/24px container already used by
   .tcba-navbar-container and .tcba-footer-container, instead of stretching
   full-bleed inside <main> (which has no width constraint of its own).
   ========================================================================== */
.tcba-stitch-events-page,
.tcba-stitch-news-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Gutenberg block pages (committee, about, contact, membership) reuse this
   wrapper inside each section instead of a page-level class — Gutenberg's own
   "constrained" layout centers it (contentSize) but adds no side padding of
   its own, so content sits flush against the invisible edge without this. */
.tcba-page-container {
  padding: 0 24px;
  box-sizing: border-box;
}

/* ==========================================================================
   Stitch-Aligned Events Page Layout Styles
   ========================================================================== */

/* Events Hero Section */
.tcba-events-hero {
  position: relative;
  width: 100%;
  background-color: var(--tcba-sys-primary);
  padding: 80px 40px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 48px;
}

.tcba-events-hero-radial {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background: radial-gradient(circle at center, var(--tcba-sys-status-gold) 0%, transparent 70%);
}

.tcba-events-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px;
  align-items: center;
}

.tcba-events-hero-content {
  grid-column: span 7;
  min-width: 0;
  color: #ffffff;
}

.tcba-events-hero-media {
  grid-column: span 5;
  min-width: 0;
  position: relative;
  z-index: 10;
}

@media (max-width: 1024px) {
  .tcba-events-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tcba-events-hero-content,
  .tcba-events-hero-media {
    grid-column: span 1;
  }
}

.tcba-badge-highlight {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 9999px;
  background-color: var(--tcba-sys-status-gold);
  color: var(--tcba-sys-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.tcba-events-hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.2;
  margin: 0 0 24px;
}

.tcba-events-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(241, 243, 249, 0.9);
  margin-bottom: 32px;
}

.tcba-events-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .tcba-events-meta-grid {
    grid-template-columns: 1fr;
  }
}

.tcba-meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}

.tcba-meta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tcba-sys-status-gold);
  flex-shrink: 0;
}

.tcba-meta-label {
  font-size: 12px;
  color: rgba(241, 243, 249, 0.7);
  margin: 0 0 4px;
}

.tcba-meta-value {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.tcba-events-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tcba-events-hero-btns .tcba-form-submit {
  width: auto;
  padding: 12px 32px;
}

.tcba-events-hero-btns .tcba-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  box-shadow: none;
}

.tcba-events-hero-btns .tcba-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.tcba-events-hero-img-wrap {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tcba-events-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tcba-events-hero-img-wrap:hover img {
  transform: scale(1.05);
}

/* Past Events Section */
.tcba-past-events {
  padding: 48px 0;
}

.tcba-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.tcba-section-title-wrap h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 8px;
}

.tcba-section-title-bar {
  width: 80px;
  height: 4px;
  background-color: var(--tcba-sys-status-gold);
}

.tcba-slider-nav {
  display: flex;
  gap: 16px;
}

.tcba-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--tcba-sys-outline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tcba-sys-primary);
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tcba-slider-btn:hover {
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
  border-color: var(--tcba-sys-primary);
}

.tcba-events-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

@media (max-width: 1024px) {
  .tcba-events-grid-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  /* !important needed: the news page renders this element with an inline
     style="grid-template-columns: repeat(2, 1fr)" which otherwise wins over
     this rule regardless of media query, keeping it stuck at 2 columns. */
  .tcba-events-grid-row {
    grid-template-columns: 1fr !important;
  }
}

/* These fixed desktop paddings (.tcba-events-hero 80px/40px,
   .tcba-cta-banner 48px, .tcba-cta-card 40px) never had a mobile reduction,
   so on a ~375px phone they alone ate 100px+ of width, squeezing all the
   hero/CTA text into a narrow column. */
@media (max-width: 640px) {
  .tcba-page-container {
    padding: 0 16px;
  }

  .tcba-events-hero {
    padding: 40px 20px;
    border-radius: 12px;
  }

  .tcba-events-hero-grid {
    gap: 32px;
  }

  .tcba-event-card-body {
    padding: 20px;
  }

  /* Drop the outer section's own card styling on mobile — .tcba-cta-card
     (inner) already draws a full card (background/border/radius), so the
     outer .tcba-cta-banner card behind it was just a redundant nested
     rounded-box visible peeking out around the inner card's corners. */
  .tcba-cta-banner {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }

  .tcba-cta-grid {
    gap: 24px;
  }

  .tcba-cta-card {
    padding: 24px;
  }

  /* Make the join CTA button more prominent: the inline width:auto/padding
     on this specific button (page-events.php) keeps it modest-sized. */
  .tcba-cta-card .tcba-form-submit {
    width: 100% !important;
    padding: 18px 24px !important;
    font-size: 18px !important;
    border-radius: 10px !important;
  }

  /* This 24px outer page padding stacks on top of every section's own
     padding above, which is what was leaving such a wide unused gutter on
     both sides of the CTA card / image collage in a ~390px viewport. */
  .tcba-stitch-events-page,
  .tcba-stitch-news-page {
    padding: 0 16px;
  }

  /* The 2-col staggered photo mosaic (small/large boxes offset with
     translateY, plus a 48px top offset on the right column) is a desktop
     art-direction layout — on mobile it just leaves images tiny inside a
     mostly-empty section. Drop to a single full-width column of larger
     photos so the space is actually used. */
  /* !important needed: the unconditional base rules for these classes sit
     later in this file (source order), so without it they'd win over this
     media query regardless of viewport width. */
  .tcba-cta-images {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .tcba-cta-img-col-right {
    padding-top: 0 !important;
  }

  .tcba-cta-img-box-sm,
  .tcba-cta-img-box-lg {
    height: 220px !important;
    transform: none !important;
  }
}

.tcba-event-grid-card {
  background-color: var(--tcba-sys-surface-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(198, 197, 210, 0.3);
  box-shadow: var(--tcba-sys-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tcba-event-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.tcba-event-card-media {
  height: 224px;
  position: relative;
  overflow: hidden;
}

.tcba-event-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.tcba-event-grid-card:hover .tcba-event-card-img {
  transform: scale(1.1);
}

.tcba-event-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
}

.tcba-event-card-body {
  padding: 24px;
}

.tcba-event-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tcba-sys-text-muted);
  margin-bottom: 12px;
}

.tcba-event-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--tcba-sys-primary);
  margin: 0 0 16px;
}

.tcba-event-card-body p {
  font-size: 15px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.tcba-event-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--tcba-sys-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: gap 0.2s ease;
  gap: 4px;
}

.tcba-event-card-link:hover {
  gap: 8px;
}

/* Join CTA Section */
.tcba-cta-banner {
  background-color: var(--tcba-sys-surface-bg);
  padding: 48px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid rgba(198, 197, 210, 0.3);
}

.tcba-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 1024px) {
  .tcba-cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.tcba-cta-card-wrap {
  position: relative;
}

.tcba-cta-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  z-index: 10;
}

.tcba-cta-card h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--tcba-sys-primary);
  margin: 0 0 16px;
}

.tcba-cta-card p {
  font-size: 16px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.tcba-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tcba-cta-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.tcba-cta-list-item .material-symbols-outlined {
  color: var(--tcba-sys-status-gold);
}

.tcba-cta-accent-circle {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 256px;
  height: 256px;
  background-color: rgba(37, 53, 118, 0.05);
  border-radius: 50%;
  filter: blur(40px);
}

.tcba-cta-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tcba-cta-img-col-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tcba-cta-img-col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 48px;
}

.tcba-cta-img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--tcba-sys-card-shadow);
}

.tcba-cta-img-box-sm {
  height: 192px;
}

.tcba-cta-img-box-lg {
  height: 256px;
}

.tcba-cta-img-box div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* ==========================================================================
   Stitch-Aligned News Page Layout Styles
   ========================================================================== */

/* News Layout Group */
.tcba-news-title-wrap {
  margin-bottom: 48px;
}

.tcba-news-title-wrap h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--tcba-sys-primary);
  margin: 0 0 8px;
}

.tcba-news-title-wrap p {
  font-size: 16px;
  color: var(--tcba-sys-text-muted);
}

/* Featured Hero Card */
.tcba-news-featured-card {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  margin-bottom: 64px;
  cursor: pointer;
}

.tcba-news-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tcba-news-featured-card:hover .tcba-news-featured-img {
  transform: scale(1.03);
}

.tcba-news-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 29, 0.9) 0%, rgba(10, 15, 29, 0.3) 60%, transparent 100%);
}

.tcba-news-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 48px;
  width: 100%;
  color: #ffffff;
  z-index: 10;
  box-sizing: border-box;
}

.tcba-news-featured-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--tcba-sys-status-gold);
  color: var(--tcba-sys-primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tcba-news-featured-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.3;
  margin: 0 0 16px;
}

.tcba-news-featured-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.tcba-news-featured-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* On mobile, stop overlaying the headline/meta on top of the photo (illegible
   against busy photos + cramped inside a fixed 480px box) — stack the image
   as a plain cover photo above a separate text block instead. */
@media (max-width: 640px) {
  .tcba-news-featured-card {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .tcba-news-featured-img {
    height: 220px;
  }

  .tcba-news-featured-overlay {
    display: none;
  }

  .tcba-news-featured-content {
    position: static;
    width: auto;
    padding: 20px;
    background-color: var(--tcba-sys-surface-white);
  }

  .tcba-news-featured-content h2 {
    color: var(--tcba-sys-primary) !important;
    font-size: 22px;
  }

  .tcba-news-featured-meta,
  .tcba-news-featured-meta span {
    color: var(--tcba-sys-text-muted);
  }
}

/* Main Grid & Left Feed */
.tcba-news-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.tcba-news-feed-col {
  grid-column: span 8;
  min-width: 0;
}

.tcba-news-sidebar-col {
  grid-column: span 4;
  min-width: 0;
}

@media (max-width: 1024px) {
  .tcba-news-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tcba-news-feed-col,
  .tcba-news-sidebar-col {
    grid-column: span 1;
  }
}

/* Category Filter Bar */
.tcba-news-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.tcba-news-filter-btn {
  background-color: var(--tcba-sys-surface-bg);
  border: 1px solid rgba(198, 197, 210, 0.3);
  color: var(--tcba-sys-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.tcba-news-filter-btn:hover {
  background-color: #e6e8ee;
  color: var(--tcba-sys-primary);
}

.tcba-news-filter-btn.active {
  background-color: var(--tcba-sys-primary);
  border-color: var(--tcba-sys-primary);
  color: #ffffff;
}

/* News Article Items */
.tcba-news-post-card {
  background-color: var(--tcba-sys-surface-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(198, 197, 210, 0.3);
  box-shadow: var(--tcba-sys-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tcba-news-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.tcba-news-post-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.tcba-news-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tcba-news-post-card:hover .tcba-news-post-media img {
  transform: scale(1.05);
}

.tcba-news-post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tcba-news-post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tcba-news-post-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--tcba-sys-status-gold);
  text-transform: uppercase;
}

.tcba-news-post-date {
  font-size: 12px;
  color: var(--tcba-sys-text-muted);
}

.tcba-news-post-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  line-height: 1.4;
  margin: 0 0 12px;
}

.tcba-news-post-body p {
  font-size: 15px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.tcba-news-post-link {
  display: inline-flex;
  align-items: center;
  color: var(--tcba-sys-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  gap: 4px;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.tcba-news-post-link:hover {
  gap: 8px;
}

/* Pagination */
.tcba-news-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.tcba-page-btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(198, 197, 210, 0.3);
  background: var(--tcba-sys-surface-white);
  color: var(--tcba-sys-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tcba-page-btn:hover {
  background-color: var(--tcba-sys-surface-bg);
  color: var(--tcba-sys-primary);
}

.tcba-page-btn.active {
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
  border-color: var(--tcba-sys-primary);
}

/* Sidebar Widgets */
.tcba-widget-newsletter {
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.tcba-widget-newsletter h4 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 0 12px;
}

.tcba-widget-newsletter p {
  font-size: 14px;
  color: rgba(241, 243, 249, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.tcba-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tcba-newsletter-input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.tcba-newsletter-input:focus {
  border-color: var(--tcba-sys-status-gold);
}

.tcba-widget-card {
  background-color: var(--tcba-sys-surface-white);
  border: 1px solid rgba(198, 197, 210, 0.3);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--tcba-sys-card-shadow);
  box-sizing: border-box;
}

.tcba-widget-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 24px;
}

.tcba-trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tcba-tag-link {
  background-color: var(--tcba-sys-surface-bg);
  color: var(--tcba-sys-text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tcba-tag-link:hover {
  background-color: var(--tcba-sys-primary-fixed);
  color: var(--tcba-sys-primary);
}

/* Sidebar Events */
.tcba-widget-event-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  cursor: pointer;
}

.tcba-widget-event-date {
  width: 56px;
  height: 56px;
  background-color: var(--tcba-sys-surface-bg);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.tcba-widget-event-item:hover .tcba-widget-event-date {
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
}

.tcba-widget-event-day {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.tcba-widget-event-month {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}

.tcba-widget-event-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 4px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.tcba-widget-event-item:hover .tcba-widget-event-info h5 {
  color: var(--tcba-sys-status-gold);
}

.tcba-widget-event-desc {
  font-size: 12px;
  color: var(--tcba-sys-text-muted);
  margin: 0;
}

/* ==========================================================================
   Stitch-Aligned Membership Page Layout Styles
   ========================================================================== */

/* Hero Section */
.tcba-membership-hero {
  padding: 120px 0 80px;
  text-align: center;
}

.tcba-membership-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.tcba-membership-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tcba-sys-status-gold);
  display: block;
  margin-bottom: 16px;
}

.tcba-membership-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--tcba-sys-primary);
  line-height: 1.2;
  margin: 0 0 24px;
}

.tcba-membership-hero p {
  font-size: 18px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Section Header */
.tcba-section-heading {
  margin-bottom: 48px;
}

.tcba-section-heading h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 8px;
}

.tcba-section-heading-bar {
  width: 80px;
  height: 4px;
  background-color: var(--tcba-sys-status-gold);
  border-radius: 2px;
}

/* Benefits Bento Grid */
.tcba-bento-section {
  padding: 80px 0;
  background-color: #f1f3f9;
}

.tcba-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.tcba-bento-col-8 { grid-column: span 8; }
.tcba-bento-col-4 { grid-column: span 4; }

@media (max-width: 1024px) {
  .tcba-bento-col-8,
  .tcba-bento-col-4 {
    grid-column: span 12;
  }
}

.tcba-bento-card {
  background-color: var(--tcba-sys-surface-white);
  border: 1px solid rgba(198, 197, 210, 0.3);
  border-radius: 12px;
  padding: 40px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  box-shadow: var(--tcba-sys-card-shadow);
}

.tcba-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 30, 96, 0.08);
}

.tcba-bento-card-dark {
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.tcba-bento-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.tcba-bento-icon-wrap.light { background-color: rgba(37, 53, 118, 0.1); }
.tcba-bento-icon-wrap.dark  { background-color: rgba(255, 255, 255, 0.2); }
.tcba-bento-icon-wrap.gold  { background-color: rgba(197, 160, 89, 0.1); }
.tcba-bento-icon-wrap.blue  { background-color: rgba(0, 99, 155, 0.1); }

.tcba-bento-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 12px;
}

.tcba-bento-card-dark h3 {
  color: #ffffff !important;
}

.tcba-bento-card p {
  font-size: 15px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.6;
  margin: 0;
}

.tcba-bento-card-dark p {
  color: rgba(241, 243, 249, 0.75);
}

.tcba-bento-card-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.tcba-bento-card-content { flex: 1; }

.tcba-bento-card-media {
  flex: 1;
  height: 256px;
  border-radius: 8px;
  overflow: hidden;
}

.tcba-bento-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcba-bento-card-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.tcba-bento-card-two-col > div:not(:first-child) {
  border-left: 1px solid rgba(198, 197, 210, 0.3);
  padding-left: 32px;
}

.tcba-bento-watermark {
  position: absolute;
  bottom: -32px;
  right: -32px;
  opacity: 0.08;
  font-size: 160px;
  line-height: 1;
  pointer-events: none;
}

/* Pledge Section */
.tcba-pledge-section {
  padding: 96px 0;
}

.tcba-pledge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .tcba-pledge-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.tcba-pledge-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 40px;
}

.tcba-pledge-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.tcba-pledge-num {
  font-size: 48px;
  font-weight: 700;
  color: rgba(197, 160, 89, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.tcba-pledge-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 8px;
}

.tcba-pledge-content p {
  font-size: 15px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.6;
  margin: 0;
}

.tcba-pledge-image-wrap {
  position: relative;
}

.tcba-pledge-img-frame {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.tcba-pledge-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcba-pledge-quote-card {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background-color: var(--tcba-sys-status-gold);
  color: #ffffff;
  padding: 28px 32px;
  border-radius: 12px;
  max-width: 280px;
  box-shadow: 0 16px 40px rgba(197, 160, 89, 0.3);
}

.tcba-pledge-quote-card p {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  color: #ffffff !important;
}

/* Pricing Section */
.tcba-pricing-section {
  padding: 96px 0;
  background-color: var(--tcba-sys-primary);
  position: relative;
  overflow: hidden;
}

.tcba-pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.tcba-pricing-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 0 16px;
}

.tcba-pricing-header p {
  font-size: 16px;
  color: rgba(241, 243, 249, 0.7);
  max-width: 560px;
  margin: 0 auto;
}

.tcba-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .tcba-pricing-grid { grid-template-columns: 1fr; }
}

.tcba-pricing-card {
  background-color: var(--tcba-sys-surface-white);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.tcba-pricing-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tcba-pricing-card-premium {
  border: 2px solid var(--tcba-sys-status-gold);
  position: relative;
  overflow: hidden;
}

.tcba-pricing-popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--tcba-sys-status-gold);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 12px;
}

.tcba-plan-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.tcba-plan-badge-standard {
  background-color: #eceef4;
  color: var(--tcba-sys-text-muted);
}

.tcba-plan-badge-premium {
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--tcba-sys-status-gold);
}

.tcba-pricing-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 8px;
}

.tcba-price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.tcba-price-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--tcba-sys-primary);
}

.tcba-price-unit {
  font-size: 14px;
  color: var(--tcba-sys-text-muted);
}

.tcba-pricing-desc {
  font-size: 13px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  min-height: 60px;
}

.tcba-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  width: 100%;
  text-align: left;
}

.tcba-pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--tcba-sys-on-surface);
  padding: 8px 0;
  border-bottom: 1px solid rgba(198, 197, 210, 0.2);
}

.tcba-pricing-features li:last-child { border-bottom: none; }

.tcba-feature-icon-standard {
  color: #00639b;
  font-size: 18px;
}

.tcba-feature-icon-premium {
  color: var(--tcba-sys-status-gold);
  font-size: 18px;
}

.tcba-pricing-btn {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.2s ease;
}

.tcba-pricing-btn-standard {
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
}

.tcba-pricing-btn-standard:hover { opacity: 0.88; }

.tcba-pricing-btn-premium {
  background-color: var(--tcba-sys-status-gold);
  color: #ffffff;
}

.tcba-pricing-btn-premium:hover { opacity: 0.88; }

@media (max-width: 768px) {
  .tcba-bento-card-row { flex-direction: column; }
  .tcba-bento-card-two-col { grid-template-columns: 1fr; }
  .tcba-bento-card-two-col > div:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(198, 197, 210, 0.3);
    padding-left: 0;
    padding-top: 24px;
  }
  .tcba-membership-hero h1 { font-size: 36px; }
  .tcba-pledge-quote-card { position: static; margin-top: 24px; max-width: 100%; }
}





/* ==========================================================================
   Stitch-Aligned About Us (Redesign) Page Styles
   ========================================================================== */

/* Hero Section — Full Viewport */
.tcba-about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tcba-about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tcba-about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.tcba-about-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.tcba-about-hero-inner {
  max-width: 780px;
}

.tcba-about-established-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(197, 160, 89, 0.18);
  color: var(--tcba-sys-status-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(197, 160, 89, 0.35);
  margin-bottom: 24px;
}

.tcba-about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 24px;
}

.tcba-about-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 40px;
}

.tcba-about-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.tcba-about-hero-cta:hover { opacity: 0.88; }

/* Mission & Values Bento Grid */
.tcba-about-mission-section {
  padding: 96px 0;
}

.tcba-about-mission-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* Mission text card (8-col) */
.tcba-mission-text-card {
  grid-column: span 8;
  background-color: var(--tcba-sys-surface-white);
  border: 1px solid rgba(198, 197, 210, 0.3);
  border-radius: 12px;
  padding: 48px;
  box-shadow: var(--tcba-sys-card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tcba-mission-text-card h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 24px;
}

.tcba-mission-text-card p {
  font-size: 17px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Value stat cards (4-col) */
.tcba-value-card-navy {
  grid-column: span 4;
  background-color: var(--tcba-sys-primary);
  border-radius: 12px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(10, 30, 96, 0.2);
}

.tcba-value-card-navy .material-symbols-outlined {
  font-size: 64px;
  color: var(--tcba-sys-status-gold);
  margin-bottom: 24px;
}

.tcba-value-card-navy h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
}

.tcba-value-card-navy p {
  font-size: 14px;
  color: rgba(241, 243, 249, 0.75);
  margin: 0;
}

.tcba-value-card-gold {
  grid-column: span 4;
  background-color: var(--tcba-sys-status-gold);
  border-radius: 12px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25);
}

.tcba-value-card-gold .material-symbols-outlined {
  font-size: 64px;
  color: var(--tcba-sys-primary);
  margin-bottom: 24px;
}

.tcba-value-card-gold h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 8px;
}

.tcba-value-card-gold p {
  font-size: 14px;
  color: rgba(10, 30, 96, 0.75);
  margin: 0;
}

/* Unity photo card (8-col) */
.tcba-unity-card {
  grid-column: span 8;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 300px;
}

.tcba-unity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcba-unity-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(37, 53, 118, 0.82) 0%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 48px;
}

.tcba-unity-card-overlay h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px;
}

.tcba-unity-card-overlay p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

@media (max-width: 1024px) {
  .tcba-mission-text-card,
  .tcba-value-card-navy,
  .tcba-value-card-gold,
  .tcba-unity-card { grid-column: span 12; }
  .tcba-unity-card { min-height: 260px; }
}

/* Timeline Section */
.tcba-timeline-section {
  padding: 96px 0;
  background-color: #f1f3f9;
}

.tcba-timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.tcba-timeline-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--tcba-sys-primary);
  margin: 0 0 16px;
}

.tcba-timeline-header p {
  font-size: 17px;
  color: var(--tcba-sys-text-muted);
  margin: 0;
}

.tcba-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Vertical centre line */
.tcba-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--tcba-sys-status-gold), var(--tcba-sys-primary));
  transform: translateX(-50%);
}

.tcba-timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: 24px;
}

.tcba-timeline-card {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(198, 197, 210, 0.35);
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tcba-timeline-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

.tcba-timeline-card-left { border-right: 4px solid var(--tcba-sys-status-gold); }
.tcba-timeline-card-right { border-left: 4px solid var(--tcba-sys-primary); }

.tcba-timeline-year {
  font-size: 48px;
  font-weight: 700;
  color: rgba(37, 53, 118, 0.1);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.tcba-timeline-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 12px;
}

.tcba-timeline-card p {
  font-size: 14px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.65;
  margin: 0 0 12px;
}

.tcba-timeline-tag-gold {
  font-size: 12px;
  font-weight: 600;
  color: var(--tcba-sys-status-gold);
}

.tcba-timeline-tag-navy {
  font-size: 12px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
}

.tcba-timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  z-index: 10;
}

.tcba-timeline-dot-gold { background-color: var(--tcba-sys-status-gold); }
.tcba-timeline-dot-navy { background-color: var(--tcba-sys-primary); }

.tcba-timeline-dot .material-symbols-outlined {
  font-size: 20px;
  color: #ffffff;
}

.tcba-timeline-empty { /* placeholder side */ }

@media (max-width: 768px) {
  .tcba-timeline::before { left: 24px; }
  .tcba-timeline-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
  .tcba-timeline-empty { display: none; }
  /* DOM order is card→dot→empty on left rows but empty→dot→card on right
     rows; force the dot into column 1 and the card into column 2 either way
     instead of relying on source order (which broke left rows: the card was
     landing in the 48px column and the dot in the 1fr column). */
  .tcba-timeline-dot {
    order: 1;
  }
  .tcba-timeline-card-left,
  .tcba-timeline-card-right {
    order: 2;
    grid-column: span 1;
    border-right: none;
    border-left: 4px solid var(--tcba-sys-status-gold);
    text-align: left !important;
  }
  .tcba-about-hero h1 { font-size: 32px; }
}

/* CTA Banner */
.tcba-about-cta-section {
  padding: 96px 0;
  background-color: var(--tcba-sys-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tcba-about-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.04) 100%);
  pointer-events: none;
}

.tcba-about-cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 24px;
}

.tcba-about-cta-section p {
  font-size: 17px;
  color: rgba(241, 243, 249, 0.78);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.tcba-about-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.tcba-about-cta-btn-primary {
  padding: 16px 40px;
  background-color: var(--tcba-sys-status-gold);
  color: var(--tcba-sys-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.tcba-about-cta-btn-primary:hover { opacity: 0.9; }
.tcba-about-cta-btn-primary:active { transform: scale(0.97); }

.tcba-about-cta-btn-outline {
  padding: 16px 40px;
  background-color: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.tcba-about-cta-btn-outline:hover { background-color: rgba(255, 255, 255, 0.1); }
.tcba-about-cta-btn-outline:active { transform: scale(0.97); }

/* ==========================================================================
   Stitch-Aligned Committee Page Styles
   ========================================================================== */

/* Hero */
.tcba-committee-hero {
  position: relative;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
  background-color: var(--tcba-sys-surface-white);
}

.tcba-committee-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 60% 0%, rgba(37, 53, 118, 0.06) 0%, transparent 70%),
                    radial-gradient(ellipse at 10% 100%, rgba(197, 160, 89, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.tcba-committee-hero-badge {
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid var(--tcba-sys-status-gold);
  color: var(--tcba-sys-status-gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.tcba-committee-hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--tcba-sys-primary);
  margin: 0 0 20px;
  line-height: 1.2;
}

.tcba-committee-hero p {
  font-size: 17px;
  color: var(--tcba-sys-text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section Subhead */
.tcba-section-subhead {
  margin-bottom: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(198, 197, 210, 0.4);
  padding-bottom: 24px;
}

.tcba-section-subhead h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 6px;
}

.tcba-section-subhead .en {
  font-size: 14px;
  color: var(--tcba-sys-text-muted);
}

/* President Highlight Card */
.tcba-president-card {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(198, 197, 210, 0.3);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.tcba-president-photo {
  width: 280px;
  aspect-ratio: 4 / 5;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--tcba-sys-status-gold);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25);
}

.tcba-president-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcba-president-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tcba-sys-status-gold);
  display: block;
  margin-bottom: 8px;
}

.tcba-president-card h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 20px;
}

.tcba-president-quote {
  font-size: 16px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 640px;
}

.tcba-president-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: var(--tcba-sys-primary);
  font-style: italic;
  opacity: 0.55;
}

/* Board Members Grid */
.tcba-board-section {
  padding: 80px 0;
}

.tcba-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcba-member-card {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(198, 197, 210, 0.3);
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.tcba-member-card:hover { transform: translateY(-8px); }

.tcba-member-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  background-color: #eceef4;
}

.tcba-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tcba-member-card:hover .tcba-member-photo img { transform: scale(1.08); }

.tcba-member-role-en {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00639b;
  display: block;
  margin-bottom: 6px;
}

.tcba-member-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 4px;
}

.tcba-member-card p {
  font-size: 14px;
  color: var(--tcba-sys-text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .tcba-members-grid { grid-template-columns: 1fr 1fr; }
  .tcba-president-card { flex-direction: column; text-align: center; }
  .tcba-president-photo { width: 200px; aspect-ratio: 4 / 5; }
  .tcba-president-signature { justify-content: center; }
  .tcba-committee-hero h1 { font-size: 30px; }
}

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

/* Management Structure Bento */
.tcba-structure-section {
  padding: 80px 0;
  background-color: #f1f3f9;
}

.tcba-structure-section .tcba-section-heading { margin-bottom: 48px; }

.tcba-structure-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.tcba-struct-col-8 { grid-column: span 8; }
.tcba-struct-col-4 { grid-column: span 4; }

@media (max-width: 1024px) {
  .tcba-struct-col-8,
  .tcba-struct-col-4 { grid-column: span 12; }
}

.tcba-struct-card {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(198, 197, 210, 0.3);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.tcba-struct-card-gold { border-left: 4px solid var(--tcba-sys-status-gold); }
.tcba-struct-card-navy { border-left: 4px solid #00639b; }

.tcba-struct-card-dark {
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
  border: none;
}

.tcba-struct-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.tcba-struct-icon-navy { background-color: var(--tcba-sys-primary); color: #ffffff; }
.tcba-struct-icon-blue { background-color: rgba(0, 99, 155, 0.15); color: #00639b; }

.tcba-struct-icon-wrap .material-symbols-outlined { font-size: 28px; }

.tcba-struct-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--tcba-sys-primary);
  margin: 0 0 12px;
}

.tcba-struct-card-dark h3 { color: #ffffff !important; }

.tcba-struct-card p {
  font-size: 14px;
  color: var(--tcba-sys-text-muted);
  line-height: 1.65;
  margin: 0 0 16px;
}

.tcba-struct-card-dark p { color: rgba(241, 243, 249, 0.78); }

.tcba-struct-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.tcba-struct-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  background-color: #e0e2e8;
  color: var(--tcba-sys-text-muted);
  margin-top: auto;
}

.tcba-struct-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

/* Seniority Table */
.tcba-seniority-section {
  padding: 96px 0;
}

.tcba-seniority-table-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(198, 197, 210, 0.4);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.tcba-seniority-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tcba-seniority-table thead tr {
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
}

.tcba-seniority-table thead th {
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tcba-seniority-table tbody tr {
  border-bottom: 1px solid rgba(198, 197, 210, 0.25);
  transition: background-color 0.15s ease;
}

.tcba-seniority-table tbody tr:last-child { border-bottom: none; }
.tcba-seniority-table tbody tr:hover { background-color: #f1f3f9; }
.tcba-seniority-table tbody tr:nth-child(odd) { background-color: rgba(247, 249, 255, 0.6); }

.tcba-seniority-table td {
  padding: 16px 24px;
  font-size: 15px;
  color: var(--tcba-sys-on-surface);
}

.tcba-rank-cell {
  font-weight: 700;
  color: var(--tcba-sys-primary) !important;
}

.tcba-rank-top-cell {
  font-weight: 700;
  font-size: 16px;
  color: var(--tcba-sys-primary) !important;
}

/* Election/Appointment Section */
.tcba-election-section {
  padding: 80px 0;
  background-color: var(--tcba-sys-primary);
  color: #ffffff;
}

.tcba-election-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .tcba-election-grid { grid-template-columns: 1fr; gap: 48px; }
}

.tcba-election-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--tcba-sys-status-gold) !important;
  margin: 0 0 24px;
}

.tcba-election-section > .tcba-page-container > .tcba-election-grid > div > p {
  font-size: 16px;
  color: rgba(241, 243, 249, 0.88);
  line-height: 1.75;
  margin-bottom: 32px;
}

.tcba-election-rule {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.tcba-election-rule-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: rgba(197, 160, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tcba-election-rule-icon .material-symbols-outlined {
  font-size: 20px;
  color: var(--tcba-sys-status-gold);
}

.tcba-election-rule h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px;
}

.tcba-election-rule p {
  font-size: 13px;
  color: rgba(241, 243, 249, 0.68);
  margin: 0;
  line-height: 1.5;
}

.tcba-manual-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px;
}

.tcba-manual-card::before {
  content: '';
  position: absolute;
  inset: -16px;
  background-color: rgba(197, 160, 89, 0.08);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.tcba-manual-card .material-symbols-outlined.big {
  font-size: 48px;
  color: var(--tcba-sys-status-gold);
  display: block;
  margin-bottom: 24px;
}

.tcba-manual-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px;
}

.tcba-manual-card p {
  font-size: 14px;
  color: rgba(241, 243, 249, 0.72);
  line-height: 1.7;
  margin-bottom: 32px;
}

.tcba-manual-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background-color: var(--tcba-sys-status-gold);
  color: var(--tcba-sys-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s ease;
  cursor: pointer;
  border: none;
}

.tcba-manual-download-btn:hover { opacity: 0.88; }
