.site-header {
    background: #fefefd;
    color: #101516;
    margin: 0;
    position: relative;
    z-index: 10;
}

.site-header--overlay {
    background: transparent;
    color: #fff;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.site-header-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1040px;
    padding: 30px 24px;
}

.site-header-logo,
.site-header-logo img {
    display: block;
}

.site-header-logo img {
    width: 112px;
}

.site-header:not(.site-header--overlay) .site-header-logo img {
    filter: invert(1);
}

.site-header-nav {
    align-items: center;
    display: flex;
    gap: 28px;
}

.site-header-nav a {
    color: currentColor;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.76;
    padding: 7px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.site-header-nav a:hover,
.site-header-nav a[aria-current="page"] {
    opacity: 1;
}

.site-header-nav a[aria-current="page"] {
    box-shadow: inset 0 -1px currentColor;
}

.test-feed .updates {
    background: #fff;
    box-shadow: 0 0 0 100vmax #fff;
    clip-path: inset(0 -100vmax);
    padding-bottom: 116px;
    padding-top: 112px;
}

.test-feed .updates h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.test-feed .updates p {
    color: var(--body, #4e5855);
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
}

.test-feed .follow-actions {
    display: flex;
    gap: 10px;
    margin-top: 42px;
}

.test-feed .follow-actions .button {
    flex: 0 0 122px;
    width: 122px;
}

.site-footer {
    background: #f6f4ef;
    color: #0d1211;
    display: block;
    margin: 0;
    max-width: none;
    padding: 0;
}

.site-footer-inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1040px;
    padding: 48px 24px 60px;
}

.site-footer .footer-logo img {
    filter: invert(1);
    opacity: 0.82;
    width: 100px;
}

.site-footer .footer-socials {
    align-items: center;
    display: flex;
    gap: 18px;
    margin-left: auto;
}

.site-footer .icon-link,
.site-footer .email-link {
    align-items: center;
    color: #7d8582;
    display: inline-flex;
    height: 24px;
    justify-content: center;
    line-height: 0;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    width: 24px;
}

.site-footer .icon-link svg,
.site-footer .email-link svg {
    display: block;
    height: 18px;
    width: 18px;
}

.site-footer .icon-link:hover,
.site-footer .email-link:hover {
    color: #0d1211;
    transform: translateY(-1px);
}

.site-footer p {
    color: #7d8582;
    font-size: 11px;
}

@media (max-width: 700px) {
    .site-header-inner {
        padding: 22px 20px;
    }

    .site-header-logo img {
        width: 96px;
    }

    .site-header-nav {
        gap: 18px;
    }

    .site-header-nav a {
        font-size: 14px;
        letter-spacing: 0.1em;
    }

    .test-feed .updates {
        padding-bottom: 76px;
        padding-top: 74px;
    }

    .test-feed .follow-actions {
        margin-top: 34px;
    }

    .site-footer-inner {
        gap: 18px;
        padding: 28px 20px 38px;
    }

    .site-footer .footer-socials {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .site-footer-inner {
        column-gap: 12px;
        flex-wrap: wrap;
        row-gap: 16px;
    }

    .site-footer .footer-logo img {
        width: 90px;
    }

    .site-footer .footer-socials {
        gap: 10px;
    }

    .site-footer p {
        flex-basis: 100%;
        text-align: center;
    }
}
