/* Footer Courses Table Styles */
.bst-footer-courses-section {
    margin: 2rem 0;
    padding: 1.5rem 0;
    max-width: 1520px; /* Maksymalna szerokość dla wersji desktopowej */
    margin-left: auto;
    margin-right: auto;
}

.bst-footer-courses-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.bst-footer-courses-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #333;
}

.bst-footer-courses-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.bst-footer-courses-table-wrapper {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.bst-footer-courses-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 17px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    border: none; /* Brak borderów */
}

/* Tylko nagłówki tabeli wyróżnione */
.bst-footer-courses-table th {
    padding: 0.75rem 1rem;
    text-align: center;
    background-color: #f2f2f2; /* Wyróżniony tylko nagłówek */
    font-weight: 600;
    color: #444;
    font-size: 0.85rem;
    text-transform: uppercase;
    border: none; /* Brak borderów */
}

/* Komórki tabeli */
.bst-footer-courses-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border: none; /* Brak borderów */
}

/* Zebra-striping dla wierszy (co drugi wiersz z delikatnym tłem) */
.bst-footer-courses-table tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* Delikatne tło co drugi wiersz */
}

/* Tytuł kursu - mniejsza szerokość, wyrównanie do lewej */
.bst-footer-courses-table td.bst-footer-course-title {
    text-align: left;
    max-width: 350px; /* Ograniczenie szerokości kolumny z kursem */
    width: 30%; /* Względna szerokość */
    font-weight: 600;
}

.bst-footer-course-title a {
    color: #000000;
    font-size: 17px;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bst-footer-course-title a:hover {
    color: #000000;
    text-decoration: none;
}

.bst-footer-course-date {
    white-space: nowrap;
}

.bst-footer-coming-soon {
    color: #777;
    font-style: italic;
}

.bst-footer-free-course {
    color: #0a8043;
    font-weight: 500;
}

.bst-footer-cta-button {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
    text-align: center;
    white-space: nowrap;
}

.bst-footer-cta-button:hover {
    background-color: #C10A0B;
    color: white;
}

.bst-footer-courses-all-link {
    text-align: right;
    margin-top: 1rem;
}

.bst-footer-all-courses-link {
    color: #000;
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Manrope';
}

.bst-footer-all-courses-link:hover {
    text-decoration: underline;
}

.bst-footer-no-courses {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
    /* Ukryj wszystkie kolumny poza tytułem kursu i przyciskiem */
    .bst-footer-courses-table th:not(:first-child):not(:last-child),
    .bst-footer-courses-table td:not(.bst-footer-course-title):not(.bst-footer-course-action) {
        display: none;
    }
    
    /* Zmień strukturę tabeli na mobilnym */
    .bst-footer-courses-table, 
    .bst-footer-courses-table thead, 
    .bst-footer-courses-table tbody, 
    .bst-footer-courses-table tr {
        display: block;
        width: 100%;
    }
    
    /* Ukryj nagłówki tabeli na mobilnym */
    .bst-footer-courses-table thead {
        display: none;
    }
    
    .bst-footer-courses-table tr {
        margin-bottom: 1rem;
        border-bottom: 1px solid #eee;
        padding-bottom: 0.5rem;
    }
    
    .bst-footer-courses-table td {
        display: inline-block;
        width: auto;
        border: none;
        padding: 0.5rem;
    }
    
    .bst-footer-courses-table td.bst-footer-course-title {
        display: block;
        width: 100%;
        max-width: 100%;
    }
    
    .bst-footer-courses-table td.bst-footer-course-action {
        display: block;
        width: 100%;
        text-align: left;
        padding-top: 0;
    }
    
    .bst-footer-course-title a {
        font-size: 15px; /* Zmniejszony font tytułów kursów na mobile */
        white-space: normal; /* Pozwól na zawijanie tekstu */
    }
    
    .bst-footer-cta-button {
        display: inline-block;
        width: auto;
    }
}

@media (max-width: 480px) {
    .bst-footer-courses-title {
        font-size: 1.5rem;
    }
    
    .bst-footer-courses-subtitle {
        font-size: 0.9rem;
    }
    
    .bst-footer-course-title a {
        font-size: 14px; /* Jeszcze mniejszy rozmiar fontu dla bardzo małych ekranów */
    }
    
    .bst-footer-all-courses-link {
        font-size: 15px;
    }
}