/* ============================================================
   Heck Yeah — Main Stylesheet
   Colours: Orange #FF6B00 | Navy #0D1B2A | Lime #C6F135 | Off-white #FFFBF5 | Near-black #1A1A2E
   Fonts: Playfair Display (display) | Poppins (UI/body)
   ============================================================ */

:root {
    --orange:     #FF6B00;
    --navy:       #0D1B2A;
    --lime:       #C6F135;
    --off-white:  #FFFBF5;
    --near-black: #1A1A2E;
    --mid-grey:   #6B7280;
    --light-grey: #F3F4F6;
    --border:     #E5E7EB;
    --error:      #EF4444;
    --success:    #22C55E;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-ui:      'Poppins', system-ui, sans-serif;

    --radius:     8px;
    --radius-lg:  16px;
    --shadow:     0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
    --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-ui);
    background: var(--off-white);
    color: var(--near-black);
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-family: var(--font-ui);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .15s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary   { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: #e55f00; border-color: #e55f00; }

.btn-secondary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-secondary:hover { background: #162435; }

.btn-ghost     { background: transparent; color: var(--near-black); border-color: var(--border); }
.btn-ghost:hover { background: var(--light-grey); }

.btn-danger    { background: var(--error); color: #fff; border-color: var(--error); }
.btn-danger:hover { background: #dc2626; }

.btn-lg  { padding: 14px 28px; font-size: 1rem; }
.btn-sm  { padding: 6px 12px; font-size: .8rem; }
.btn-block { width: 100%; }

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: 6px; }
.label-hint { font-weight: 400; color: var(--mid-grey); }
.required { color: var(--error); }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-ui);
    font-size: .9rem;
    background: #fff;
    color: var(--near-black);
    transition: border-color .15s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--orange);
}
textarea { resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { color: var(--error); font-size: .8rem; margin-top: 4px; display: block; }
.form-group--checkbox label { display: flex; align-items: center; gap: 8px; font-weight: 400; cursor: pointer; }

/* ── Alerts ── */
.alert {
    padding: 12px 20px;
    font-size: .9rem;
    font-weight: 500;
}
.alert-success { background: #dcfce7; color: #15803d; border-left: 4px solid var(--success); }
.alert-error   { background: #fee2e2; color: #dc2626; border-left: 4px solid var(--error); }

/* ── Badges ── */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    background: var(--light-grey);
    color: var(--near-black);
}
.badge--yes      { background: #dcfce7; color: #15803d; }
.badge--no       { background: #fee2e2; color: #dc2626; }
.badge--pending  { background: #fef9c3; color: #854d0e; }
.badge--complete { background: #dcfce7; color: #15803d; }
.badge--failed   { background: #fee2e2; color: #dc2626; }

/* ── Site header ── */
.site-header {
    background: var(--navy);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header nav { display: flex; align-items: center; gap: 20px; }
.site-header nav a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; }
.site-header nav a:hover { color: #fff; text-decoration: none; }

.logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; }
.logo:hover { text-decoration: none; color: #fff; }
.logo-dot { color: var(--lime); }

/* ── Site footer ── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    padding: 40px 0;
    margin-top: 80px;
}
.site-footer .container { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-brand .logo { font-size: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 6px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .85rem; }
.footer-links a:hover { color: #fff; }

/* ── Hero ── */
.hero {
    background: var(--navy);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── How it works ── */
.how-it-works { padding: 80px 0; }
.how-it-works h2 { text-align: center; margin-bottom: 48px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: center; }
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--lime);
    color: var(--near-black);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--mid-grey); }

/* ── Pricing ── */
.pricing-preview { background: var(--light-grey); padding: 80px 0; }
.pricing-preview h2 { text-align: center; margin-bottom: 48px; }
.tier-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.tier-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid var(--border);
    position: relative;
}
.tier-card--featured { border-color: var(--orange); }
.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}
.tier-header { margin-bottom: 24px; }
.tier-header h3 { margin-bottom: 8px; }
.tier-price { font-size: 3rem; font-weight: 700; font-family: var(--font-display); color: var(--orange); line-height: 1; }
.tier-once { font-size: .8rem; color: var(--mid-grey); }
.tier-features { list-style: none; margin-bottom: 24px; }
.tier-features li { padding: 6px 0; font-size: .9rem; border-bottom: 1px solid var(--border); }
.tier-features li::before { content: '✓ '; color: var(--success); font-weight: 600; }
.pricing-note { text-align: center; margin-top: 24px; color: var(--mid-grey); font-size: .9rem; }

/* ── Auth pages ── */
.auth-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.auth-card { background: #fff; border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow-lg); }
.auth-card h1 { margin-bottom: 24px; }
.auth-intro { color: var(--mid-grey); margin-bottom: 24px; }
.auth-links { text-align: center; margin-top: 20px; font-size: .875rem; color: var(--mid-grey); }

/* ── Tables ── */
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.data-table th { text-align: left; padding: 10px 12px; background: var(--light-grey); font-weight: 600; border-bottom: 2px solid var(--border); }
.data-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); }
.data-table tr:hover td { background: var(--off-white); }
.mono { font-family: monospace; font-size: .8rem; color: var(--mid-grey); }

/* ── Panels ── */
.panel { background: #fff; border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow); }
.panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.panel-header h2 { margin-bottom: 0; }
.panel h2 { margin-bottom: 16px; }
.panel-hint { font-size: .8rem; color: var(--mid-grey); margin-top: 12px; }
.empty-message { color: var(--mid-grey); font-size: .9rem; }

/* ── Page header ── */
.page-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.page-header h1 { margin-bottom: 4px; }
.page-meta { color: var(--mid-grey); font-size: .9rem; }
.page-header-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ── Stats ── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 20px; text-align: center; box-shadow: var(--shadow); }
.stat-number { font-size: 2rem; font-weight: 700; font-family: var(--font-display); }
.stat-label { font-size: .8rem; color: var(--mid-grey); margin-top: 4px; }
.stat-card--yes .stat-number { color: var(--success); }
.stat-card--no .stat-number { color: var(--error); }
.stat-card--pending .stat-number { color: #d97706; }

/* ── Event cards ── */
.event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.event-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); border: 2px solid transparent; transition: border-color .15s; }
.event-card:hover { border-color: var(--orange); }
.event-card-header { display: flex; gap: 8px; margin-bottom: 12px; }
.event-card h3 { margin-bottom: 6px; }
.event-card h3 a { color: var(--near-black); }
.event-date { font-size: .875rem; color: var(--mid-grey); }
.event-location { font-size: .875rem; color: var(--mid-grey); }
.event-stats { display: flex; gap: 12px; margin: 16px 0; }
.stat { font-size: .8rem; color: var(--mid-grey); }
.stat strong { color: var(--near-black); }
.event-card-actions { display: flex; gap: 8px; margin-top: 16px; }
.event-tier { background: var(--light-grey); }
.event-tier--bespoke { background: #ede9fe; color: #6d28d9; }
.event-status--live { background: #dcfce7; color: #15803d; }
.event-status--draft { background: #fef9c3; color: #854d0e; }

/* ── Quick actions ── */
.quick-actions { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin-bottom: 24px; }
.action-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    color: var(--near-black);
    border: 2px solid transparent;
    transition: all .15s;
    display: block;
}
.action-card:hover { border-color: var(--orange); text-decoration: none; transform: translateY(-2px); }
.action-icon { font-size: 1.75rem; display: block; margin-bottom: 10px; }
.action-card h3 { font-size: 1rem; margin-bottom: 4px; }
.action-card p { font-size: .8rem; color: var(--mid-grey); }
.action-card--upgrade { border-color: var(--lime); background: #f7ffe0; }

/* ── Event URL card ── */
.event-url-card { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); margin-bottom: 24px; }
.event-url-card label { display: block; font-size: .8rem; font-weight: 600; color: var(--mid-grey); margin-bottom: 8px; }
.url-display { display: flex; align-items: center; gap: 10px; }
.url-display span { font-family: monospace; font-size: .9rem; color: var(--orange); flex: 1; }

/* ── Status banners ── */
.status-banner { padding: 14px 20px; margin-bottom: 20px; border-radius: var(--radius); }
.status-banner--warn { background: #fef9c3; border-left: 4px solid #fbbf24; }
.status-banner p { font-size: .9rem; }

/* ── Empty state ── */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h2 { margin-bottom: 8px; }
.empty-state p { color: var(--mid-grey); margin-bottom: 24px; }

/* ── Inline form ── */
.inline-form .form-row { align-items: flex-end; }

/* ── Tier select (create form) ── */
.tier-select-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.tier-option input[type="radio"] { display: none; }
.tier-option-card { border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 20px; cursor: pointer; transition: all .15s; }
.tier-option input:checked + .tier-option-card { border-color: var(--orange); background: #fff7f0; }
.tier-option-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.tier-option-price { font-size: 1.5rem; font-weight: 700; color: var(--orange); }

/* ── Form sections ── */
.form-section { margin-bottom: 32px; }
.form-section h2 { margin-bottom: 20px; font-size: 1.25rem; }
.create-form-wrap { max-width: 680px; }
.form-actions { display: flex; gap: 12px; align-items: center; margin-top: 32px; }

/* ── Checkout ── */
.checkout-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.checkout-card { background: #fff; border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 520px; box-shadow: var(--shadow-lg); }
.checkout-card h1 { margin-bottom: 24px; }
.order-summary { background: var(--light-grey); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.order-summary h2 { font-size: 1.1rem; margin-bottom: 12px; }
.order-line { display: flex; justify-content: space-between; padding: 6px 0; font-size: .9rem; }
.order-total { display: flex; justify-content: space-between; padding-top: 12px; margin-top: 8px; border-top: 2px solid var(--border); font-weight: 700; }
.checkout-terms { font-size: .75rem; color: var(--mid-grey); margin-top: 16px; text-align: center; }
.checkout-success { text-align: center; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.success-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* ── Domain choice ── */
.domain-choice { margin: 24px 0; }
.domain-choice h3 { margin-bottom: 12px; }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; font-size: .9rem; transition: border-color .15s; }
.radio-option:has(input:checked) { border-color: var(--orange); background: #fff7f0; }
.radio-option input { flex-shrink: 0; }
.domain-section { margin-top: 16px; }
.domain-hint { font-size: .8rem; color: var(--mid-grey); margin-bottom: 8px; }
.domain-search-row { display: flex; gap: 8px; }
.hidden { display: none !important; }

/* ── Colour input ── */
.colour-input-wrap { display: flex; align-items: center; gap: 10px; }
input[type="color"] { width: 48px; height: 38px; padding: 2px; border-radius: var(--radius); cursor: pointer; }
.colour-label { font-size: .8rem; font-family: monospace; color: var(--mid-grey); }

/* ── Image preview ── */
.image-preview { max-width: 200px; max-height: 120px; object-fit: cover; border-radius: var(--radius); margin-top: 8px; border: 2px solid var(--border); }

/* ── Page builder blocks ── */
.block-add-buttons { display: flex; gap: 6px; flex-wrap: wrap; }
.block-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border: 2px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; background: var(--off-white); }
.block-handle { cursor: grab; color: var(--mid-grey); font-size: 1.2rem; padding-top: 4px; }
.block-type-label { font-size: .75rem; font-weight: 600; color: var(--mid-grey); text-transform: uppercase; padding: 4px 8px; background: var(--light-grey); border-radius: 4px; white-space: nowrap; }
.block-content-wrap { flex: 1; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 8px; margin-bottom: 8px; }
.gallery-thumb img { width: 100%; height: 80px; object-fit: cover; border-radius: 4px; }
.block-upload-form { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.block-text-editor { width: 100%; min-height: 100px; font-size: .9rem; }

/* ── Questions ── */
.question-item { display: flex; align-items: flex-start; justify-content: space-between; padding: 16px; border-bottom: 1px solid var(--border); gap: 16px; }
.question-text { font-weight: 500; margin-bottom: 6px; }
.question-options { font-size: .8rem; color: var(--mid-grey); margin-top: 4px; }
.question-info { flex: 1; }

/* ── Public event pages ── */
.event-page { min-height: 100vh; }

.event-header {
    background: var(--navy);
    color: #fff;
    padding: 60px 24px;
    text-align: center;
}
.event-header h1 { color: #fff; margin-bottom: 16px; }
.event-brand { font-family: var(--font-display); color: var(--lime); font-size: .9rem; font-weight: 700; margin-bottom: 8px; letter-spacing: .1em; }
.event-meta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 16px; }
.event-description { max-width: 600px; margin: 0 auto; color: rgba(255,255,255,.8); }
.rsvp-deadline { margin-top: 12px; font-size: .875rem; color: var(--lime); font-weight: 600; }

.event-hero {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.event-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
    color: #fff;
}
.event-hero-overlay h1 { color: #fff; margin-bottom: 16px; }

.rsvp-section { padding: 60px 24px; max-width: 600px; margin: 0 auto; }
.rsvp-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.rsvp-form-wrap h2 { margin-bottom: 8px; }
.rsvp-search-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; margin-top: 16px; }

.attendance-choice { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.attendance-option { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; font-size: .95rem; font-weight: 500; transition: all .15s; }
.attendance-option:has(input:checked) { border-color: var(--orange); }
.attendance-option--yes:has(input:checked) { background: #fff7f0; border-color: var(--orange); }
.attendance-option--no:has(input:checked) { background: #fff1f2; border-color: var(--error); }

/* ── Passcode page ── */
.event-page--passcode { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 40px 24px; background: var(--navy); }
.passcode-card { background: #fff; border-radius: var(--radius-lg); padding: 40px; max-width: 400px; width: 100%; text-align: center; }
.passcode-card h1 { margin-bottom: 8px; }
.passcode-card p { color: var(--mid-grey); margin-bottom: 24px; }

/* ── Confirmed page ── */
.event-page--confirmed { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 40px 24px; }
.confirmed-card { background: #fff; border-radius: var(--radius-lg); padding: 48px 40px; max-width: 480px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); }
.confirmed-icon { font-size: 3.5rem; margin-bottom: 16px; }
.confirmed-card h1 { margin-bottom: 12px; }
.confirmed-date { font-weight: 600; color: var(--orange); margin: 12px 0 4px; }
.confirmed-location { color: var(--mid-grey); font-size: .9rem; margin-bottom: 24px; }

/* ── Event footer ── */
.event-footer { text-align: center; padding: 24px; color: var(--mid-grey); font-size: .8rem; border-top: 1px solid var(--border); }
.event-footer a { color: var(--mid-grey); }

/* ── Upgrade ── */
.upgrade-wrap { max-width: 560px; }
.upgrade-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.feature-list { list-style: none; margin-bottom: 24px; }
.feature-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.upgrade-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.upgrade-price .price { font-size: 3rem; font-weight: 700; font-family: var(--font-display); color: var(--orange); }
.upgrade-price .price-note { color: var(--mid-grey); }

/* ── Modal ── */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 24px; }
.modal-content { background: #fff; border-radius: var(--radius-lg); padding: 32px; max-width: 480px; width: 100%; }
.modal-content h2 { margin-bottom: 20px; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .tier-cards { grid-template-columns: 1fr; }
    .tier-select-group { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .rsvp-search-row { grid-template-columns: 1fr; }
    .hero { padding: 60px 0; }
    .site-header nav .btn-ghost { display: none; }
}

/* ── Bespoke event blocks ── */
.event-block {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}
.event-block:last-of-type { border-bottom: none; }

.block-text { max-width: 720px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; }
.block-text h1, .block-text h2, .block-text h3 { margin-bottom: 12px; margin-top: 24px; }
.block-text p, .block-text br { margin-bottom: 8px; }

.block-schedule {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 2.2;
}

.block-faq {
    max-width: 720px;
    margin: 0 auto;
}
.block-faq p { margin-bottom: 6px; }

/* Style FAQ as question/answer pairs */
.block-faq-item { margin-bottom: 24px; }
.block-faq-item strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.block-faq-item span { color: var(--mid-grey); font-size: .95rem; }
