/*
 * Dr. Bess Homepage Books Gateway
 * Front-page presentation only. No book/universe data is changed.
 */

.dbhbg-active {
    position: relative;
}

.dbhbg-gateway {
    box-sizing: border-box;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 6.25rem) clamp(1.25rem, 4vw, 3rem);
    text-align: center;
    grid-column: 1 / -1;
}

.dbhbg-eyebrow {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #87611d;
}

.dbhbg-title {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3.1rem, 8vw, 7.25rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.dbhbg-title-link {
    color: #111111;
    text-decoration: none;
    text-decoration-thickness: 0.06em;
    text-underline-offset: 0.12em;
}

.dbhbg-title-link:hover,
.dbhbg-title-link:focus-visible {
    text-decoration: underline;
}

.dbhbg-title-link:focus-visible,
.dbhbg-button:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 5px;
}

.dbhbg-copy {
    max-width: 820px;
    margin: 1.75rem auto 0;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.7;
    color: #363636;
}

.dbhbg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    min-height: 52px;
    padding: 0.95rem 1.55rem;
    border: 2px solid #0d2548;
    border-radius: 999px;
    background: #0d2548;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.dbhbg-button:hover,
.dbhbg-button:focus-visible {
    background: transparent;
    color: #0d2548;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .dbhbg-gateway {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .dbhbg-title {
        font-size: clamp(2.7rem, 15vw, 4.6rem);
    }

    .dbhbg-copy {
        line-height: 1.6;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dbhbg-button {
        transition: none;
    }
}
