/* BEGIN::Hero Section */

.archive-hero {
    background: linear-gradient(135deg, #002145 0%, #003366 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.archive-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.archive-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    line-height: 1.2;
}

.title-icon {
    font-size: 2.5rem;
    line-height: 76%;
}

.title-icon img {
    width: 48px;
}

.archive-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .archive-hero {
        padding: 40px 16px;
        margin-bottom: 20px;
    }
    .archive-title {
        font-size: 2rem;
    }
    .title-icon {
        font-size: 2rem;
    }
    .title-icon img {
        width: 32px;
    }
    .archive-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .archive-hero {
        padding: 24px 16px;
    }
    /* .archive-title {
        font-size: 1.25rem;
    } */
    /* .title-icon img {
        width: 24px;
    } */
}


/* END::Hero Section */