.book-preorder-banner {
    position: relative;
    width: 100%;
    padding: 72px 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(177, 43, 43, 0.12), transparent 34%),
        radial-gradient(circle at 85% 100%, rgba(177, 43, 43, 0.08), transparent 30%),
        linear-gradient(180deg, #0d0d0f 0%, #09090b 100%);
    color: #ffffff;
}

.book-preorder-banner *,
.book-preorder-banner *::before,
.book-preorder-banner *::after {
    box-sizing: border-box;
}

.book-preorder-banner__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.book-preorder-banner__header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.book-preorder-banner__eyebrow {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #c94b4b;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    text-transform: uppercase;

    transform: translateY(-6px);
}

.book-preorder-banner__title {
    margin: 26px 0 0;

    color: #ffffff;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 950;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.book-preorder-banner__author {
    margin: 18px 0 0;
    color: #d4d4d8;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    font-style: normal;
}

.book-preorder-banner__description {
    max-width: 520px;
    margin: 15px auto 0;
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.7;
}

.book-preorder-banner__delivery {
    color: #c94b4b;
    font-size: 0.78rem;
    margin-top: 10px;
}

.book-preorder-banner__products {
    max-width: 460px;
    margin: 48px auto 0;
    /*
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    */
}

.book-preorder-card {
    min-width: 0;
    overflow: hidden;
    background: rgba(11, 11, 13, 0.96);
    border: 1px solid #27272a;
    border-radius: 5px;
    transition:
        border-color 180ms ease,
        transform 180ms ease,
        background-color 180ms ease;
}

.book-preorder-card:hover {
    border-color: rgba(177, 43, 43, 0.7);
    background: #111113;
    transform: translateY(-2px);
}

.book-preorder-card__image-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #09090b;
}

.book-preorder-card__image-link::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 24%;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(9, 9, 11, 0.45),
        transparent
    );
}

.book-preorder-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 250ms ease;
}

.book-preorder-card:hover .book-preorder-card__image {
    transform: scale(1.02);
}

.book-preorder-card__content {
    padding: 18px;
}

.book-preorder-card__label {
    display: block;
    color: #c94b4b;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.book-preorder-card__title {
    margin: 7px 0 0;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1.2;
    text-transform: uppercase;
}

.book-preorder-card__author {
    color: #757576;
    text-transform: uppercase;
    font-style: italic;
}

.book-preorder-card__button {
    min-height: 46px;
    margin-top: 18px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: #ffffff;
    background: #b12b2b;
    border: 1px solid #b12b2b;
    border-radius: 4px;

    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 160ms ease,
        border-color 160ms ease;
}

.book-preorder-card__button svg {
    flex: 0 0 auto;
    transition: transform 160ms ease;
}

.book-preorder-card__button:hover {
    background: #982525;
    border-color: #982525;
}

.book-preorder-card__button:hover svg {
    transform: translateX(3px);
}

.book-preorder-card__button:focus-visible,
.book-preorder-card__image-link:focus-visible {
    outline: 2px solid rgba(177, 43, 43, 0.75);
    outline-offset: 3px;
}

@media (max-width: 700px) {
    .book-preorder-banner {
        padding: 52px 16px;
    }

     .book-preorder-banner__title {
        margin-top: 22px;
        font-size: clamp(2.8rem, 15vw, 4.8rem);
    }

    .book-preorder-banner__products {
        margin-top: 36px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .book-preorder-card {
        display: grid;
        grid-template-columns: 125px minmax(0, 1fr);
    }

    .book-preorder-card__image-link {
        height: 100%;
    }

    .book-preorder-card__image {
        height: 100%;
        min-height: 170px;
        aspect-ratio: auto;
    }

    .book-preorder-card__content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 16px;
    }

    .book-preorder-card__button {
        width: 100%;
        margin-top: 15px;
        padding-inline: 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 440px) {
    .book-preorder-banner {
        padding: 44px 14px;
    }

    .book-preorder-banner__eyebrow {
        transform: translateY(-4px);
    }

    .book-preorder-banner__author {
        font-size: 0.9rem;
    }

    .book-preorder-banner__description {
        font-size: 0.88rem;
    }

    .book-preorder-card {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    .book-preorder-card__image {
        min-height: 155px;
    }

    .book-preorder-card__content {
        padding: 13px;
    }

    .book-preorder-card__title {
        font-size: 1rem;
    }

    .book-preorder-card__button {
        min-height: 42px;
        font-size: 0.65rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .book-preorder-card,
    .book-preorder-card__image,
    .book-preorder-card__button,
    .book-preorder-card__button svg {
        transition: none;
    }

    .book-preorder-card:hover {
        transform: none;
    }

    .book-preorder-card:hover .book-preorder-card__image {
        transform: none;
    }
}