/* Shared site header / footer */

.site-header {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-bottom: 14px;
    margin-bottom: 28px;
    border-bottom: 1px solid #222;
}

.site-brand {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.site-brand:hover {
    color: #ccc;
}

.site-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.site-nav a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    text-transform: lowercase;
}

.site-nav a:hover {
    color: #fff;
}

.site-nav a.active {
    color: #fff;
    font-weight: 600;
}

.header-socials {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-socials a {
    display: block;
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.header-socials a:hover {
    transform: scale(1.2);
}

.header-socials img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.site-footer {
    position: relative;
    z-index: 50;
    margin-top: 60px;
    padding: 28px 20px 14px;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 14px;
}

.footer-socials a {
    display: block;
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
}

.footer-socials a:hover {
    transform: scale(1.18);
}

.footer-socials img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.footer-note {
    color: #666;
    font-size: 11px;
    text-transform: lowercase;
}

.footer-credit {
    color: #555;
    font-size: 11px;
    text-transform: lowercase;
    margin-top: 3px;
}

.footer-credit a {
    color: #777;
    text-decoration: none;
}

.footer-credit a:hover {
    color: #fff;
}

@media (max-width: 480px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
