/**
 * Layout principal: contenido, años y grilla
 */

.content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.years-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.year-section {
    background: #0f1628;
    border: 1px solid #1a2744;
    border-radius: 16px;
    padding: 16px;
}

.year-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.year-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #475569;
}

.year-count {
    font-size: 0.72rem;
    color: #334155;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 9px;
}
