﻿/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/


#main section.eoygr-section {

    --black:                #2e2e38;
    --white:                #ffffff;
    --yellow:               #ffe600;


    padding-block: 0;
    padding-left: 0;
    background-color: #63605b;
    -o-border-image: fill 0 -o-linear-gradient(left,#000000 50%, #63605b 50%);
       border-image: fill 0 -webkit-gradient(linear,left top, right top,color-stop(50%, #000000), color-stop(50%, #63605b));
       border-image: fill 0 linear-gradient(90deg,#000000 50%, #63605b 50%);
    border-image-outset: 0 100%;
}

body.has__skin #main section.eoygr-section {
    -o-border-image: none;
       border-image: none;
}

.eoygr-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;    
}

.eoygr-item > *:nth-child(1) {

    -ms-grid-row:                1;

    -ms-grid-column:                1;    
}

.eoygr-item > *:nth-child(2) {

    -ms-grid-row:                1;

    -ms-grid-column:                2;    
}

.eoygr-item > *:nth-child(3) {

    -ms-grid-row:                1;

    -ms-grid-column:                3;    
}

.eoygr-item > *:nth-child(4) {

    -ms-grid-row:                1;

    -ms-grid-column:                4;    
}

.eoygr-item > *:nth-child(5) {

    -ms-grid-row:                2;

    -ms-grid-column:                1;    
}

.eoygr-item > *:nth-child(6) {

    -ms-grid-row:                2;

    -ms-grid-column:                2;    
}

.eoygr-item > *:nth-child(7) {

    -ms-grid-row:                2;

    -ms-grid-column:                3;    
}

.eoygr-item > *:nth-child(8) {

    -ms-grid-row:                2;

    -ms-grid-column:                4;    
}

.eoygr-item-header {
    grid-column: 2 / -1;
    -ms-grid-row: 1;
    grid-row: 1 / 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1rem;
    padding-top: 3rem;
    padding-bottom: 0.5rem;
    z-index: 10;
}

.eoygr-item-header small {
    font-size: 1rem;
    margin: 0;
    line-height: 1;
    color: white;
}

.eoygr-item-header a {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100px;
            flex: 0 1 100px;
}

.eoygr-item-header a svg {
    fill: white;
}

.eoygr-item-image {
    position: relative;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / span 3;
    grid-row: 1 / -1;
}

.eoygr-item-image a {
    position: absolute;
    top: 0;
    left: 0;
}

.eoygr-item-image a,
.eoygr-item-image a img {
    width: 100%;
    height: 100%;
}

.eoygr-item-image a img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top left;
       object-position: top left;
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(70%, black), color-stop(95%, transparent));
    -webkit-mask-image: linear-gradient(to right, black 70%, transparent 95%);
    mask-image: -webkit-gradient(linear, left top, right top, color-stop(70%, black), color-stop(95%, transparent));
    mask-image: linear-gradient(to right, black 70%, transparent 95%);
}

.eoygr-item-content {
    grid-column: 3 / -1;
    -ms-grid-row: 2;
    grid-row: 2 / 2;
    background-color: white;
    padding: 2rem 2rem 2.5rem;
    margin-bottom: 1rem;
    z-index: 10;
}

.eoygr-item-content nav {
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2rem;
}

.eoygr-item-content nav span {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 140px;
            flex: 0 1 140px;
}

.eoygr-item-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
    color: var(--black);
}

.eoygr-item-content h2 a {
    color: inherit;
}

.eoygr-item-content p {
    margin-bottom: 3rem;
}

.eoygr-item-content > a {
    background-color: var(--yellow);
    color: var(--black);
    text-transform: uppercase;
    padding: 1em 2.5em;
    font-size: 0.9rem;
}