/**
 * Single Artist Featured Layout CSS
 * Fullwidth within content area (respects header/footer)
 * Split layout: Name left, Info right
 *
 * Uses Designer variables for single source of truth
 *
 * @package Ensemble
 * @version 3.0.0
 */

/* ============================================
   CSS VARIABLES - Designer Integration
   Uses Designer variables with layout-specific fallbacks
   ============================================ */
.es-featured-artist {
    /* Colors - from Designer with fallbacks */
    --es-bg: var(--ensemble-bg, #0a0a0a);
    --es-surface: var(--ensemble-card-bg, rgba(255, 255, 255, 0.08));
    --es-surface-hover: var(--ensemble-card-bg-hover, rgba(255, 255, 255, 0.12));
    --es-text: var(--ensemble-text, #ffffff);
    --es-text-secondary: var(--ensemble-text-secondary, rgba(255, 255, 255, 0.7));
    --es-text-muted: var(--ensemble-text-muted, rgba(255, 255, 255, 0.5));
    --es-border: var(--ensemble-card-border, rgba(255, 255, 255, 0.15));
    --es-primary: var(--ensemble-primary, #3582c4);
    --es-accent: var(--ensemble-hover, var(--ensemble-primary, #3582c4));
    
    /* Typography - from Designer */
    --es-font-heading: var(--ensemble-font-heading, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    --es-font-body: var(--ensemble-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    --es-heading-weight: var(--ensemble-heading-weight, 700);
    --es-body-weight: var(--ensemble-body-weight, 400);
    
    /* Buttons - from Designer */
    --es-btn-bg: var(--ensemble-button-bg, var(--es-primary));
    --es-btn-text: var(--ensemble-button-text, #ffffff);
    --es-btn-hover-bg: var(--ensemble-button-hover-bg, var(--es-accent));
    --es-btn-radius: var(--ensemble-button-radius, 8px);
    
    /* Spacing & Effects */
    --es-radius: var(--ensemble-card-radius, 12px);
    --es-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --es-gradient: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
    --es-panel-bg: rgba(0, 0, 0, 0.95);
    
    font-family: var(--es-font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dark Mode - Override from Designer dark mode settings */
.es-featured-dark,
.es-mode-dark .es-featured-artist,
body.es-mode-dark .es-featured-artist {
    --es-bg: var(--ensemble-dark-bg, var(--ensemble-bg, #0a0a0a));
    --es-surface: var(--ensemble-dark-card-bg, rgba(255, 255, 255, 0.08));
    --es-text: var(--ensemble-dark-text, var(--ensemble-text, #ffffff));
    --es-text-secondary: var(--ensemble-dark-text-secondary, rgba(255, 255, 255, 0.7));
    --es-border: var(--ensemble-dark-card-border, rgba(255, 255, 255, 0.15));
    --es-primary: var(--ensemble-dark-primary, var(--ensemble-primary, #3582c4));
    --es-gradient: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
    --es-panel-bg: rgba(0, 0, 0, 0.95);
}

/* Light Mode - Override from Designer light mode settings */
.es-featured-light,
.es-mode-light .es-featured-artist,
body.es-mode-light .es-featured-artist {
    --es-bg: var(--ensemble-bg, #ffffff);
    --es-surface: var(--ensemble-card-bg, rgba(0, 0, 0, 0.05));
    --es-text: var(--ensemble-text, #1a1a1a);
    --es-text-secondary: var(--ensemble-text-secondary, rgba(0, 0, 0, 0.7));
    --es-border: var(--ensemble-card-border, rgba(0, 0, 0, 0.1));
    --es-primary: var(--ensemble-primary, #3582c4);
    --es-gradient: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.6) 100%);
    --es-panel-bg: rgba(255, 255, 255, 0.98);
}

/* ============================================
   NAVIGATION ARROWS - Based on Hero Slider System
   Uses same CSS variables as ensemble-slider.css
   ============================================ */

/* Navigation Variables - inherit from slider or define fallbacks */
.es-featured-artist {
    --es-nav-size: 48px;
    --es-nav-bg: var(--es-slider-arrow-bg, var(--ensemble-card-bg, rgba(255, 255, 255, 0.95)));
    --es-nav-color: var(--es-slider-arrow-color, var(--ensemble-text, #1a1a1a));
    --es-nav-hover-bg: var(--es-slider-arrow-hover-bg, var(--ensemble-primary, var(--es-primary)));
    --es-nav-hover-color: var(--es-slider-arrow-hover-color, #ffffff);
    --es-nav-shadow: var(--es-slider-arrow-shadow, 0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Dark mode nav variables */
.es-featured-dark,
.es-mode-dark .es-featured-artist,
body.es-mode-dark .es-featured-artist {
    --es-nav-bg: var(--es-slider-arrow-bg, var(--ensemble-dark-card-bg, rgba(31, 41, 55, 0.95)));
    --es-nav-color: var(--es-slider-arrow-color, var(--ensemble-dark-text, #f3f4f6));
    --es-nav-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Navigation container */
.es-featured-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
}

.es-featured-artist:not(.has-slider) .es-featured-nav {
    display: none;
}

.es-featured-nav-prev {
    left: 20px;
}

.es-featured-nav-next {
    right: 20px;
}

/* Navigation button - same structure as hero slider */
.es-featured-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--es-nav-size);
    height: var(--es-nav-size);
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--es-nav-bg);
    color: var(--es-nav-color);
    box-shadow: var(--es-nav-shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.es-featured-nav-btn:hover {
    background: var(--es-nav-hover-bg);
    color: var(--es-nav-hover-color);
    transform: scale(1.1);
}

.es-featured-nav-btn:focus {
    outline: none;
    box-shadow: var(--es-nav-shadow), 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.es-featured-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.es-featured-nav-btn:disabled:hover {
    background: var(--es-nav-bg);
    color: var(--es-nav-color);
}

/* SVG inherits color from button */
.es-featured-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

/* ============================================
   FULLWIDTH BREAKOUT
   Break out of theme container while respecting header/footer
   ============================================ */

/* Hide page title when featured is shown */
.es-featured-active .et-site-main .et-page-header,
.es-featured-active .et-site-main .et-page-title,
.es-featured-active .et-site-main .entry-header {
    display: none !important;
}

/* Remove container constraints ONLY in main content area */
.es-featured-active .et-site-main .et-container {
    max-width: 100% !important;
    padding: 0 !important;
}

.es-featured-active .et-site-main .et-content {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.es-featured-active .et-site-main .et-page-content {
    padding: 0 !important;
}

/* Main featured container */
.es-featured-artist {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: calc(100vh - 120px); /* Approximate header height */
    background: var(--es-bg);
    overflow: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */
.es-featured-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: stretch;
}

/* Background Media */
.es-featured-hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.es-featured-hero-image {
    width: 100%;
    height: 100%;
}

.es-featured-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.es-featured-hero-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.es-featured-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

iframe.es-featured-hero-video {
    width: 100%;
    height: 100%;
    border: 0;
}

video.es-featured-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient Overlay */
.es-featured-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--es-gradient);
    z-index: 2;
    pointer-events: none;
}

/* ============================================
   SPLIT LAYOUT - LEFT: NAME, RIGHT: INFO
   ============================================ */
.es-featured-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 60px;
    box-sizing: border-box;
}

/* LEFT SIDE - Artist Name */
.es-featured-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: 60px;
    max-width: 60%;
}

.es-featured-title {
    font-size: clamp(3rem, 10vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    color: var(--es-text);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
}

.es-featured-origin {
    font-size: 1.25rem;
    color: var(--es-text-secondary);
    margin: 15px 0 0 0;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.es-featured-hero-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.es-featured-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--es-surface);
    border: 1px solid var(--es-border);
    border-radius: 50%;
    color: var(--es-text);
    transition: all var(--es-transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
}

.es-featured-social-icon:hover {
    background: var(--es-primary);
    border-color: var(--es-primary);
    transform: translateY(-3px) scale(1.05);
    color: #fff;
}

.es-featured-social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* RIGHT SIDE - Info Block */
.es-featured-right {
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--es-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--es-border);
    border-radius: 16px;
    overflow: hidden;
}

/* Info Block Sections */
.es-featured-info-section {
    padding: 18px 22px;
    border-bottom: 1px solid var(--es-border);
}

.es-featured-info-section:last-child {
    border-bottom: none;
}

.es-featured-info-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--es-text-muted);
    margin: 0 0 10px 0;
}

/* Events in Info Block */
.es-featured-events-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.es-featured-event-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--es-surface);
    border-radius: 8px;
    color: var(--es-text);
    text-decoration: none;
    transition: all var(--es-transition);
}

.es-featured-event-row:hover {
    background: var(--es-surface-hover);
    transform: translateX(4px);
}

.es-featured-event-date-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
    padding: 5px 7px;
    background: var(--es-primary);
    color: #ffffff;
    border-radius: 6px;
    text-align: center;
}

.es-featured-event-date-small .day {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.es-featured-event-date-small .month {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.es-featured-event-row h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

/* Genres in Info Block */
.es-featured-genres-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.es-featured-genre-tag {
    display: inline-flex;
    padding: 6px 14px;
    background: var(--es-surface);
    border: 1px solid var(--es-border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--es-text);
    transition: all var(--es-transition);
}

.es-featured-genre-tag:hover {
    border-color: var(--es-primary);
    color: var(--es-primary);
}

/* Panel Genres Section */
.es-featured-panel-genres-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--es-border);
}

/* More Info Button */
.es-featured-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 22px;
    background: var(--es-primary);
    border: none;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--es-transition);
}

.es-featured-more-btn:hover {
    background: var(--es-accent);
    transform: scale(1.02);
}

.es-featured-more-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    transition: transform var(--es-transition);
}

.es-featured-more-btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   SLIDE-IN PANEL (More Info)
   ============================================ */
.es-featured-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 90vw;
    height: 100vh;
    background: var(--es-panel-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999999;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
}

.es-featured-panel.is-open {
    transform: translateX(0);
}

.es-featured-panel-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: inherit;
    border-bottom: 1px solid var(--es-border);
    z-index: 10;
}

.es-featured-panel-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--es-text);
    margin: 0;
}

.es-featured-panel-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--es-text);
    cursor: pointer;
    transition: all var(--es-transition);
}

.es-featured-panel-close:hover {
    background: var(--es-primary);
    border-color: var(--es-primary);
    color: #ffffff;
}

.es-featured-panel-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.es-featured-panel-content {
    padding: 24px;
}

.es-featured-references {
    margin: 0 0 24px 0;
    padding: 20px;
    background: var(--es-surface);
    border-left: 4px solid var(--es-primary);
    border-radius: 0 10px 10px 0;
    font-size: 1rem;
    font-style: italic;
    color: var(--es-text-secondary);
    line-height: 1.6;
}

.es-featured-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--es-text);
}

.es-featured-description p {
    margin: 0 0 16px 0;
}

.es-featured-description p:last-child {
    margin-bottom: 0;
}

/* Panel Gallery */
.es-featured-gallery {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--es-border);
}

.es-featured-gallery-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--es-text-secondary);
    margin: 0 0 15px 0;
}

.es-featured-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.es-featured-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.es-featured-gallery-item:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.es-featured-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.es-featured-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.es-featured-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.es-featured-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.es-featured-lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.es-featured-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.es-featured-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.es-featured-lightbox-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.es-featured-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.es-featured-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.es-featured-lightbox-nav svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

.es-featured-lightbox-prev {
    left: -70px;
}

.es-featured-lightbox-next {
    right: -70px;
}

@media (max-width: 768px) {
    .es-featured-lightbox-prev {
        left: 10px;
    }
    
    .es-featured-lightbox-next {
        right: 10px;
    }
    
    .es-featured-lightbox-close {
        top: 10px;
        right: 10px;
        position: fixed;
    }
}

/* Panel Overlay */
.es-featured-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.es-featured-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   ARTIST SLIDER (Bottom) - for slider variant
   ============================================ */
.es-featured-slider-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0 15px;
    background: linear-gradient(to top, var(--es-bg) 0%, transparent 100%);
    z-index: 20;
}

.es-featured-artist:not(.has-slider) .es-featured-slider-section {
    display: none;
}

.es-featured-artist.has-slider .es-featured-hero-content {
    padding-bottom: 120px;
}

.es-featured-slider {
    display: flex;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 15px 60px;
    cursor: grab;
}

.es-featured-slider:active {
    cursor: grabbing;
}

.es-featured-slider::-webkit-scrollbar {
    height: 3px;
}

.es-featured-slider::-webkit-scrollbar-track {
    background: var(--es-border);
    border-radius: 2px;
}

.es-featured-slider::-webkit-scrollbar-thumb {
    background: var(--es-primary);
    border-radius: 2px;
}

.es-featured-slider-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    text-decoration: none;
    transition: transform var(--es-transition);
    cursor: pointer;
}

.es-featured-slider-item:hover {
    transform: scale(1.1);
}

.es-featured-slider-item.is-active {
    transform: scale(1.15);
}

.es-featured-slider-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--es-surface);
    border: 3px solid transparent;
    transition: all var(--es-transition);
}

.es-featured-slider-item.is-active .es-featured-slider-image {
    border-color: var(--es-primary);
    box-shadow: 0 0 20px rgba(var(--es-primary), 0.5);
}

.es-featured-slider-item:hover .es-featured-slider-image {
    border-color: var(--es-text-secondary);
}

.es-featured-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.es-featured-slider-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--es-text-muted);
}

.es-featured-slider-placeholder svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .es-featured-hero-content {
        flex-direction: column;
        justify-content: flex-end;
        align-items: stretch;
        padding: 30px;
        min-height: calc(100vh - 100px);
    }
    
    .es-featured-left {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 25px;
    }
    
    .es-featured-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }
    
    .es-featured-right {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .es-featured-info-section {
        flex: 1;
        min-width: 140px;
        border-bottom: none;
        border-right: 1px solid var(--es-border);
    }
    
    .es-featured-info-section:last-child {
        border-right: none;
    }
    
    .es-featured-more-btn {
        flex: 0 0 100%;
    }
    
    .es-featured-artist.has-slider .es-featured-hero-content {
        padding-bottom: 110px;
    }
    
    .es-featured-hero,
    .es-featured-artist {
        min-height: calc(100vh - 100px);
    }
    
    .es-featured-slider-image {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .es-featured-hero-content {
        padding: 20px;
    }
    
    .es-featured-left {
        margin-bottom: 20px;
    }
    
    .es-featured-title {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }
    
    .es-featured-origin {
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .es-featured-hero-social {
        display: none;
    }
    
    .es-featured-right {
        flex-direction: column;
    }
    
    .es-featured-info-section {
        border-right: none;
        border-bottom: 1px solid var(--es-border);
    }
    
    .es-featured-panel {
        width: 100%;
    }
    
    .es-featured-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .es-featured-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .es-featured-nav-prev {
        left: 10px;
    }
    
    .es-featured-nav-next {
        right: 10px;
    }
    
    .es-featured-slider {
        padding: 0 20px 8px;
        gap: 10px;
    }
    
    .es-featured-slider-image {
        width: 50px;
        height: 50px;
    }
    
    .es-featured-artist.has-slider .es-featured-hero-content {
        padding-bottom: 100px;
    }
    
    .es-featured-hero,
    .es-featured-artist {
        min-height: calc(100vh - 80px);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes es-slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes es-slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes es-slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {
    .es-featured-left {
        animation: es-slideInLeft 0.8s ease-out;
    }
    
    .es-featured-right {
        animation: es-slideInRight 0.8s ease-out 0.2s backwards;
    }
    
    .es-featured-slider-section {
        animation: es-slideInUp 0.6s ease-out 0.4s backwards;
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .es-featured-artist {
        display: none !important;
    }
}
