/* ==========================================================
EDITORIAL BUTTONS
========================================================== */

.editorial-button{

display:inline-flex;

align-items:center;

gap:20px;

font-family:var(--font-body);

letter-spacing:.18em;

text-transform:uppercase;

font-size:.78rem;

text-decoration:none;

color:var(--color-text);

transition:.35s ease;

}

.editorial-button span{

width:50px;

height:1px;

background:currentColor;

transition:.35s ease;

}

.editorial-button:hover{

color:var(--color-accent);

transform:translateX(6px);

}

.editorial-button:hover span{

width:85px;

}

.load-more{

cursor:pointer;

margin-top:80px;

}