@charset "UTF-8";


.mdr-key-numbers {
    padding: var(--mdr--padding-vertical) var(--mdr--padding-horizontal);
    
    display: flex;
    flex-flow: column nowrap;
    row-gap: 60px;
    color: var(--legible-color, var(--mdr--dark-grey));
}

.mdr-key-numbers__text-content {
    flex: 1 1 327px;
    
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
}

.mdr-key-numbers__text {
    margin-top: 30px;
}

.mdr-key-numbers__grid {
    /* 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
    */
    
    display: flex;
    flex-flow: row wrap;
    gap: 14px;
    grid-gap: 12px;
    
    padding-top: 50px;
    margin-top: auto;
}
.mdr-key-numbers__grid__cell {
    min-height: 158px;
    padding: 15px;
    background-color: var(--mdr--light-grey);
    border-radius: 10px;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: space-between;
    
    flex: 1;
    color: var(--mdr--dark-grey);
}


.mdr-key-numbers:not([style="background-color: var(--mdr--pure-white);"]) .mdr-key-numbers__grid__cell {
    background-color: var(--mdr--pure-white--60);
}

.mdr-key-numbers__grid__cell__title {
    font-size: 11.5px;
    line-height: 12.65px;
    font-weight: 500;
    text-transform: uppercase;
}
.mdr-key-numbers__grid__cell__value {
    font-family: "Black Mango", serif;
    font-size: 38px;
    line-height: 0.8em;
    font-weight: 900;
    
    margin-top:15px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
}
.mdr-key-numbers__grid__cell__value__number {
    white-space: nowrap;
}
.mdr-key-numbers__grid__cell__value__suffix {
    align-self: flex-start;
    font-size: 0.4em;
    line-height: 1em;
}

.mdr-key-numbers__img {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    width: 100%;
    max-height: 400px;
}

@media screen and (min-width: 768px) {
    .mdr-key-numbers {
        flex-flow: row wrap;
        column-gap: min(10vw, 137px);
        align-content: space-between;
    }
    
    .mdr-key-numbers__text {
        margin-top: 35px;
    }
    .mdr-key-numbers__grid {
        flex-flow: row wrap;
        gap: 14px;
        
        padding-top: 74px;
        margin-top: auto;
    }
    .mdr-key-numbers__grid__cell {
        flex: 1;
    }
    
    .mdr-key-numbers__grid__cell__title {
        font-size: 14.5px;
        line-height: 14.5px;
    }
    .mdr-key-numbers__grid__cell__value {
        font-size: 68px;
    }
    
    .mdr-key-numbers__img-container {
        flex: 1 1 283px;
    }
    .mdr-key-numbers__img {
        aspect-ratio: auto;
        width: 100%;
        height: 100%;
        
        position: sticky;
        max-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - 2 * var(--mdr--padding-horizontal));
        top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--mdr--padding-horizontal));
    }
}

@media screen and (min-width: 1441px) {
    .mdr-key-numbers {
        grid-template-areas: ". txt img .";
        grid-template-columns: 1fr 656px min(42%, 546px) 1fr;
        justify-content: center;
    }
}