/* lato-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/lato-v24-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/lato-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-family: "Blacksword";
    src: url("https://db.onlinewebfonts.com/t/021bc4dec3aa02d937a51bdfdccc0f4d.eot");
    src: url("https://db.onlinewebfonts.com/t/021bc4dec3aa02d937a51bdfdccc0f4d.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/021bc4dec3aa02d937a51bdfdccc0f4d.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/021bc4dec3aa02d937a51bdfdccc0f4d.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/021bc4dec3aa02d937a51bdfdccc0f4d.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/021bc4dec3aa02d937a51bdfdccc0f4d.svg#Blacksword")format("svg");
}

strong {
    font-weight: 700;
}

*, *:after, *:before {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;

}

body {
    background-color: #F9F6F1;
    font-family: "lato", sans-serif;
    font-weight: 300;
    line-height: 1.6;
    font-size: clamp(1.00rem, calc(0.93rem + 0.33vw), 1.19rem);
}

ul {
    list-style-type: none;
    padding-inline-start: 0;
}

section {
    width: 100%;
    max-width: 1300px;
    margin-inline: auto;
    padding: 2vw 2vw 4vw 2vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 4vw;
    row-gap: clamp(2rem, 1.273rem + 3.64vw, 4rem);
}

img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.header {
    max-width: 400px;
    /*margin-inline: auto;*/
    grid-column: 1;
    grid-row: 1;
    margin-top: clamp(2rem, 1.273rem + 3.64vw, 4rem);
}

.content {
    grid-column: 1;
    grid-row: 2;
}

.pav {
    font-family: "Blacksword", sans-serif;
    color: black;
    font-size: 1.5rem;
    margin-top: 1rem;
}


.action {
    padding: 2vw 0 4vw 0;
    background-color: #F9F6F1;
    position: sticky;
    top: 0;
    text-align: center;
    grid-column: 1;
    grid-row: 3;
}

.action > span {
    position: relative;
    background-color: #BB973C;
    border: 1px solid #A38434;
    border-radius: 0.5ch;
    display: inline-block;
}

.action > span:after {
    content: "";
    border-bottom: 1px dotted #A38434;
    position: absolute;
    bottom: -2vw;
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
}

.action a {
    text-decoration: none;
    letter-spacing: 0.1rem;
    padding: 2ch 3ch;
    color: white;
    text-transform: uppercase;
    display: inline-block;
}

.action a:hover {
    background-color: #A38434;
}

.partners {
    max-width: 400px;
    margin-inline: auto;
}

.partners > p {
    text-align: center;
    margin-bottom: 2vw;
}

.media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    grid-column: 2 / -1;
    grid-row: 1 / span 5;
    margin-top: clamp(2rem, 1.273rem + 3.64vw, 4rem);
}

img.vertical {
    aspect-ratio: 3 / 4;
    grid-row: span 2;
}

img.horizontal {
    aspect-ratio: 6 / 4;
}

@media screen and (max-width: 1100px) {
    .media {
        grid-template-columns: unset;
    }

    section {
        grid-template-columns: 1fr 1fr;
    }

    .media {
        grid-column: 2;
    }
}

@media screen and (max-width: 800px) {
    section {
        grid-template-columns:  unset;
    }

    .header, .content, .media {
        grid-column: unset;
    }

    .header {
        grid-row: 1;
        margin-inline: auto;
    }
    .content {
        grid-row: 2;
    }

    .pav {
        text-align: center;
    }

    .media {
        grid-column: 1;
        grid-row: 5;
        margin-top: 0;
    }

    .partners {
        grid-row: 4;
    }

    .content > dl {
        text-align: center;
    }

    dl:nth-of-type(1) {
        margin-top: clamp(2rem, 1.273rem + 3.64vw, 4rem);
    }
}

span.green {
    color: #607551
}

span.gold {
    color: #bfa35c;
}

p + p {
    margin-top: 1em;
    /*margin-top: clamp(1rem, 0.636rem + 1.82vw, 2rem);*/
}

dt {
    font-weight: 700;
}

dt, dd, p {
    color: #617552;
    margin: 0;
    padding: 0;
}



dl {
    margin-top: 1em;
    margin-bottom: 0;
}

