.category-choice-main {
    width: min(960px, 90%);
    padding-top: 76px;
    padding-bottom: 110px;
}

.category-choice-hero {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}

.category-choice-hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.35rem, 4.2vw, 3.7rem);
    line-height: 1.05;
}

.category-choice-hero h1 span {
    color: #fff;
    white-space: nowrap;
}

.category-choice-hero p {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
}

.category-choice-grid {
    grid-template-columns: repeat(2, 320px);
    justify-content: center;
    gap: 34px;
}

.category-choice-card {
    position: relative;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 300px;
    padding: 36px 30px 28px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.category-choice-card::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: inherit;
    background: rgba(0, 0, 0, .14);
    content: "";
    pointer-events: none;
}

.category-choice-card:hover {
    box-shadow: 0 24px 52px rgba(0, 0, 0, .36);
}

.category-choice-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.category-choice-content,
.category-choice-arrow {
    position: relative;
    z-index: 2;
}

.category-choice-content {
    margin: auto 0;
}

.category-choice-content strong,
.category-choice-content small {
    color: #fff;
}

.category-choice-content strong {
    margin-bottom: 13px;
    color: var(--green);
    font-size: 34px;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.category-choice-content small {
    max-width: 245px;
    line-height: 1.55;
}

.category-choice-arrow {
    margin-top: auto;
    color: var(--green);
    font-size: 24px;
    font-weight: 900;
    transition: transform .2s ease;
}

.category-choice-card:hover .category-choice-arrow {
    transform: translateX(4px);
}

@media (max-width: 760px) {
    .category-choice-main {
        width: min(92%, 440px);
        padding-top: 46px;
        padding-bottom: 80px;
    }

    .category-choice-hero {
        margin-bottom: 38px;
    }

    .category-choice-hero h1 {
        font-size: clamp(1.25rem, 7vw, 2.35rem);
    }

    .category-choice-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .category-choice-card {
        width: 100%;
        min-height: 280px;
    }
}
