.hero {
    margin-left: calc(var(--wp--custom--body--margin) * -1);
    position: relative;
    width: calc(100% + calc(var(--wp--custom--body--margin) * 2));
}

.archive-header {
    padding: calc(var(--wp--custom--gutter) * 1.5) var(--wp--custom--body--margin) 0;
}

.archive-title {
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.archive-description {
    margin-bottom: 3rem;
    margin-top: 0;
}

.archive-description p:first-child {
    font-size: var(--wp--preset--font-size--large);
}

.archive-description .wp-block-button {
    font-size: 1.125em;
}

.archive-content {
    background-color: var(--wp--preset--color--background-light);
    margin-bottom: 0;
    margin-left: calc(var(--wp--custom--gutter) * -1);
    padding: var(--wp--custom--gutter);
    width: calc(100% + (var(--wp--custom--gutter) * 2));
}

.archive-content ul {
    list-style: none;
    margin-top: var(--wp--custom--gutter);
    padding-left: 0;
}

.archive-content li {
    font-size: 1.125em;
    font-weight: 500;
    margin-bottom: 0.25em;
}

.archive-content li a {
    text-decoration: underline dotted;
}

.archive-content li a:hover {
    text-decoration-style: solid;
}

.archive-content ul + p {
    margin-top: 1.5em;
}

.featured-image {
    margin-bottom: 0;
}

.country-selection {
    margin-top: 1em;
}

.country-selection label {
    display: block;
}

#country-select {
    display: inline-block;
    margin-right: 0.5em;
}

@media (min-width: 480px) {
    .archive-content ul {
        columns: 2;
    }
}

@media (max-width: 768px) {
    #country-select {
        margin-bottom: 0.5em;
        width: 100%;
    }
}

@media (min-width: 800px) {
    .hero {
        align-items: stretch;
        display: grid;
        grid-template-columns: repeat(12,1fr);
        gap: 0 var(--wp--custom--gutter);
    }
    .archive-header {
        grid-column: 1 / 8;
        padding: calc(var(--wp--custom--gutter) * 2) calc(var(--wp--custom--gutter) * 1.5) calc(var(--wp--custom--gutter) * 3);
    }
    .featured-image {
        grid-column: 8 / 13;
        grid-row: 1 / 2;
    }
    .featured-image img {
        height: 100%;
        object-fit: cover;
    }
    .archive-content {
        margin-left: 0;
        margin-bottom: calc(var(--wp--custom--gutter) * 4);
        margin-top: calc(var(--wp--custom--gutter) * -1);
        position: relative;
        width: 100%;
        z-index: 10;
    }
    .archive-content li {
        font-size: 1.5em;
    }
}

@media (min-width: 1180px) {
    .hero {
        margin-left: calc(var(--wp--custom--gutter) * -1);
        width: calc(100% + calc(var(--wp--custom--gutter) * 2));
    }
    .archive-header {
        display: grid;
        grid-column: 1 / 8;
        grid-template-columns: repeat(7,1fr);
        gap: 0 var(--wp--custom--gutter);
        padding: var(--wp--custom--gutter) 0 calc(var(--wp--custom--gutter) * 1.5);
    }
    .archive-header > * {
        grid-column: 2 / 7;
    }
    .archive-description {
        font-size: 1em;
    }
    .archive-content ul {
        columns: 4;
    }
    .featured-image {
        grid-column: 8 / 13;
    }
    .archive-content {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: calc((100% / 12) * 10 + (var(--wp--custom--gutter) * 2));
    }
}