
.editorial-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.editorial-collection {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}


.editorial-item.reverse {
    flex-direction: row-reverse;
}

.editorial-item:hover img {
    transform: scale(1.04);
}

.category-label {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a1a1a1;
    margin-bottom: 12px;
}

.editorial-text h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-family: copperplate;
}

.editorial-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    max-width: 45ch;
        font-family: copperplate;
}

.editorial-cta {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 4px;
    transition: opacity 0.3s;
}

.editorial-cta:hover {
    opacity: 0.5;
}


.editorial-image-link {
    display: block;
    flex: 0 0 45%; 
    text-decoration: none;
    cursor: pointer;
}

.editorial-image {
    flex: 0 0 45%; 
    width: 100%;
    overflow: hidden;
    background-color: #fcfcfc;
}

.editorial-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.editorial-image-link:hover img {
    transform: scale(1.05);
}

.editorial-item {
    padding: 40px; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), 
                transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: opacity, transform;
    border: ridge;
}

.editorial-item.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.editorial-item.reveal-active .editorial-text {
    transition-delay: 0.2s;
}

.editorial-text {
    flex: 0 0 40%;
    text-align: left;
    width: 100%; 
    overflow-wrap: break-word; 
    word-wrap: break-word;     
    white-space: normal;     
    word-break:unset; 
    max-width: 65ch; 
    margin: 0 auto;  
}

.category-label {
    font-size: 26px;
    font-family: sans-serif;
    letter-spacing: 5px;
    text-transform: capitalize;
    font-weight: 300 !important;
    margin-bottom: 0px;
    color: #1a1a1a;
    margin-top: 0px;
}

.section-title {
    font-size: 30px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 42px;
    color: #1a1a1a;
    margin-top: 80px;
    font-family: copperplate;
}


@media (max-width: 768px) {

    .editorial-item {
    padding: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), 
                transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: opacity, transform;
    border: ridge;
}


    .editorial-item, .editorial-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .editorial-text { padding-top: 30px; text-align: center; }

    .editorial-text h2 {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #1a1a1a;
    }

    .editorial-image img {
        object-fit: cover;
        display: block;
        transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .editorial-collection {
        max-width: 1200px;
        margin: 0 auto;
        padding-bottom: 0;
    }

    .editorial-description {
    margin-left: auto;
    margin-right: auto;
    font-family: copperplate;
}
}




