/* --- Archive Page Specific Layout --- */

.archive-main {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 80vh;
}

#archive-hero {
    max-width: 700px;
    margin-bottom: 80px;
}

#archive-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 1rem 0;
}

/* Table Design */
.archive-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.archive-table th {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.archive-table td {
    padding: 1.8rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-lux);
}

.project-name {
    font-family: var(--font-heading);
    color: var(--text-primary) !important;
    font-size: 1.15rem !important;
    font-weight: 500;
}

/* Tech Pills */
.tech-pill-list span {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    background: rgba(28, 28, 28, 0.04);
    padding: 4px 10px;
    margin-right: 6px;
    border-radius: 2px;
    border: 1px solid rgba(28, 28, 28, 0.05);
}

.archive-link {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 2px;
}

.archive-link:hover {
    color: var(--accent-gold);
}

/* Interaction */
.archive-table tr {
    transition: background 0.3s ease;
}

.archive-table tr:hover td {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .archive-main { padding-top: 120px; }
    .archive-table th, .archive-table td { padding: 1.2rem 0.2rem; font-size: 0.85rem; }
    .project-name { font-size: 1rem !important; }
}