.editorial-cards {
    margin-bottom: 10px;
    padding: 30px var(--space-10) 37px var(--space-10);
    background: #f3f2ee;
}

.editorial-cards .inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.editorial-cards .header {
    margin-bottom: 34px;
}

.editorial-cards .header .heading {
    font-family: var(--font-display-script);
    font-weight: normal;
    font-size: 55px;
    line-height: 0.65;
}

.editorial-cards .header .subtitle {
    display: block;
    font-family: var(--font-display-alt);
    font-weight: normal;
    font-size: 55px;
    line-height: .85;
}

.editorial-cards .view-all {
    display: none;
}

.editorial-cards .view-all-mobile {
    display: flex;
    justify-content: center;
}

.editorial-cards .slides {
    display: flex;
	flex-direction: column;
}

.editorial-cards .slide {
    position: relative;
    margin-bottom: 42px;
}

.editorial-cards .slide .img-cont {
    margin-bottom: var(--space-3);
    overflow: hidden;
}

.editorial-cards .slide-img {
    transform: none;
    width: 100%;
    transition: transform ease-out .4s;
}

.editorial-cards .slide-title {
    margin-bottom: 6px;
    font-family: var(--font-body-bold);
    font-weight: normal;
    font-size: 18px;
    line-height: 1.2;
}

.editorial-cards .details {
    font-family: var(--font-body);
    font-weight: normal;
    font-size: var(--text-base);
    line-height: var(--leading-normal);
}

.editorial-cards .details a {
    font: inherit;
    color: inherit;
    text-decoration: none;
}

@media (hover: hover) {
    .editorial-cards .slide:hover .slide-title a,
    .editorial-cards .details a:hover {
        text-decoration: underline;
    }

    .editorial-cards .slide-img:hover {
        transform: scale(1.1);
    }
}

@media (min-width: 50em) {
    .editorial-cards .header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: var(--space-4);
    }

    .editorial-cards .header .heading {
        font-size: 80px;
    }

    .editorial-cards .header .subtitle {
        margin-top: var(--space-1);
        font-size: 90px;
    }

    .editorial-cards .view-all {
        display: inline-block;
    }

    .editorial-cards .view-all-mobile {
        display: none;
    }

    .editorial-cards .slides {
        flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
        gap: 22px;
    }

    .editorial-cards .slide {
        margin: 0;
        flex: 0 0 calc(33.333333% - 22px);
    }
}

@media (min-width: 64em) {
    .editorial-cards {
        margin-bottom: 26px;
        padding: 130px var(--space-10) 116px var(--space-10);
    }

    .editorial-cards .slide-title {
        font-size: 22px;
        letter-spacing: .01rem;
    }
    
    .editorial-cards .details {
        font-size: 20px;
        line-height: 1.35;
    }
}