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

.editor-picks .block-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
}

.editor-picks .block-column {
    width: calc(50% - 32px);
}

.editor-picks .column-sticky-content {
    position: sticky;
    top: var(--navbarHeight);
    height: calc(100vh - 75px);
    display: flex;
    flex-direction: column;
}

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

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

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

.editor-picks .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 .content-bottom .btn-wrapper {
    flex: 0 0 180px;
    width: 180px;
}

.editor-picks .posts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.editor-picks .posts-slider {
    display: contents;
}

.editor-picks .card-large {
    width: 100%;
    overflow: hidden;
}

.editor-picks .card-large .post-item {
    padding: 48px;
    aspect-ratio: 646 / 836;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.editor-picks .card-large .post-item__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform-origin: center center;
    transition: transform var(--duration-media) var(--ease-out-soft);
}

.editor-picks a.card-large:hover .post-item__media {
    transform: scale(var(--media-zoom));
}

.editor-picks .card-large .post-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 44.62%);
}

.editor-picks .card-large .post-item > :not(.post-item__media) {
    position: relative;
    z-index: 2;
}

.editor-picks .card-large .post-title {
    color: #fff;
    font-size: 54px;
}

.editor-picks .post-cat {
    display: flex;
    align-items: flex-start;
}

.editor-picks .card-large .post-category {
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(233, 241, 236, 0.25);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    font-size: 14px;
    font-family: var(--font-accent);
    letter-spacing: 3%;
}

.editor-picks .card-large .post-category .category-icon {
    filter: brightness(0) invert(1);
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.editor-picks .cards-small-row {
    display: flex;
    align-items: stretch;
    gap: 32px;
}

.editor-picks .cards-small-row .card-small {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
    min-width: 0;
}

.editor-picks .card-small .post-content,
.editor-picks .card-small {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.editor-picks .card-small .post-title {
    color: var(--black);
}

.editor-picks .card-small .post-category {
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 999px;
    background: #E9F1EC;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    font-size: 14px;
    font-family: var(--font-accent);
    letter-spacing: 3%;
}

.editor-picks .card-small .post-category  img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.editor-picks .card-small .post-thumbnail {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 10 / 12;
    flex-shrink: 0;
}

.editor-picks .card-small .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center;
    transition: transform var(--duration-media) var(--ease-out-soft);
}

.editor-picks a.card-small:hover .post-thumbnail img {
    transform: scale(var(--media-zoom));
}

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

.editor-picks .block-column.column-sticky {
    padding-top: 80px;
}

.editor-picks .content-top h2 {
    font-size: 93px;
}

@media (max-width:1199px) {
    .editor-picks .card-large .post-title {
        font-size: 36px;
    }

    .editor-picks .posts-wrapper {
        flex-direction: column;
        overflow: visible;
        gap: 24px;
    }

    .editor-picks .posts-wrapper > .card-large:first-child {
        width: 100%;
        flex: none;
    }

    .editor-picks .posts-wrapper > .card-large:first-child .post-item {
        aspect-ratio: 646 / 836;
        flex: none;
        height: auto;
        min-height: 0;
    }

    .editor-picks .posts-slider {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        align-items: stretch;
        margin-right: -32px;
        padding-right: 32px;
        scrollbar-width: none;
    }

    .editor-picks .posts-slider::-webkit-scrollbar {
        display: none;
    }

    .editor-picks .posts-slider .cards-small-row {
        display: contents;
    }

    .editor-picks .posts-slider .card-large,
    .editor-picks .posts-slider .card-small {
        flex: 0 0 min(280px, 78vw);
        max-width: none;
        scroll-snap-align: start;
        min-width: 0;
        align-self: stretch;
    }

    .editor-picks .posts-slider .card-large {
        flex: 0 0 min(300px, 85vw);
        display: flex;
        flex-direction: column;
    }

    .editor-picks .posts-slider .card-large .post-item {
        aspect-ratio: auto;
        flex: 1;
        height: 100%;
        min-height: 100%;
    }
}

@media (max-width:991px) {
    .editor-picks .block-wrapper {
        gap: 32px;
    }

    .editor-picks .card-small .post-title {
        font-size: 34px;
    }

    .editor-picks .block-column {
        width: 100%;
    }

    .editor-picks .column-sticky-content {
        height: auto;
        top: auto;
        position: relative;
        gap: 24px;
    }

    .editor-picks .content-bottom {
        flex-direction: column;
    }

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

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

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

    .editor-picks .card-large .post-item {
        padding: 24px;
    }

    .editor-picks .content-top h2 {
        font-size: 64px;
    }

    .editor-picks .block-column.column-sticky {
        padding-top: 32px;
    }

    .editor-picks .posts-slider {
        margin-right: -24px;
        padding-right: 24px;
    }

    .editor-picks .card-small .post-thumbnail {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width:575px) {
    .editor-picks .content-bottom-text .headline {
        font-size: 18px;
    }
    
    .editor-picks .posts-slider {
        margin-right: -24px;
        padding-right: 24px;
        scroll-snap-type: x mandatory;
    }

    .editor-picks .posts-slider .card-large,
    .editor-picks .posts-slider .card-small {
        flex: 0 0 100%;
    }

    .editor-picks .card-large .post-title {
        font-size: 28px;
    }
}