/* ============================================================
   REFUND POLICY
   ACRT 2027 Editorial Design
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Space+Grotesk:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {

  /* ==========================================================
     CORE / DARK
     ========================================================== */

  --ink: #241d33;
  --ink-soft: #5f566d;

  --void: #120c1f;
  --void-soft: #1d1533;
  --void-alt: #291f47;


  /* ==========================================================
     PAPER / LIGHT
     ========================================================== */

  --paper: #faf7f0;
  --paper-raised: #ffffff;
  --parchment: #f2ece0;


  /* ==========================================================
     PRIMARY ACCENT — TERRACOTTA
     ========================================================== */

  --terracotta: #b5502e;
  --terracotta-deep: #8a3a20;
  --terracotta-tint: #f3dfd6;


  /* ==========================================================
     SECONDARY ACCENT — BRONZE
     ========================================================== */

  --bronze: #a9863f;
  --bronze-light: #cba868;
  --bronze-tint: #eee4cf;


  /* ==========================================================
     DIGITAL / FUTURISTIC ACCENT — VIOLET
     ========================================================== */

  --violet: #9b86ff;
  --violet-dim: #7566c9;
  --violet-tint: #e8e3ff;


  /* ==========================================================
     SCIENTIFIC / POSITIVE ACCENT — CYAN
     ========================================================== */

  --cyan: #4fd8c4;
  --cyan-dim: #35a997;
  --cyan-tint: #dff7f2;


  /* ==========================================================
     ALERT / ATTENTION — CORAL
     ========================================================== */

  --coral: #ff7a6b;
  --coral-deep: #d9574b;
  --coral-tint: #ffe4df;


  /* ==========================================================
     LINES / BORDERS
     ========================================================== */

  --line: #d8cbb3;
  --line-strong: #c9b48a;

  --line-dark: rgba(155, 134, 255, 0.28);


  /* ==========================================================
     SHADOWS
     ========================================================== */

  --shadow:
    0 10px 34px rgba(18, 12, 31, 0.22);

  --shadow-soft:
    0 6px 22px rgba(18, 12, 31, 0.12);


  /* ==========================================================
     SYSTEM
     ========================================================== */

  --radius: 3px;
  --max: 1230px;
}
.refund-section {
    padding: 80px 0;
}


/* ============================================================
   HEADER
   ============================================================ */

.refund-header {
    max-width: 820px;
    margin-bottom: 48px;
}

.refund-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
}

.refund-lede {
    max-width: 68ch;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}


/* ============================================================
   POLICY BLOCK
   ============================================================ */

.refund-block {
    border-top: 1px solid var(--line-strong);
    padding: 28px 0 34px;
}

.refund-block:last-of-type {
    border-bottom: 1px solid var(--line-strong);
}


/* ============================================================
   BLOCK HEADING
   ============================================================ */

.refund-block-header {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 28px;
}

.refund-block-number {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--gold);
    padding-top: 2px;
}

.refund-block-label {
    display: block;

    font-family: 'IBM Plex Mono', monospace;
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;

    color: var(--ink-soft);

    margin-bottom: 6px;
}

.refund-block-header h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    margin: 0;
}


/* ============================================================
   REFUND RULES
   ============================================================ */

.refund-rules {
    border-top: 1px solid var(--line);
    margin-left: 70px;
}

.refund-rule {
    display: grid;

    grid-template-columns: 38px 1fr;
    gap: 18px;

    padding: 22px 0;

    border-bottom: 1px solid var(--line);
}

.refund-rule:last-child {
    border-bottom: 0;
}


/* ============================================================
   RULE ICON
   ============================================================ */

.refund-rule-mark {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--line-strong);
    border-radius: 50%;

    font-family: 'IBM Plex Mono', monospace;
    font-size: .78rem;
    font-weight: 600;

    color: var(--teal-deep);
    background: var(--teal-tint);
}

.refund-rule-negative .refund-rule-mark {
    color: var(--eosin);
    background: var(--eosin-tint);
    border-color: #E8C3D6;
}


/* ============================================================
   RULE CONTENT
   ============================================================ */

.refund-rule-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.refund-rule-content p {
    max-width: 70ch;

    margin: 0;

    color: var(--ink-soft);

    font-size: .94rem;
    line-height: 1.65;
}


/* ============================================================
   NORMAL TEXT BLOCKS
   ============================================================ */

.refund-text {
    margin-left: 70px;
}

.refund-text p {
    max-width: 70ch;

    margin: 0;

    color: var(--ink-soft);

    font-size: .98rem;
    line-height: 1.7;
}

.refund-text a {
    color: var(--teal-deep);

    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


/* ============================================================
   EVENT CANCELLATION
   ============================================================ */

.refund-event-cancellation {
    display: grid;

    grid-template-columns: 58px 1fr;
    gap: 22px;

    margin-top: 42px;

    padding: 28px 30px;

    background: var(--paper-raised);

    border: 1px solid var(--line-strong);
    border-left: 3px solid var(--eosin);
}


/* Event Mark */

.refund-event-mark {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--eosin-tint);
    border: 1px solid #E8C3D6;

    color: var(--eosin);

    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-style: italic;
}


/* Event Content */

.refund-event-label {
    display: block;

    font-family: 'IBM Plex Mono', monospace;
    font-size: .65rem;

    letter-spacing: .1em;
    text-transform: uppercase;

    color: var(--eosin);

    margin-bottom: 6px;
}

.refund-event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.refund-event-content p {
    max-width: 75ch;

    margin: 0;

    color: var(--ink-soft);

    font-size: .94rem;
    line-height: 1.7;
}


/* ============================================================
   POLICY SUMMARY
   ============================================================ */

.refund-summary {
    margin-top: 48px;

    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.refund-summary-label {
    padding: 14px 0;

    font-family: 'IBM Plex Mono', monospace;
    font-size: .66rem;

    letter-spacing: .1em;
    text-transform: uppercase;

    color: var(--gold);

    border-bottom: 1px solid var(--line);
}

.refund-summary-table {
    width: 100%;
}

.refund-summary-row {
    display: grid;

    grid-template-columns: 1fr 1.2fr;
    gap: 30px;

    padding: 15px 0;

    border-bottom: 1px solid var(--line);

    font-family: 'IBM Plex Mono', monospace;
    font-size: .76rem;
}

.refund-summary-row:last-child {
    border-bottom: 0;
}

.refund-summary-row span {
    color: var(--ink-soft);
}

.refund-summary-row strong {
    color: var(--ink);

    font-family: 'Space Grotesk', sans-serif;
    font-size: .88rem;
    font-weight: 500;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 760px) {

    .refund-section {
        padding: 60px 0;
    }

    .refund-header {
        margin-bottom: 36px;
    }

    .refund-block {
        padding: 24px 0 28px;
    }

    .refund-rules,
    .refund-text {
        margin-left: 0;
    }

    .refund-event-cancellation {
        grid-template-columns: 46px 1fr;
        gap: 16px;

        padding: 22px;
    }

    .refund-summary-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 520px) {

    .refund-section {
        padding: 48px 0;
    }

    .refund-header h2 {
        font-size: 2rem;
    }

    .refund-lede {
        font-size: .98rem;
    }

    .refund-block-header {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }

    .refund-block-number {
        font-size: 1.15rem;
    }

    .refund-rule {
        grid-template-columns: 32px 1fr;
        gap: 12px;
        padding: 18px 0;
    }

    .refund-rule-mark {
        width: 28px;
        height: 28px;
        font-size: .7rem;
    }

    .refund-rule-content p,
    .refund-text p,
    .refund-event-content p {
        font-size: .9rem;
    }

    .refund-event-cancellation {
        grid-template-columns: 1fr;
        gap: 14px;

        padding: 20px;
        margin-top: 32px;
    }

    .refund-event-mark {
        width: 34px;
        height: 34px;
    }

    .refund-summary {
        margin-top: 34px;
    }

    .refund-summary-row {
        padding: 14px 0;
    }

}