/* ==========================================================================
   Organism: Download List Section
   ========================================================================== */

.saha-download-list-section {
    width: 100%;
}

/* --- Section header --- */

.saha-download-list-section__header {
    padding-bottom: var(--saha-stack-sm);
    border-bottom: 1px solid var(--saha-color-border);
    margin-bottom: var(--saha-stack-sm);
}

.saha-download-list-section__section-title {
    font-family: var(--saha-font-primary);
    font-style: italic;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    color: var(--saha-color-text-primary);
    margin: 0;
}

/* --- Featured (wide items) --- */

.saha-download-list-section__featured {
    width: 100%;
}

/* --- Compact items grid --- */

.saha-download-list-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--saha-stack-sm);
}

/* --- Column wrapper (grouped columns) --- */

.saha-download-list-section__column {
    display: flex;
    flex-direction: column;
}

/* --- Responsive: Mobile --- */

@media (max-width: 639px) {
    .saha-download-list-section__grid {
        grid-template-columns: 1fr;
    }
}
