/* ========== SITE HEADER ========== */
.site-header {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 10px;
}

.site-header-inner {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.site-header-logo {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 28px 36px;
    flex-shrink: 0;
}

.site-header-logo img {
    width: 144px;
    height: 45px;
    display: block;
}

.site-header-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #4D4D4D;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
}

.site-header-hero-full {
    width: 100vw;
    max-height: 340px;
    overflow: hidden;
    margin-left: 50%;
    transform: translateX(-50%);
}
.site-header-hero-full img {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tablet */
@media (max-width: 960px) {
    .site-header-hero-full {
        max-height: 480px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .site-header-inner {
        border-radius: 14px;
    }

    .site-header-logo {
        padding: 20px 24px;
        width: 100%;
    }

    .site-header-logo img {
        width: 115px;
        height: 36px;
    }

    .site-header-title {
        font-size: 0.95rem;
    }

    .site-header-hero-full {
        display: none;
    }
}

/* Hide site header in print */
@media print {
    .site-header {
        display: none;
    }
}
