
p.excerpt {
    font-size: 0.75rem;
}

/* Row */
.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}
.row-standard {
    padding: 60px 0 60px 60px;
}


/* Emphasis Block
Right side image, left side content with included related stories
*/

.emphasis {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
    height: fit-content;
    background-color: #00000010;
    border-radius: 5px;
}


.emphasis-media {
    max-width:55%;
    max-height:100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-color: #00000010;
    border-radius: 5px;
}

.emphasis-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    height: fit-content;
    padding: 45px 45px 0 45px;
}

.emphasis-title {
    font-family: helvetica_black;
    font-size: 1.75rem;
}

.row-emphasis {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    margin-bottom: 60px;
}
.row-emphasis > * {
    width: 30%;
}


/* Minimal Block
Small, only certain features
*/


.minimal {
    display: flex;
    height: fit-content;
    padding: 0;
}
.row-emphasis .minimal:first-child {
    padding-left: 0;
}
.row-emphasis .minimal:last-child {
    padding-right: 0;
}
.title-minimal {
    font-family: helvetica_black;
    font-size: 1rem;

}


/* Standard Block 
Linear, vertical block of data
*/

.standard {
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.sidebar .standard:not(:last-child) {
    border-bottom: 4px solid #ffffff10;
}

.row-standard .standard {
    width: 25%;
    padding: 30px;
}
.row-standard .standard:first-child {
    padding-left: 0;
}
.row-standard .standard:last-child {
    padding-right: 0;
}
.row-standard .standard:not(:first-child) {
    border-left: 4px solid #ffffff10;
}

.standard-title,
.row_article-title 
{
    font-family: helvetica_black;
    font-size: 1.25rem;
}

.standard .excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
            line-clamp: 4; 
    -webkit-box-orient: vertical;
}



/* Issue Slider */
.slider {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0 0 5vw;
    overflow-x: hidden;
    overflow-y: hidden;
}
.slider-wrapper {
    position: relative;
    display: flex;
    width: fit-content;
    margin-bottom: 10px;
}
.issue {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 275px;
    width: 200px;
    border-radius: 5px;
    border: 4px solid #1a1a1a;
    background-size: cover;

    background-position: center;
    background-repeat: no-repeat;
    margin-right: 15px;
    box-sizing: content-box;
}
.issue:hover {
    border-color: #ffffff;
}
.issue p {
    font-family: helvetica_black;
    font-size: 1rem;
    width: 100%;
    padding: 10px 45px;
    text-align: center;
    line-height: 1.25;
}

.slider_wrapper_left,
.slider_wrapper_right {
    width: 30px;
    height: 30px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: magenta  ;
    border-radius: 100vh;
    border: 3px solid #3d3d3d;
    background-color: #ffffff10;
}

.slider_wrapper_right {
    position: relative;
    transform: translateY(-30px) translateX(40px) rotate(180deg);
}


/* Column Block */

.col_block {
    display: flex;
    flex-direction: column;
    padding: 120px 7vw;
}
.col_block > .row_article:not(:last-child) {
    margin-bottom: 90px;
}

/* Row Article Block */

.row_article {
    display: flex;
    justify-content: space-between;
}


.row_article-media {
    max-width:20%;
    max-height:100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-color: #00000010;
    border-radius: 5px;
}

.row_article-content {
    display: flex;
    flex-direction: column;
    width: 70%;
    height: fit-content;
}