.magazineItemImage {
    position: relative;
    display: flex;
    justify-content: center;
    aspect-ratio: 16 / 9;
}
.magazineItemImage:after {
    content: "";
    position: absolute;
    z-index: 20;
    width: 100%;
    top: calc(100% - 33.33%);
    height: 33.33%;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.magazineItem {
    position: relative;
}
.magazineItemLink {
    position: absolute;
    z-index: 20;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
}
.magazineItemImage img {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    display: block;
    border-radius: 2px;
}
/*.magazineItemLinkTop {
    width: 100%;
    z-index: 30;
}*/
.magazineTag {
    position: absolute;
    z-index: 50;
    left: 20px;
    bottom: 20px;
    border: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;
    font-size: 1.125rem;
    white-space: nowrap;
    padding: 4px 10px 5px 10px;
    border-radius: 20px;
}
.magazineTag button {
    color: #ffffff;
    transition: all 250ms ease;
}
.magazineItemContent * {
    font-weight: 300;
}
.magazineItemHeader {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 15px 0;
    margin-bottom: 15px;
}
.magazineTagline {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    text-transform: uppercase;
}
.magazineMeta {
    display: flex;
    align-items: center;
    padding-right: 20px;
}
.magazineReadtime, .magazineDate {
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    white-space: nowrap;
}
.magazineReadtime {
    padding-left: 23px;
    position: relative;
}
.magazineReadtime span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 15px;
    font-weight: bold;
}
.magazineDate {
    margin-left: 10px;
}
.magazineDate:before {
    content: "•";
    display: inline-block;
    padding-right: 10px;
}
.magazineHeadline {
    display: block;
}
.magazineHeadline * {
    font-size: 36px;
    line-height: 45px;
    font-weight: 300;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
.magazineHeadline br {
    display: none;
}
.magazineItemCopytext {
    font-size: 18px;
    line-height: 28px;
    margin-top: 30px;
}
.magazineItemFooter {
    display: none;
}
.magazineItemTags {
    display: none;
}
.magazineItemContent .magazineItemTag {
    margin-right: 10px;
}
@media (hover: hover) and (pointer: fine) {
    .magazineTag:hover {
        color: #ffffff;
        background: #ff003a;
        border-color: #ff003a;
        transition: all 250ms ease;
    }
    .magazineHeadline h3 {
        display: inline;
        background-image: linear-gradient(rgba(255,0,58,0.3), rgba(255,0,58,0.3));
        background-position: 0% 100%;
        background-repeat: no-repeat;
        background-size: 0% 2%;
        transition: background-size 600ms;
    }
    .magazineItem:hover .magazineHeadline h3 {
        background-size: 100% 2.5%;
    }
}
@media (max-width: 767px) {
    .magazineHeadline * {
        font-size: 24px;
        line-height: 29px;
    }
    .magazineMeta {
        flex-wrap: wrap;
    }
    .magazineMeta > * {
        margin-bottom: 10px;
    }
    .magazineItemHeader .magazineMeta {
        display: none;
    }
    .magazineItemFooter {
        display: block;
        margin-top: 15px;
    }
    .magazineSliderButtonWrap {
        padding: 30px 15px;
    }
    .magazineTag button {
        color: #404040;
    }
}