/**
 * DIRECTORY BASE LAYOUT (Shared between Archive and Single)
 */

/* TOP HEADER - Clean & Solid */
.archive-header-top {
    background: white;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: var(--layout-gap);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    z-index: 10;
}

.header-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.header-icon-circle {
    width: 70px; height: 70px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.header-icon-circle i { 
    font-size: 32px !important; 
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
}

.header-icon-circle img { 
    width: 100%; height: 100%; 
    object-fit: contain;
    padding: 10px;
}

.header-text-info {
    flex-grow: 1;
}

.header-text-info h1 {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.header-meta { margin-top: 5px; }

.update-date {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #e2e8f0;
    padding: 3px 10px;
    border-radius: 6px;
}

/* ACTION STATS BOX */
.header-action-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 25px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 18px;
    font-weight: 900;
    color: #1e293b;
    font-family: var(--font-heading);
}

/* LAYOUT WRAPPER */
.archive-layout-wrapper {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.archive-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    z-index: 5;
}

.archive-main-content {
    flex-grow: 1;
    min-width: 0;
}

/* SIDEBAR CARDS */
.archive-sidebar-card {
    background: white;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,1);
    margin-bottom: 25px;
}

.archive-sidebar-card h3 {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}
