.editor-picks {
    padding: 32px 0;
}

.editor-picks-static {
    padding-bottom: 160px;
}

.editor-picks-static .block-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    align-items: stretch;
}

.editor-picks-static .block-column {
    width: auto;
    min-width: 0;
}

.editor-picks-static .column-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
}

.editor-picks-static .content-bottom {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 32px;
    padding-bottom: 32px;
}

.editor-picks-static .content-bottom-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--primary);
    font-size: 16px;
}

.editor-picks-static .content-bottom-text strong {
    font-weight: 700;
}

.editor-picks-static .content-bottom-text .headline {
    color: var(--primary);
    font-family: var(--font-accent);
    letter-spacing: 3%;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
}

.editor-picks-static .content-bottom .btn-wrapper {
    flex: 0 0 225px;
    width: 225px;
}

.editor-picks-static .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.editor-picks-static .display-mobile {
    display: none;
}

@media (max-width:991px) {
    .editor-picks-static {
        padding-bottom: 32px;
    }

    .editor-picks-static .block-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .editor-picks-static .column-content {
        height: auto;
    }

    .editor-picks-static .content-bottom {
        margin-top: 0;
        flex-direction: column;
    }

    .editor-picks-static .content-bottom .btn-wrapper {
        display: none;
    }

    .editor-picks-static .content-bottom-text {
        width: 100%;
    }

    .editor-picks-static .display-mobile {
        display: flex;
        margin-top: 32px;
    }
}
