.start-keytopics {
    position: relative;
}

.start-keytopics__asset {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 2.5rem;
    overflow: hidden;
    object-fit: cover;

    @media (min-width: 768px) {
        bottom: 5rem;
    }

    @media (min-width: 992px) {
        bottom: 7.5rem;
    }

    @media (min-width: 992px) {
        bottom: 10rem;
    }

    & > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    & > video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.start-keytopics__content {
    position: relative;
    z-index: 1;
    padding-top: 3.75rem;
    text-align: center;

    @media (min-width: 768px) {
        padding-top: 6.25rem;
        text-align: left;
    }

    @media (min-width: 992px) {
        padding-top: 13.75rem;
    }
}

.start-keytopics__header {
    color: #fff;
}

.start-keytopics__subheader {
    color: #fff;
    font-size: 1.25rem;

    @media (min-width: 992px) {
        font-size: 1.75rem;
    }

    @media (min-width: 1330px) {
        font-size: 2.25rem;
    }
}

.start-keytopics__topics {
    position: relative;
    z-index: 1;
    display: grid;
    margin-top: 2.5rem;
    gap: 0.5rem;

    @media (min-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto 1fr;
        margin-top: 4.375rem;
        margin-bottom: 2.5rem;
    }

    @media (min-width: 992px) {
        aspect-ratio: 3.04 / 1; /* .04 to offset the gap */
        margin-top: 6.25rem;
    }

    @media (min-width: 1330px) {
        margin-top: 7.5rem;
    }
}

.start-keytopics__link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 1.25rem;
    background: transparent linear-gradient(180deg, #B7172F 0%, #58000D 100%) 0 0 no-repeat padding-box;
    color: #fff;
    transition: transform 0.2s ease-in-out;
    padding: 2rem;
    position: relative;

    @media (min-width: 540px) {
        display: grid;
        grid-row: span 2;
        grid-template-rows: subgrid;
        align-items: start;
        justify-content: start;
        position: relative;
    }

    @media (min-width: 992px) {
        padding-bottom: 4rem;
    }

    @media (min-width: 1330px) {
        gap: 2.625rem;
    }

    &:hover {
        transform: scale(1.03);
    }
}

.start-keytopics__topic__header {
    grid-row: 1;
    font-size: 1.5rem;
    font-family: DaxWeb-Medi;
    line-height: 1.05;

    @media (min-width: 992px) {
        font-size: 2.25rem;
    }

    @media (min-width: 1330px) {
        font-size: 3rem;
    }
}

.start-keytopics__topic__text {
    display: none;

    @media (min-width: 540px) {
        grid-row: 2;
        display: block;
    }
}

.start-keytopics__topic__arrow {

    @media (min-width: 540px) {
        position: absolute;
        bottom: 1rem;
        right: 2rem;
    }

    @media (min-width: 992px) {
        bottom: 2rem;
        right: 2rem;
    }

    svg {
        width: 2rem;

        @media (min-width: 992px) {
            width: 4rem;
        }
    }
}
