@media only screen and (max-device-width: 768px) {
    :root {
        --heading-size: 1rem;
        --title-size: 1.5rem;
    }
    header#header {
        padding: calc(1 * var(--gap)) 0;
        margin-right: 0.25rem;
    }
    .site-logo img {
        height: 36px;
    }
    .header-wrapper {
        max-width: 100%;
        padding: 0 calc(1 * var(--gap));
    }
    .enquiry-link {
        display: none;
    }
    nav#menu {
        display: none;
        position: absolute;
        top: 3rem;
        right: 1rem;
        padding: 1rem 1.5rem;
        background-color: var(--light-blue-background);
        z-index: 9999;
        border-radius: 1.25rem;
    }
    nav#menu ul {
        flex-direction: column;
        gap: 0.75rem;
    }
    nav#menu ul li a {
        font-size: 1.2rem;
    }
    nav#menu ul li div {
        font-size: 1.2rem;
    }
    .nav-hamburger {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0.7rem 0;
    }

    .nav-hamburger .lines {
        position: relative;
    }
    .nav-hamburger .lines:before,
    .nav-hamburger .lines:after,
    .nav-hamburger .lines {
        content: "";
        height: 3px;
        width: 1.4rem;
        background-color: var(--brand-accent);
        transition: all .4s;
    }

    .nav-hamburger .lines:before,
    .nav-hamburger .lines:after {
        position: absolute;
        background-color: var(--brand-accent);
    }
    .nav-hamburger .lines:before {
        top: -0.4rem;
    }
    .nav-hamburger .lines:after {
        top: 0.4rem;
    }

    .nav-hamburger.open .lines {
        background-color: transparent;
    }
    .nav-hamburger.open .lines:before {
        top: 0;
        transform: rotate(45deg);
    }
    .nav-hamburger.open .lines:after {
        top: 0;
        transform: rotate(-45deg);
    }

    #container,
    body.home #container, 
    body.archive #container {
        padding-top: 4rem;
    }
    main#content {
        padding: 1rem 0;
    }
    .post-cards {
        padding: 0 1rem;
    }
    .post-cards-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .atricle-card {
        width: 100%;
    }
    .footer-row,
    .footer-grid {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
    .footer-grid .footer-col-one,
    .footer-grid .footer-col-two {
        width: 100%;
    }
    .footer-description {
        padding: 0;
    }
    .footer-social {
        position: static;
    }
    .footer-menu {
        width: 90%;
    }
    .footer-col-two,
    .footer-grid {
        gap: 1rem;
    }
    .post-detail {
        flex-direction: column;
    }
    .post-detail .atricle {
        width: 100%;
    }
    .post-detail .atricle {
        width: 100%;
    }
    .post-detail .sidebar {
        width: 100%;
    }
    h1.post-title {
        font-size: var(--title-size);
    }
    .atricle .featured-images {
        border-radius: calc(1.5 * var(--gap));
    }
    .atricle .image-wrapper {
        height: 225px;
    }
}
}