/* SWEPAC Filmy instruktażowe – style identyczne jak Downloads */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

.swepac-films-wrapper {
    font-family: 'Open Sans', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.swepac-films-title {
    color: var(--navy, #2D353E);
    font-family: "Open Sans";
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 32px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.swepac-films-title-icon {
    color: #d32f2f;
}

.swepac-films-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 16px 0 20px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.swepac-films-wrapper .filter-button {
    padding: 8px 16px !important;
    background-color: #ffffff !important;
    border: 2px solid #e5e7eb !important;
    color: #333333 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border-radius: 33554400px !important;
}

.swepac-films-wrapper .filter-button:hover {
    background-color: #f5f5f5 !important;
    border-color: #D1D5DC !important;
}

.swepac-films-wrapper .filter-button.active {
    background-color: #d32f2f !important;
    border-color: #d32f2f !important;
    color: #ffffff !important;
}

.swepac-films-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 40px;
    font-size: 14px;
    color: #666666;
}

.swepac-loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: #d32f2f;
    border-radius: 50%;
    animation: swepac-spin 0.8s linear infinite;
}

@keyframes swepac-spin {
    to { transform: rotate(360deg); }
}

.swepac-films-list {
    width: 100%;
}

.swepac-films-wrapper .section-filter {
    margin-bottom: 24px;
}

.swepac-films-wrapper .section-filter-header {
    color: #364153;

    /* h4 */
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    margin-bottom:20px;
}

.swepac-films-wrapper .section-icon {
    display: flex;
    align-items: center;
    color: #d32f2f;
}

.swepac-films-wrapper .section-icon svg {
    flex-shrink: 0;
}

.swepac-films-wrapper .section-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: none;
}

.swepac-films-wrapper .section-category {
    margin-bottom: 20px;
}

.swepac-films-wrapper .section-category:last-child {
    margin-bottom: 0;
}

.swepac-films-wrapper .section-category-content {
    padding-left: 0;
}

.swepac-films-wrapper .accordion-tertiary {
    padding: 16px;
    background-color: #f5f5f5;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 15px;
}

.swepac-films-wrapper .accordion-tertiary:last-child {
    margin-bottom: 0;
}

.swepac-films-wrapper .accordion-tertiary.expanded {

}

.swepac-films-wrapper .accordion-tertiary-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
    font-weight:700;
}

.swepac-films-wrapper .tertiary-title {
    font-size: 18px;
    font-weight: 600;
}

.swepac-films-wrapper .tertiary-count {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
}

.swepac-films-wrapper .tertiary-icon {
    display: flex;
    align-items: center;
    color: #666;
}

.swepac-films-wrapper .tertiary-icon svg {
    flex-shrink: 0;
}

.swepac-films-wrapper .accordion-tertiary-content {
    background-color: transparent;
}

.swepac-films-wrapper .accordion-empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
    font-size: 14px;
}

/* Wiersz filmów – poziomo jak na zdjęciu */
.film-videos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding-top: 12px;
}

.film-video-item {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 15px;
    padding: 6px 12px;
    background-color: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.film-video-item:hover {
    border-color: #d32f2f;
    color: #d32f2f;
    text-decoration: none;
}

.film-video-icon {
    color: #d32f2f;
    display:inline-flex;
    align-items: center;
    justify-content: center;
}

.film-video-title {
    flex: 1;
    color:#364153!important;
}

.film-video-play {
    color: #d32f2f;
    font-size: 10px;
    display:inline-flex;
    align-items: center;
    justify-content: center;
}

.swepac-films-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

@media (max-width: 768px) {
    .swepac-films-wrapper {
        padding: 15px;
    }
    
    .swepac-films-filters {
        gap: 8px;
    }
    
    .swepac-films-wrapper .filter-button {
        padding: 8px 15px !important;
        font-size: 12px !important;
    }
    
    .swepac-films-wrapper .section-filter-header {
        padding: 14px 16px;
    }
    
    .swepac-films-wrapper .section-title {
        font-size: 14px;
    }
    
    .film-videos-row {
        flex-direction: column;
    }
    
    .film-video-item {
        width: 100%;
    }
}
