/* Lista Rozwiązań - Style */
.lista-rozwiazan-container {
    width: 100%;
}

/* Sekcja pobierania */
.download-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.download-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6EB533 0%, #6EB533 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.download-button:hover {
    background: linear-gradient(135deg, #4338CA 0%, #6D28D9 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 16px -4px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: white;
}

.download-button:active {
    transform: translateY(0);
}

.download-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.rozwiazanie-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}
.rozwiazanie-row:last-child {
    margin-bottom: 0;
}
.rozwiazanie-row.row-reverse {
    flex-direction: row-reverse;
}
.rozwiazanie-image {
    flex: 0 0 auto;
}
.rozwiazanie-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px !important;
}
.rozwiazanie-content {
    flex: 1;
    min-width: 0;
}
.rozwiazanie-naglowek {
    color: white;
    font-size: 3rem;
    font-weight: 600;
    line-height: 3rem;
    margin: 0 0 1rem 0;
}
.rozwiazanie-tekst {
    color: white;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}
.rozwiazanie-tekst p {
    margin: 0 0 1rem 0;
}
.rozwiazanie-tekst p:last-child {
    margin-bottom: 0;
}
/* Responsywność - mobile */
@media (max-width: 768px) {
    .download-section {
        flex-direction: column;
        text-align: left;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .download-title {
        font-size: 1.5rem;
    }
    
    .download-button {
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }
    
    .rozwiazanie-row,
    .rozwiazanie-row.row-reverse {
        flex-direction: column;
        text-align: left;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .rozwiazanie-naglowek {
        font-size: 2rem;
        line-height: 2.2rem;
    }
    
    .rozwiazanie-image {
        order: -1; /* Obrazek zawsze na górze na mobile */
    }
}
@media (max-width: 480px) {
    .download-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .download-title {
        font-size: 1.25rem;
    }
    
    .download-button {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
    
    .rozwiazanie-row {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .rozwiazanie-naglowek {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }
    
    .rozwiazanie-tekst {
        font-size: 14px;
    }
}