/**
 * SLA Explore Page - Desktop Layout
 * Pinterest/YouTube Discover style
 */

/* ===== MAIN CONTAINER ===== */
.sla-explore {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* ===== HERO SECTION ===== */
.sla-explore-hero {
    margin-bottom: 32px;
}

.sla-explore-hero-card {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 360px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.sla-explore-hero-card:hover {
    transform: scale(1.005);
    color: #fff;
}

.sla-explore-hero-image {
    position: absolute;
    inset: 0;
}

.sla-explore-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sla-explore-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(26, 26, 46, 0.95) 0%,
        rgba(26, 26, 46, 0.7) 50%,
        rgba(26, 26, 46, 0.3) 100%
    );
}

.sla-explore-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 360px;
    padding: 48px;
    max-width: 600px;
}

.sla-explore-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #2563eb;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.sla-explore-hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
}

.sla-explore-hero-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0 0 24px;
}

.sla-explore-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.sla-explore-hero-card:hover .sla-explore-hero-cta {
    background: #2563eb;
    border-color: #2563eb;
}

/* ===== STATS BAR ===== */
.sla-explore-stats {
    margin-bottom: 32px;
}

.sla-explore-stats-grid {
    display: flex;
    gap: 16px;
}

.sla-explore-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.sla-explore-stat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.sla-explore-stat-icon {
    font-size: 24px;
}

.sla-explore-stat-info {
    display: flex;
    flex-direction: column;
}

.sla-explore-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.sla-explore-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== MAIN GRID LAYOUT ===== */
.sla-explore-grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 340px);
    gap: 40px;
    align-items: start;
}

.sla-explore-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 0;
}

/* ===== SIDEBAR ===== */
.sla-explore-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.sla-explore-sidebar::-webkit-scrollbar {
    width: 4px;
}

.sla-explore-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sla-explore-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* ===== FULL WIDTH SECTION (Community) ===== */
.sla-explore-section--fullwidth {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sla-explore-section--fact {
    border-top: none;
    padding-top: 0;
}

.sla-explore-posts-grid--wide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== FACT CARD ===== */
.sla-explore-fact {
    position: relative;
    padding: 40px 48px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
}

.sla-explore-fact--has-image {
    background-size: cover;
    background-position: center;
}

.sla-explore-fact__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.88) 50%, rgba(15, 52, 96, 0.85) 100%);
}

.sla-explore-fact--has-image .sla-explore-fact__overlay {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.85) 50%, rgba(15, 52, 96, 0.8) 100%);
}

.sla-explore-fact__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sla-explore-fact__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sla-explore-fact__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #93c5fd;
}

.sla-explore-fact__icon {
    font-size: 16px;
}

.sla-explore-fact__category {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.sla-explore-fact__text {
    font-size: clamp(18px, 3vw, 26px);
    line-height: 1.5;
    font-weight: 500;
    margin: 0 0 24px;
}

.sla-explore-fact__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sla-explore-fact__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.sla-explore-fact__artist {
    font-weight: 600;
    color: #93c5fd;
}

.sla-explore-fact__year {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
}

.sla-explore-fact__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 12px;
    color: #93c5fd;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sla-explore-fact__cta:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

/* ===== SECTION HEADERS ===== */
.sla-explore-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sla-explore-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sla-explore-section-title svg {
    width: 24px;
    height: 24px;
    color: #2563eb;
    flex-shrink: 0;
}

.sla-explore-section-title h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.sla-explore-section-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sla-explore-section-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.sla-explore-badge-new {
    padding: 4px 10px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sla-explore-see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sla-explore-see-all:hover {
    color: #2563eb;
}

/* ===== CAROUSELS ===== */
.sla-explore-carousel-wrapper {
    position: relative;
}

.sla-explore-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
}

.sla-explore-carousel::-webkit-scrollbar {
    display: none;
}

.sla-explore-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sla-explore-carousel-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-50%) scale(1.1);
}

.sla-explore-carousel-btn svg {
    width: 20px;
    height: 20px;
}

.sla-explore-carousel-prev {
    left: -12px;
}

.sla-explore-carousel-next {
    right: -12px;
}

/* ===== SHORTS SECTION ===== */
.sla-explore-section--shorts {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 20px;
    padding: 24px;
}

.sla-explore-section--shorts .sla-explore-section-header {
    margin-bottom: 20px;
    padding: 0;
}

.sla-explore-section--shorts .sla-explore-section-title {
    align-items: flex-start;
}

.sla-explore-section--shorts .sla-explore-section-title > svg {
    margin-top: 2px;
}

.sla-explore-section--shorts .sla-explore-badge-new {
    margin-top: 2px;
}

.sla-explore-section--shorts .sla-explore-carousel-wrapper {
    margin: 0 -8px;
}

/* ===== SHORTS CARDS (courses-grid compatible) ===== */
.sla-explore-section--shorts .sla-short-card,
.sla-shorts-carousel .sla-short-card {
    flex: 0 0 calc((100% - 64px) / 5);
    min-width: 200px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.sla-explore-section--shorts .sla-short-card:hover,
.sla-shorts-carousel .sla-short-card:hover {
    transform: scale(1.03);
}

.sla-explore-section--shorts .sla-short-thumb,
.sla-shorts-carousel .sla-short-thumb {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #0f0f1a, #16213e);
}

.sla-explore-section--shorts .sla-short-thumb::before,
.sla-shorts-carousel .sla-short-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
}

.sla-explore-section--shorts .sla-short-thumb img,
.sla-shorts-carousel .sla-short-thumb img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sla-explore-section--shorts .sla-short-overlay,
.sla-shorts-carousel .sla-short-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.sla-explore-section--shorts .sla-short-card:hover .sla-short-overlay,
.sla-shorts-carousel .sla-short-card:hover .sla-short-overlay {
    opacity: 1;
    z-index: 10;
}

.sla-explore-section--shorts .sla-short-play,
.sla-shorts-carousel .sla-short-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sla-explore-section--shorts .sla-short-play svg,
.sla-shorts-carousel .sla-short-play svg {
    width: 24px;
    height: 24px;
    color: #0a0a1a;
    margin-left: 3px;
}

.sla-explore-section--shorts .sla-short-text-content,
.sla-shorts-carousel .sla-short-text-content {
    position: absolute;
    top: 50%;
    left: 12px;
    right: 12px;
    transform: translateY(-50%);
    z-index: 5;
    text-align: center;
}

.sla-explore-section--shorts .sla-shorts-tags,
.sla-shorts-carousel .sla-shorts-tags {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.sla-explore-section--shorts .sla-shorts-tag,
.sla-shorts-carousel .sla-shorts-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sla-explore-section--shorts .sla-short-intro,
.sla-shorts-carousel .sla-short-intro {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 1);
}

.sla-explore-section--shorts .sla-short-highlight,
.sla-shorts-carousel .sla-short-highlight {
    background: #2563eb;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    text-shadow: none;
}

.sla-explore-section--shorts .sla-short-meta,
.sla-shorts-carousel .sla-short-meta {
    padding: 8px 2px;
}

.sla-explore-section--shorts .sla-short-meta-title,
.sla-shorts-carousel .sla-short-meta-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    margin-bottom: 4px;
}

.sla-explore-section--shorts .sla-short-count,
.sla-shorts-carousel .sla-short-count {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 500;
}

/* Responsive shorts in explore */
@media (max-width: 1200px) {
    .sla-explore-section--shorts .sla-short-card {
        flex: 0 0 180px;
        min-width: 180px;
    }
    
    .sla-explore-section--shorts .sla-short-intro {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .sla-explore-section--shorts .sla-short-card {
        flex: 0 0 140px;
        min-width: 140px;
    }
    
    .sla-explore-section--shorts .sla-short-intro {
        font-size: 1.1rem;
    }
    
    .sla-explore-section--shorts .sla-short-play {
        width: 40px;
        height: 40px;
    }
    
    .sla-explore-section--shorts .sla-short-play svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .sla-explore-section--shorts .sla-short-card {
        flex: 0 0 120px;
        min-width: 120px;
    }
    
    .sla-explore-section--shorts .sla-short-intro {
        font-size: 0.95rem;
    }
    
    .sla-explore-section--shorts .sla-shorts-tags {
        display: none;
    }
}

/* ===== NEWS GRID ===== */
.sla-explore-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sla-explore-news-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.sla-explore-news-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    color: #fff;
}

.sla-explore-news-card--featured {
    grid-column: span 2;
    flex-direction: row;
}

.sla-explore-news-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.sla-explore-news-card--featured .sla-explore-news-image {
    flex-shrink: 0;
    width: 50%;
    aspect-ratio: auto;
}

.sla-explore-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sla-explore-news-card:hover .sla-explore-news-image img {
    transform: scale(1.05);
}

.sla-explore-news-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.sla-explore-news-card--featured .sla-explore-news-content {
    padding: 24px;
    justify-content: center;
}

.sla-explore-news-category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #60a5fa;
    margin-bottom: 10px;
    width: fit-content;
}

.sla-explore-news-content h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
    flex: 1;
}

.sla-explore-news-card--featured .sla-explore-news-content h3 {
    font-size: 20px;
}

.sla-explore-news-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px;
}

.sla-explore-news-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== VIDEO CARDS ===== */
.sla-explore-video-card {
    flex-shrink: 0;
    width: 280px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sla-explore-video-card:hover {
    transform: translateY(-4px);
}

.sla-explore-video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    margin-bottom: 12px;
}

.sla-explore-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sla-explore-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sla-explore-video-card:hover .sla-explore-video-play {
    opacity: 1;
}

.sla-explore-video-play svg {
    width: 48px;
    height: 48px;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.sla-explore-video-source {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.sla-explore-video-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

/* ===== POSTS GRID ===== */
.sla-explore-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sla-explore-post-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sla-explore-post-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.sla-explore-post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.sla-explore-post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.sla-explore-post-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sla-explore-post-author {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.sla-explore-post-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.sla-explore-post-type {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.sla-explore-post-media {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.sla-explore-post-media img,
.sla-explore-post-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sla-explore-post-content {
    padding: 0 16px 12px;
}

.sla-explore-post-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.sla-explore-post-actions {
    display: flex;
    gap: 16px;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sla-explore-post-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== SIDEBAR WIDGETS ===== */

.sla-explore-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 20px;
}

.sla-explore-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.sla-explore-widget-header svg {
    width: 20px;
    height: 20px;
    color: #2563eb;
}

.sla-explore-widget-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.sla-explore-widget-link {
    display: block;
    text-align: center;
    padding: 12px;
    margin-top: 16px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sla-explore-widget-link:hover {
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
}

.sla-explore-widget-empty {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-align: center;
    padding: 16px 0;
    margin: 0;
}

/* ===== EVENTS LIST ===== */
.sla-explore-events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sla-explore-event-item {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
}

.sla-explore-event-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.sla-explore-event-date {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 12px;
}

.sla-explore-event-day {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.sla-explore-event-month {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

.sla-explore-event-info {
    flex: 1;
    min-width: 0;
}

.sla-explore-event-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sla-explore-event-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.sla-explore-event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sla-explore-event-type {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.sla-explore-event-type--online {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

/* ===== CONTINUE LEARNING ===== */
.sla-explore-course-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.sla-explore-course-item:last-child {
    margin-bottom: 0;
}

.sla-explore-course-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.sla-explore-course-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.sla-explore-course-info {
    flex: 1;
    min-width: 0;
}

.sla-explore-course-info h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.3;
}

.sla-explore-course-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.sla-explore-course-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.sla-explore-course-percent {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== QUICK LINKS ===== */
.sla-explore-widget--links {
    padding: 18px;
}

.sla-explore-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.sla-explore-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
}

.sla-explore-quick-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
}

.sla-explore-quick-link-icon {
    font-size: 28px;
}

/* ===== TRENDING TOPICS ===== */
.sla-explore-trending-list {
    display: flex;
    flex-direction: column;
}

.sla-explore-trending-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sla-explore-trending-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sla-explore-trending-item:first-child {
    padding-top: 0;
}

.sla-explore-trending-rank {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.sla-explore-trending-rank.top-3 {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
}

.sla-explore-trending-info {
    flex: 1;
    min-width: 0;
}

.sla-explore-trending-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px;
    color: #fff;
}

.sla-explore-trending-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== HITLIJST WIDGET ===== */
.sla-explore-widget--hitlijst .sla-explore-widget-header h3 {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sla-explore-hitlijst {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sla-explore-track {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.sla-explore-track:hover {
    background: rgba(255, 255, 255, 0.08);
}

.sla-explore-track-rank {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.sla-explore-track-rank.top-3 {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
}

.sla-explore-track-cover {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.sla-explore-track-info {
    flex: 1;
    min-width: 0;
}

.sla-explore-track-info h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 2px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sla-explore-track-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.sla-explore-track-play {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1DB954;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sla-explore-track:hover .sla-explore-track-play {
    opacity: 1;
    transform: scale(1);
}

.sla-explore-track-play:hover {
    background: #1ed760;
    transform: scale(1.1);
}

.sla-explore-track-play.playing {
    opacity: 1;
    transform: scale(1);
    background: #ef4444;
}

.sla-explore-track-play.playing svg {
    display: none;
}

.sla-explore-track-play.playing::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .sla-explore-grid {
        grid-template-columns: 1fr minmax(260px, 300px);
        gap: 24px;
    }
    
    .sla-explore-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sla-explore-news-card--featured {
        grid-column: span 2;
    }
}

@media (max-width: 1200px) {
    .sla-explore-posts-grid--wide {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sla-explore-fact {
        padding: 32px 36px;
    }
}

@media (max-width: 1024px) {
    .sla-explore-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sla-explore-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .sla-explore-widget--links {
        grid-column: span 3;
    }
    
    .sla-explore-quick-links {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .sla-explore-posts-grid--wide {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sla-explore-fact {
        padding: 28px 24px;
        min-height: 160px;
    }
    
    .sla-explore-fact__text {
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .sla-explore-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sla-explore-widget--links {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Hide explore on mobile - use Mobile feed instead */
    .sla-explore {
        display: none;
    }
}

/* ===== DESKTOP / MOBILE ONLY CLASSES ===== */
.sla-desktop-only {
    display: block;
}

.sla-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .sla-desktop-only {
        display: none !important;
    }
    
    .sla-mobile-only {
        display: block !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
    
    .sla-mobile-only .sla-mobile-layout,
    .sla-mobile-only .sla-mobile-feed-wrapper,
    .sla-mobile-only .sla-mobile-feed {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
    }
}

/* ===== ADAPTIVE FEED WRAPPER (legacy) ===== */
.sla-adaptive-feed {
    width: 100%;
}

/* Desktop: Toon explore, verberg Mobile */
.sla-adaptive-feed .sla-adaptive-desktop {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

.sla-adaptive-feed .sla-adaptive-mobile {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Mobiel: Toon Mobile, verberg explore */
@media (max-width: 768px) {
    .sla-adaptive-feed .sla-adaptive-desktop {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .sla-adaptive-feed .sla-adaptive-mobile {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sla-explore-section {
    animation: fadeInUp 0.5s ease forwards;
}

.sla-explore-section:nth-child(1) { animation-delay: 0.1s; }
.sla-explore-section:nth-child(2) { animation-delay: 0.2s; }
.sla-explore-section:nth-child(3) { animation-delay: 0.3s; }
.sla-explore-section:nth-child(4) { animation-delay: 0.4s; }

/* ===== VIDEO MODAL ===== */
.sla-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
}

.sla-video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sla-video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    animation: modalFadeIn 0.3s ease;
}

.sla-video-modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
    z-index: 1;
}

.sla-video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.sla-video-modal-close svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.sla-video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.sla-video-modal-content {
    display: flex;
    gap: 24px;
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
}

.sla-video-modal-player {
    flex: 1;
    min-width: 0;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
}

.sla-video-modal-iframe-wrapper {
    width: 100%;
    height: 100%;
}

.sla-video-modal-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.sla-video-modal-info {
    width: 320px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: 60vh;
}

.sla-video-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.sla-video-modal-author {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.sla-video-modal-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.sla-video-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.sla-video-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.sla-video-modal-nav svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.sla-video-modal-prev {
    left: -70px;
}

.sla-video-modal-next {
    right: -70px;
}

.sla-video-modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { 
        opacity: 0;
        transform: scale(0.95);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive video modal */
@media (max-width: 1024px) {
    .sla-video-modal-content {
        flex-direction: column;
    }
    
    .sla-video-modal-player {
        border-radius: 16px 16px 0 0;
    }
    
    .sla-video-modal-info {
        width: auto;
        max-height: 30vh;
    }
    
    .sla-video-modal-prev {
        left: 10px;
    }
    
    .sla-video-modal-next {
        right: 10px;
    }
}

/* Video card clickable */
.sla-explore-video-card {
    cursor: pointer;
}

.sla-explore-video-card:hover .sla-explore-video-play {
    opacity: 1;
}

.sla-explore-video-card:hover .sla-explore-video-play svg {
    transform: scale(1.1);
}

/* ===== EXPLORE TABS ===== */
.sla-explore-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    width: fit-content;
}

.sla-explore-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sla-explore-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.sla-explore-tab.active {
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.sla-explore-tab svg {
    opacity: 0.7;
}

.sla-explore-tab.active svg {
    opacity: 1;
}

.sla-explore-tab-content {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 24px;
    min-height: 400px;
}

/* ===== CONTINUE LEARNING HERO ===== */
.sla-explore-continue-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    min-height: 280px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.sla-explore-continue-card .sla-explore-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sla-explore-continue-card .sla-explore-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.sla-explore-continue-card .sla-explore-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.7) 60%, transparent 100%);
    z-index: 1;
}

.sla-explore-continue-card .sla-explore-hero-content {
    position: relative;
    z-index: 2;
    padding: 32px 40px;
    max-width: 550px;
}

.sla-explore-continue-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.sla-explore-continue-card h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.sla-explore-continue-next {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px;
}

.sla-explore-continue-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.sla-explore-continue-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    max-width: 300px;
}

.sla-explore-continue-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.sla-explore-continue-progress-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.sla-explore-continue-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sla-explore-continue-card:hover .sla-explore-hero-cta {
    background: #fff;
    color: #1a1a2e;
}

.sla-explore-continue-type {
    color: #60a5fa;
    font-weight: 600;
}

/* Community post media play button */
.sla-explore-post-media {
    position: relative;
}

.sla-explore-post-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.sla-explore-post-card:hover .sla-explore-post-play {
    opacity: 1;
}

.sla-explore-post-play svg {
    margin-left: 4px;
}

/* Make post cards clickable */
.sla-explore-post-card {
    cursor: pointer;
}
