.content {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 2rem;
    display: flex;
}

.content__text {
    max-width: 1350px;
    -webkit-hyphens: auto;
    hyphens: auto;
    margin: 2rem 0 0;
    font-size: clamp(1rem, 5vw, 2.5rem);
    font-weight: 300;
    line-height: 1.1;
}

.content__text-img {
    max-height: 1.85rem;
    vertical-align: center;
    margin: 0 0.5rem 0 0;
}

.content__title {
    margin: 2.5rem 0 0;
    font-weight: 400;
}

.content__more {
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 2rem;
    font-weight: 700;
}

.grid {
    width: 92%;
    grid-gap: 1rem;
    pointer-events: none;
    grid-template-columns: repeat(3, 1fr);
    margin: 2rem auto;
    display: grid;
}

.grid__item {
    will-change: transform;
    pointer-events: auto;
    margin: 0;
    position: relative;
}

.grid__item-img {
    width: 100%;
    aspect-ratio: 1/1.25;
    cursor: pointer;
    background-size: cover;
}

@media screen and (min-width: 53em) {
    .frame {
        grid-template: "title sponsor"/20rem 1fr;
        align-content: space-between;
        display: grid;
    }

    .frame__title {
        justify-content: end;
    }

    .frame__title-prev {
        margin-left: auto;
    }

    .frame--footer {
        text-align: left;
        grid-template-columns: 1fr auto 1fr;
        line-height: 1;
        display: grid;
    }

    .grid {
        width: 92%;
        grid-template-columns: repeat(3, 1fr);
    }

    .grid--medium {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid--narrow {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
}
