.logo img {
    height: 3rem;
    object-fit: contain;
    width: auto;
}

.header-row {
    background-color: var(--light-grey);
}

.site-name,
.nav-link .add-icon,
.main-nav-ul a {
    color:var(--dark-font-color);
}

.top-header a,
#search-button i,
.input-field input[type="text"].search-box,
.input-field input[type="text"].search-box::placeholder {
    color: var(--dark-font-color);
}

.top-header a.flex-row::before {
    background-color: var(--dark-font-color);
}

.site-name {
    font-weight: var(--font-bold);
    max-width: 13rem;
}

.banner_media::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.news-item a,
.cover-img {
	aspect-ratio: 540/450;
}

.cta-row {
    display: flex;
    flex-direction: column;
}

.cta-box {
    padding: 1.5rem;
}

.cta-row:nth-of-type(2n+1) .cta-box {
    background: var(--primary);
    color: white;
}

.cta-row:nth-of-type(2n+1) .btn {
    background-color: var(--secondary);
}

.cta-row:nth-of-type(2n) .cta-box {
    background: var(--light-grey);
}

.cta-row img {
    aspect-ratio: 960/463;
    width: 100%;
    height: 100%;
}

.cta-image {
    position: relative;
    aspect-ratio: 960/463;
}

.cta-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
    z-index: 1;
}

footer > .content-container {
    padding-top: 2rem;
}

.contact-row {
    font-weight: var(--font-medium);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-links a {
    color: var(--dark-grey);
    font-weight: var(--font-medium);
    display: block;
}

@media (min-width: 48em) {
    .logo img {
        height: 4rem;
    }

    .footer-links {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    .footer-links a {
        position: relative;
        padding-right: 1rem;
    }

    .footer-links a::after {
        content: '';
        width: 1px;
        height: 90%;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--medium-grey);
    }

    .footer-links a:last-of-type::after {
        content: none;
    }

    .footer-links a:last-of-type {
        padding: 0;
    }
}

@media (min-width: 62em) {
    .banner_info {
        margin: 0;
        text-align: left;
        left: 10vw;
    }

    .banner_media {
        aspect-ratio: 1920/500;
    }

    .cta-row {
        flex-direction: row;
    }

    .cta-row > * {
        width: 50%;
    }

    .cta-box {
        padding: 3rem 5vw;
    }

    .cta-row:nth-of-type(2n) .cta-box {
        order: -1;
    }

    .footer-links {
        justify-content: flex-start;
    }
}