/* ==========================================================
   Travel Checklist — page-exclusive rules
   ==========================================================
   Everything reusable (policy-page-intro/policy-intro-meta,
   coming-soon-secondary-link/site-cta-btn, as-cta-bar,
   eyebrow-heading, h2-accent, etc.) already lives in common.css
   and is reused as-is. Two genuinely new pieces of content live
   here: the interactive "Quick Don't Forget Checklist" strip near
   the top of the page, and — below it — the full 9-section Complete
   Travel Checklist that replaced this page's original
   coming-soon placeholder. Namespace: .tc-*.
   ========================================================== */

/* ======================================= */
/* QUICK "DON'T FORGET" STRIP (interactive) */
/* Mirrors the site's .stats-strip gradient-bar pattern (see
   common.css) so it reads as the same "banner strip" component
   family, but with real checkboxes + a live progress counter
   instead of static stat counters. */
.tc-strip {
    padding: 10px var(--edge-pad) 0;
    box-sizing: border-box;
    width: 100%;
}

.tc-strip-container {
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
    background: var(--grad-main);
    border-radius: var(--radius-md);
    box-sizing: border-box;
    padding: 30px 40px;
}

.tc-strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tc-strip-heading {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 4px;
}

.tc-strip-heading-accent { color: rgba(255, 255, 255, 0.85); }

.tc-strip-lead {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.tc-strip-progress {
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    padding: 8px 18px;
    margin: 0;
    white-space: nowrap;
}

.tc-strip-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tc-strip-item { display: contents; }

.tc-strip-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.tc-strip-items label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tc-strip-items label:hover { background: rgba(255, 255, 255, 0.2); }

.tc-strip-checkbox:focus-visible + label { outline: 2px solid #ffffff; outline-offset: 2px; }

.tc-strip-check {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    fill: none;
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tc-strip-checkbox:checked + label {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--brand-blue);
}

.tc-strip-checkbox:checked + label span { text-decoration: line-through; text-decoration-color: rgba(20, 83, 188, 0.4); }

.tc-strip-checkbox:checked + label .tc-strip-check { stroke: var(--brand-blue); }

@media (max-width: 600px) {
    .tc-strip-container { padding: 26px 22px; }
    .tc-strip-header { flex-direction: column; align-items: flex-start; }
    /* Page-exclusive heading (h2 + lead paragraph), not the generic
       .section-header — mirrors common.css's #past-events centering
       shape (text-align:center + margin-inline:auto + max-width) since
       it was left-aligned by the column stack above. Auto margins on
       a flex item's cross axis center it regardless of the parent's
       align-items, so this doesn't need to touch .tc-strip-header. */
    .tc-strip-heading-group {
        text-align: center;
        margin-inline: auto;
        max-width: 820px;
    }
    .tc-strip-heading,
    .tc-strip-lead {
        text-align: center;
    }
    .tc-strip-items label { font-size: 0.85rem; padding: 8px 14px; }
}

/* ======================================= */
/* COMPLETE TRAVEL CHECKLIST (9 sections)   */
/* ======================================= */
.tc-full-checklist-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.tc-full-checklist-intro .eyebrow-heading { text-align: center; }

.tc-full-checklist-intro h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 0 0 12px;
}

.tc-full-checklist-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.tc-checklist-groups {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.tc-checklist-group {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 30px;
    box-sizing: border-box;
}

.tc-checklist-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.tc-checklist-group-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.tc-checklist-group-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.tc-checklist-group-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--grad-main);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tc-venue-callout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    margin-bottom: 18px;
    background: rgba(20, 83, 188, 0.06);
    border: 1px solid rgba(20, 83, 188, 0.15);
    border-radius: var(--radius-sm);
}

.tc-venue-callout-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.tc-venue-callout-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.tc-checklist-note {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    margin: 0 0 14px;
}

.tc-checklist-note strong { color: var(--text-dark); }

.tc-checklist-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px 20px;
}

.tc-checklist-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tc-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--brand-blue);
    cursor: pointer;
}

.tc-checklist-check label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    cursor: pointer;
}

.tc-checkbox:checked + label {
    color: var(--text-light);
    text-decoration: line-through;
    text-decoration-color: var(--border-color);
}

.tc-checklist-help {
    text-align: center;
    margin-top: 14px;
}

.tc-checklist-help p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 18px;
}

.tc-checklist-help-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .tc-checklist-group  { padding: 22px 20px; }
    .tc-checklist-items  { grid-template-columns: 1fr; }
}
