/*==========================================================
EDITORIAL IMAGE SYSTEM
==========================================================*/

/* Full Bleed */

.alignfull{

margin:160px calc(50% - 50vw);

max-width:100vw;

}

/* Wide */

.alignwide{

max-width:1200px;

margin:140px auto;

}

/* Editorial */

.editorial-story img{

display:block;

width:100%;

height:auto;

}

/* Inset */

.editorial-inset{

max-width:620px;

margin:140px auto;

}

/* Diptych */

.editorial-diptych{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:28px;

margin:160px 0;

}

/* Triptych */

.editorial-triptych{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin:160px 0;

}

@media(max-width:900px){

.editorial-diptych,

.editorial-triptych{

grid-template-columns:1fr;

}

}