/* ════════════════════════════════════════════════════════
   APPLY.CSS — Signal Institute Application Flow
   Single-mode: Warm White, brand palette
   ════════════════════════════════════════════════════════ */

/* ── Base page ───────────────────────────────────────── */

.apply-page {
    background: var(--warm-white, #F5F2EC);
    color: var(--black-navy, #1A1A2E);
    min-height: 100dvh;
    overflow-x: hidden;
}

/* ── Top progress line ───────────────────────────────── */

.apply-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 500;
}

.apply-top-fill {
    height: 100%;
    width: 0%;
    background: var(--offering-color, #2C6671);
    transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.9s ease;
}

/* ── Fixed top chrome: logo | exit ──────────────────── */

.apply-top-chrome {
    position: fixed;
    top: 2px;
    left: 0;
    right: 0;
    z-index: 300;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.75rem;
    pointer-events: none;
}

.apply-top-chrome > * {
    pointer-events: auto;
}

.apply-logo-link {
    display: flex;
    align-items: center;
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.25s;
}
.apply-logo-link:hover { opacity: 1; }

.apply-top-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.apply-exit-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.35);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.45s ease,
                transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.2s, color 0.2s;
}
.apply-exit-btn.visible { opacity: 1; transform: scale(1); }
.apply-exit-btn:hover {
    background: rgba(0, 0, 0, 0.09);
    color: rgba(0, 0, 0, 0.75);
}

/* ── Exit confirmation overlay ──────────────────────── */

.apply-exit-confirm {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(26, 26, 46, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.apply-exit-confirm.open { opacity: 1; pointer-events: all; }

.exit-confirm-card {
    background: var(--warm-white, #F5F2EC);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    max-width: 340px;
    width: 90%;
    text-align: center;
    transform: scale(0.88) translateY(12px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}
.apply-exit-confirm.open .exit-confirm-card {
    transform: scale(1) translateY(0);
}

.exit-confirm-heading {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black-navy, #1A1A2E);
    margin: 0 0 0.4rem;
    letter-spacing: -0.02em;
}
.exit-confirm-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.45);
    margin: 0 0 2rem;
}
.exit-confirm-btns {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.exit-btn-yes {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 10px;
    padding: 0.75rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transition: all 0.2s;
}
.exit-btn-yes:hover {
    border-color: rgba(0, 0, 0, 0.28);
    color: rgba(0, 0, 0, 0.7);
}
.exit-btn-no {
    background: var(--black-navy, #1A1A2E);
    border: none;
    border-radius: 10px;
    padding: 0.8rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s;
}
.exit-btn-no:hover { opacity: 0.85; }

/* ── Offering context card ──────────────────────────── */

.apply-context-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.apply-context-card[hidden] { display: none; }

.apply-context-accent {
    width: 4px;
    min-height: 48px;
    border-radius: 4px;
    background: var(--offering-color, #2C6671);
    flex-shrink: 0;
    align-self: stretch;
}

.apply-context-body {
    flex: 1;
}

.apply-context-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.35);
    margin: 0 0 0.3rem;
}

.apply-context-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black-navy, #1A1A2E);
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.apply-context-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
    line-height: 1.5;
}

.apply-context-back {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    color: rgba(0, 0, 0, 0.3);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0;
    transition: color 0.2s;
}
.apply-context-back:hover { color: rgba(0, 0, 0, 0.7); }

/* ── Main layout ─────────────────────────────────────── */

.apply-main {
    position: relative;
    z-index: 1;
    min-height: 100dvh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 5.5rem 3rem 7rem;
}

/* ── Content wrap ────────────────────────────────────── */

.apply-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

/* ── Card ────────────────────────────────────────────── */

.apply-card {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    position: relative;
}

.card-accent,
.card-progress { display: none; }

/* ── Step progress bar ───────────────────────────────── */

.step-progress-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    margin-bottom: 2.75rem;
    overflow: hidden;
}

.step-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    background: linear-gradient(to right, var(--stormy-teal, #2C6671), var(--bright-teal, #4FB8C8));
    transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Steps ───────────────────────────────────────────── */

.card-steps {
    position: relative;
    padding-bottom: 6rem;
}

.a-step {
    padding: 0;
    display: none;
}
.a-step.active {
    display: block;
    animation: stepIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.a-step.enter-right {
    display: block;
    animation: stepEnterRight 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.a-step.enter-left {
    display: block;
    animation: stepEnterLeft 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes stepIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes stepEnterRight {
    from { opacity: 0; transform: translateX(44px) translateY(6px); }
    to   { opacity: 1; transform: translateX(0) translateY(0); }
}
@keyframes stepEnterLeft {
    from { opacity: 0; transform: translateX(-44px) translateY(6px); }
    to   { opacity: 1; transform: translateX(0) translateY(0); }
}

/* ── Ghost number ────────────────────────────────────── */

.step-ghost {
    display: none;
    position: absolute;
    top: -2.5rem;
    right: -1rem;
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(7rem, 18vw, 14rem);
    font-weight: 400;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
}

/* ── Headings ────────────────────────────────────────── */

.step-h {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 400;
    color: var(--black-navy, #1A1A2E);
    margin: 0 0 0.55rem;
    letter-spacing: -0.03em;
    line-height: 1.04;
    position: relative;
    z-index: 1;
}

.step-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    color: rgba(0, 0, 0, 0.42);
    margin: 0 0 2.75rem;
    line-height: 1.65;
    max-width: 460px;
}

/* ── Offering grid ───────────────────────────────────── */

.offering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.offering-pick-card {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 1.15rem 1.2rem;
    cursor: pointer;
    transition: background 0.25s ease,
                border-color 0.25s ease,
                transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
    text-align: left;
    position: relative;
}

.offering-pick-card:hover {
    background: rgba(0, 0, 0, 0.07);
    border-color: color-mix(in srgb, var(--card-color) 55%, transparent);
    transform: translateY(-4px) rotate(-0.3deg);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08),
                0 0 0 1px color-mix(in srgb, var(--card-color) 25%, transparent);
}

.offering-pick-card.selected {
    background: color-mix(in srgb, var(--card-color) 10%, transparent);
    border-color: var(--card-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--card-color) 14%, transparent);
}

.opc-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 0.28rem;
    position: relative;
    z-index: 1;
}
.opc-tag {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.73rem;
    color: rgba(0, 0, 0, 0.38);
    line-height: 1.45;
    display: block;
    position: relative;
    z-index: 1;
}
.opc-check {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--card-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.58rem;
    z-index: 1;
    opacity: 0;
    transform: scale(0.4) rotate(-30deg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.offering-pick-card.selected .opc-check {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* ── Form fields ─────────────────────────────────────── */

.step-fields {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field-g {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.field-g[hidden] { display: none; }

.field-g label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
    letter-spacing: 0.03em;
}
.label-note {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.25);
}
.req {
    color: var(--offering-color, #2C6671);
    transition: color 0.4s;
}

.field-g input,
.field-g select,
.field-g textarea {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--black-navy, #1A1A2E);
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    width: 100%;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    resize: vertical;
    box-sizing: border-box;
    min-height: 48px;
    caret-color: var(--offering-color, #2C6671);
}
.field-g select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(0,0,0,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-color: rgba(0, 0, 0, 0.05);
    padding-right: 2.5rem;
    cursor: pointer;
}
.field-g select option {
    background: #F5F2EC;
    color: #1A1A2E;
}
.field-g input:focus,
.field-g select:focus,
.field-g textarea:focus {
    background: rgba(0, 0, 0, 0.06);
    border-color: var(--offering-color, #2C6671);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--offering-color, #2C6671) 14%, transparent);
}
.field-g input::placeholder,
.field-g textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
}
.field-hint {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.38);
    margin: 0;
}

/* ── Mental Wellbeing ────────────────────────────────── */

.mw-agree-block {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    padding: 1.15rem 1.2rem;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}
.checkbox-row input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.cb-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: all 0.2s;
}
.cb-box::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0;
    transition: opacity 0.15s;
}
.checkbox-row input:checked + .cb-box {
    background: var(--offering-color, #2C6671);
    border-color: var(--offering-color, #2C6671);
}
.checkbox-row input:checked + .cb-box::after { opacity: 1; }

.cb-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.83rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.55;
}

.mw-divider {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(0, 0, 0, 0.3);
    margin: 0.25rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ── Yes / No toggles ────────────────────────────────── */

.yn-q {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.yn-q:last-child { border-bottom: none; }

.yn-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.55;
    margin: 0;
}
.yn-btns { display: flex; gap: 0.5rem; }

.yn {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.44rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.04);
    color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transition: all 0.2s;
}
.yn:hover {
    border-color: rgba(0, 0, 0, 0.28);
    color: rgba(0, 0, 0, 0.72);
    background: rgba(0, 0, 0, 0.07);
}
.yn.selected-yes,
.yn.selected-no,
.yn.selected-na {
    background: var(--stormy-teal, #2C6671);
    border-color: var(--stormy-teal, #2C6671);
    color: #fff;
}

.yn-follow { margin-top: 0.1rem; }
.yn-follow input {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    padding: 0.6rem 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    width: 100%;
    background: rgba(0, 0, 0, 0.04);
    color: var(--black-navy, #1A1A2E);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
    caret-color: var(--offering-color, #2C6671);
}
.yn-follow input::placeholder { color: rgba(0, 0, 0, 0.3); }
.yn-follow input:focus {
    background: rgba(0, 0, 0, 0.06);
    border-color: var(--offering-color, #2C6671);
}

/* ── Review ──────────────────────────────────────────── */

.apply-review {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.review-group {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1rem 1.2rem;
}
.review-group-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.3);
    margin: 0 0 0.7rem;
    text-transform: uppercase;
}
.review-row {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.55rem;
}
.review-row:last-child { margin-bottom: 0; }
.review-key {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.71rem;
    color: rgba(0, 0, 0, 0.38);
}
.review-val {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    color: rgba(0, 0, 0, 0.8);
    white-space: pre-wrap;
    word-break: break-word;
}

.apply-submit-btn {
    width: 100%;
    background: var(--rust, #C3703D);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1.1rem 2rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.apply-submit-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

/* ── Success ─────────────────────────────────────────── */

.a-step--success {
    text-align: center;
    padding: 2.5rem 0 1rem;
}
.success-star {
    font-size: 3.5rem;
    color: var(--offering-color, #2C6671);
    margin-bottom: 1rem;
    display: block;
    animation: starPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes starPop {
    from { opacity: 0; transform: scale(0.3) rotate(-25deg); }
    to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.a-step--success .btn-lg {
    background: var(--offering-color, #2C6671);
    border-color: var(--offering-color, #2C6671);
    color: #fff;
}
.a-step--success .btn-secondary {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.a-step--success .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.8);
}

/* ── Bottom navigation ───────────────────────────────── */

.card-nav {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    z-index: 100;
}
.card-nav-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.card-back-btn {
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.card-back-btn:hover {
    background: rgba(0, 0, 0, 0.09);
    color: rgba(0, 0, 0, 0.65);
}
.card-next-btn {
    background: var(--rust, #C3703D);
    color: #fff;
    min-width: 145px;
    letter-spacing: 0.02em;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 2px 16px rgba(195, 112, 61, 0.25);
}
.card-next-btn:hover:not(:disabled) {
    opacity: 0.85;
    transform: translateY(-2px);
}
.card-next-btn:disabled {
    opacity: 0.22;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ── Error ───────────────────────────────────────────── */

.apply-error {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: #C3703D;
    background: rgba(195, 112, 61, 0.08);
    border-radius: 6px;
    padding: 0.5rem 0.85rem;
    margin: 0.75rem 0 0;
    display: none;
}
.apply-error.visible { display: block; }

/* ── Ghost check ─────────────────────────────────────── */

.step-ghost--check {
    color: var(--offering-color, #2C6671);
    opacity: 0.08;
}

/* ── Utilities ───────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 640px) {
    .apply-main {
        padding: 6rem 1.4rem 5.5rem;
    }
    .apply-context-back { display: none; }
    .offering-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .step-h { font-size: 2.2rem; }
    .step-ghost { font-size: 7rem; right: -0.5rem; }
    .apply-top-chrome { padding: 0.9rem 1.25rem; }
}
