/* ============================================================
   Donation-request flow — LANDING page (Index.aspx) styles.

   Page-specific only. The shared theme tokens, layout shell,
   card and base typography live in card-base.css
   (loaded by RequestDonation.Master). Loaded by Index.aspx.
============================================================ */

/* ---- SPA screen toggle (landing <-> entry) ---- */
.screen-view {
    display: none;
}

.screen-view.is-shown {
    display: block;
}

/* ---- Headings / typography ---- */
h1.title--landing {
    font-size: 23px;
    line-height: 1.22;
    margin: 2px 0 14px;
}

.lede {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 18px;
}

.para {
    font-size: 14px;
    line-height: 1.62;
    color: #46555e;
    margin: 0 0 12px;
}

/* ---- Buttons ---- */
/* .btn-primary base + :hover live in card-base.css (shared by every step). */
.btn-primary--lg {
    height: 52px;
    min-width: 240px;
    width: auto;
    padding: 0 30px;
    border-radius: 11px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 6px 18px rgba(19, 49, 74, .25);
}

.center {
    display: flex;
    justify-content: center;
}

/* ---- Choice cards (new / returning) ---- */
.choice {
    width: 100%;
    text-align: left;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 15px 16px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.choice:hover {
    border-color: var(--blue);
    background: #f5fafd;
}

.choice__icon {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
}

.choice__icon--new {
    background: #eaf4fb;
    color: var(--blue);
}

.choice__icon--ret {
    background: #eef1f3;
    color: #46555e;
    font-size: 17px;
}

.choice__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.choice__sub {
    display: block;
    font-size: 12.5px;
    color: var(--muted-2);
    margin-top: 2px;
}

/* ---- Links / footer ---- */
/* .link-back and .center-mt live in card-base.css (shared by every step). */
.foot-links {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12.5px;
}

.foot-links a {
    color: #65747e;
    text-decoration: none;
    cursor: pointer;
}

.foot-links .sep {
    color: #c4ced4;
}

.byline {
    margin-top: 9px;
    text-align: center;
    font-size: 10.5px;
    color: #9aa7af;
}

/* ============================================================
   Mobile
============================================================ */
@media (max-width: 600px) {
    .title-br {
        display: none;
    }
}
