@charset "UTF-8";

.mdr-fullscreen-info {
    --bg: var(--mdr--light-grey);
    padding: 60px var(--mdr--padding-horizontal) var(--mdr--padding-vertical);
}
.mdr-fullscreen-info::before {
    content: "";
    display: block;
    background: var(--bg);
    background-size: cover;
    background-position: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 400px;
    margin-bottom: 40px;
    border-radius: 10px;
}
.mdr-fullscreen-info__textual-content {
    display: flex;
    flex-flow: column nowrap;
    row-gap: 40px;
    min-height: inherit;
    justify-content: center;
}
.mdr-fullscreen-info__title {
    max-width: 15.7ch;
}
.mdr-fullscreen-info__text {
    max-width: 50ch;
}
.mdr-fullscreen-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
    grid-auto-rows: auto;
    grid-gap: 12px;
    align-items: stretch;
    margin-top: auto;
}
.mdr-fullscreen-info__grid__cell {
    background-color: var(--mdr--light-grey);
    border-radius: 10px;
   
    max-width: 100%;
    padding: 15px;
    
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: space-between;
}
.mdr-fullscreen-info__grid__cell__label {
    font-size: 11.5px;
    line-height: 1.1em;
    font-weight: 500;
    text-transform: uppercase;
}
.mdr-fullscreen-info__grid__cell__value {
    font-size: 15px;
    line-height: 1em;
    margin-top: 50px;
}
.mdr-fullscreen-info__grid__cell__value strong {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .mdr-fullscreen-info {
        display: grid;
        grid-template-areas: ". content .";
        grid-template-columns: 1fr min(100%, 1338px) 1fr;
    }
    .mdr-fullscreen-info__textual-content {
        grid-area: content;
    }
    
    .mdr-fullscreen-info {
        position: relative;
        min-height: 80vh;
    }
    .mdr-fullscreen-info::before {
        position: absolute;
        inset: 0px;
        max-height: 100%;
        z-index: -1;
        aspect-ratio: auto;
        margin-bottom: 0;
        border-radius: 0;
    }
    .mdr-fullscreen-info::after {
        content: "";
        display: block;
        position: absolute;
        inset: 0px;
        z-index: -1;
        
        background-color: var(--mdr--pure-black);
        opacity: 0.4;
    }
    
    .mdr-fullscreen-info__textual-content {
        color: var(--mdr--pure-white);
    }
    .mdr-fullscreen-info__grid {
        grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
        grid-gap: 48px;
    }
    .mdr-fullscreen-info__grid__cell {
        color: var(--mdr--dark-grey);
        background-color: var(--mdr--pure-white);
        aspect-ratio: auto;
    }
    
    
    .mdr-fullscreen-info__grid__cell__value {
        font-size: 15px;
        line-height: 1.1em;
    }
    .mdr-fullscreen-info__grid__cell__value strong {
        font-size: 22px;
        line-height: 26px;
    }
}
@media screen and (min-width: 881px) {
    .mdr-fullscreen-info__grid {
        grid-template-columns: repeat(4, minmax(156px, 1fr));
    }
}