/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: 80px 20px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #2563eb;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.archive-title {
    font-size: 3rem;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn-archive-outline {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #334155;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: white;
}

.btn-archive-outline:hover {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
}

/* ===== CARDS (BROWSE) ===== */
.section-header {
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 15px;
}

.archive-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -1px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.card-icon-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-wrapper i {
    font-size: 2.5rem;
    color: #64748b;
    transition: color 0.3s ease;
}

.archive-card:hover .card-icon-wrapper i {
    color: #2563eb;
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #1e293b;
}

/* ===== STATS (LEDGER STYLE) ===== */
.stats-section {
    background: white;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    padding: 40px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.stat-box {
    border-right: 1px solid #E2E8F0;
    padding: 10px 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0;
}

/* ===== RESPONSIVE / MOBILE ===== */
@media (max-width: 768px) {
    .archive-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 50px 15px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding: 25px 10px;
    }

    .stat-box:last-child,
    .stat-box:nth-last-child(2) {
        border-bottom: none;
    }
}