.download-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 32px 8px 32px 8px;
}

.download-section__title {
    font-size: 24px;
    color: #000;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
}

.download-section__subtitle {
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    line-height: 1.2;
}

.download-card-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
}

.download-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 8px;
}

.download-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.download-card img {
    width: 100%;
    max-height: 145px;
    object-fit: contain;
}

.download-card__button {
    width: 100%;
}

@media(min-width: 1024px) {
    .download-section {
        padding: 32px 0 16px 0;
    }
    
    .download-card-list {    
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}


