.downloads-section {
    padding: 5vw;
    text-align: center;
    background: white;
    color: var(--blue);
    & .downloads-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: center;
    }
    & .download-cover {
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s;
        &:hover {
            transform: translateY(-8px) scale(1.04);
            
            & .download-icon svg {
                transform: scale(1.12);
                transition: transform 0.2s;
            }
        }
        &:focus-visible {
            border-radius: 1rem;
            outline: 4px solid var(--blue);
            outline-offset: 4px;
        }
        gap: 1rem;
        & .download-icon svg {
            width: 84px;
            height: 84px;
        }
        & .download-filename {
            font-size: 1.25rem;
            max-width: 200px; 
            text-align: center;
            text-wrap: balance;
        }
        & .download-type {
            text-transform: uppercase;
            font-size: 0.8rem;
            color: var(--blue);
            font-weight: 600;
        }
    }
}

