/* Tek.media — Design System */
:root {
    --blue: #003D8F;
    --blue-light: #0056c8;
    --blue-dark: #001f4d;
    --yellow: #F9C80E;
    --yellow-glow: rgba(249, 200, 14, 0.35);
    --white: #FFFFFF;
    --black: #1A1A1A;
    --ink: #1A1A1A;
    --gray-50: #fafbfc;
    --gray-100: #f0f2f5;
    --gray-200: #e2e6ea;
    --gray-400: #8b95a5;
    --gray-600: #5a6474;
    --sidebar-width: 272px;
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --radius: 14px;
    --radius-lg: 24px;
    --shadow: 0 8px 30px rgba(0, 61, 143, 0.08);
    --shadow-hover: 0 16px 40px rgba(0, 61, 143, 0.15);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme="dark"] {
    --white: #151e30;
    --ink: #eef2f8;
    --gray-50: #0b1220;
    --gray-100: #121a2b;
    --gray-200: #243044;
    --gray-400: #8b96ab;
    --gray-600: #a8b2c4;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Layout */
.app-layout { display: flex; min-height: 100vh; }

.sidebar {
    position: fixed;
    top: 0; left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
    border-right: 1px solid var(--gray-200);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform var(--transition);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.04);
}

.sidebar.open { transform: translateX(0); }

.sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px 20px;
    overflow-y: auto;
}

.sidebar-logo {
    margin-bottom: 8px;
    display: block;
}

.sidebar-tagline {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
    padding-left: 2px;
}

.brand-logo {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.65rem;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: baseline;
}

.brand-name {
    color: var(--blue);
}

.brand-dot {
    color: var(--yellow);
    font-weight: 700;
    text-shadow: 0 0 20px var(--yellow-glow);
}

.sidebar-nav { flex: 1; }

.nav-primary, .nav-secondary { list-style: none; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.92rem;
    transition: all var(--transition);
    color: var(--gray-600);
}

.nav-link:hover {
    background: var(--gray-100);
    color: var(--ink);
    transform: translateX(3px);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 61, 143, 0.25);
}

.nav-link.active .nav-icon { stroke: var(--white); }

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

.nav-divider {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 16px 0;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lang-switcher {
    display: inline-flex;
    background: var(--gray-100);
    border-radius: 10px;
    padding: 4px;
    gap: 2px;
    margin-bottom: 12px;
    width: fit-content;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    color: var(--gray-600);
    transition: all var(--transition);
}

.lang-btn:hover { color: var(--ink); }

.lang-btn.active {
    background: var(--white);
    color: var(--blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-link {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 4px 0;
}

.footer-link:hover { color: var(--ink); }

.edition-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 12px;
}

.main-wrapper {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.logo { display: block; }

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: 0.3s;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}

.sidebar-overlay.active { display: block; }

.main-content {
    flex: 1;
    padding: 20px;
    max-width: 1200px;
    background: var(--white);
}

/* ─── Homepage Brut ─── */
.brut-home {
    margin: -20px -20px 0;
    padding: 0 20px;
}

.brut-hero {
    background: #1a1a1a;
    color: var(--white);
    margin: 0 -20px 40px;
    padding: 28px 20px;
}

.brut-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.brut-hero-video {
    display: flex;
    justify-content: center;
}

.brut-hero-player {
    position: relative;
    width: 100%;
    max-width: 260px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}

.brut-hero-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.brut-hero-thumb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.brut-hero-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.brut-badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 5px 10px;
    border-radius: 2px;
}

.brut-badge-dark {
    background: var(--yellow);
    color: var(--ink);
}

.brut-hero-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.4rem, 4vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.brut-hero-title a {
    color: var(--white);
}

.brut-hero-title a:hover {
    opacity: 0.9;
}

.brut-hero-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
}

.brut-section {
    margin-bottom: 44px;
}

.brut-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.brut-section-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    letter-spacing: -0.02em;
    margin: 0;
}

.brut-section-title-link {
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.brut-section-title-link::after {
    content: '→';
    font-weight: 700;
    opacity: 0.5;
    font-size: 0.9em;
}

.brut-section-title-link:hover {
    color: var(--blue);
}

.brut-view-all {
    flex-shrink: 0;
    padding: 8px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 999px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
    background: var(--white);
    transition: border-color var(--transition), background var(--transition);
}

.brut-view-all:hover {
    border-color: var(--ink);
    background: var(--gray-50);
}

.brut-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.brut-carousel-track::-webkit-scrollbar {
    display: none;
}

.brut-card {
    flex: 0 0 148px;
    width: 148px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.brut-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    background-color: #111;
    overflow: hidden;
    margin-bottom: 10px;
}

.brut-card-placeholder {
    background: linear-gradient(160deg, var(--blue-dark), var(--blue));
}

.brut-card-watermark {
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.72rem;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.brut-card-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 6px;
    border-radius: 2px;
    max-width: calc(100% - 48px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

.brut-card-caption {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.brut-carousel-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.brut-carousel-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gray-200);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition);
}

.brut-carousel-btn:hover {
    border-color: var(--ink);
}

.brut-carousel-bar {
    flex: 1;
    height: 4px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.brut-carousel-progress {
    height: 100%;
    width: 20%;
    background: var(--black);
    border-radius: 4px;
    transition: width 0.15s ease;
}

.brut-front {
    margin-bottom: 44px;
}

.brut-front-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brut-front-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-200);
}

.brut-front-placeholder {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
}

.brut-front-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.brut-front-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.brut-front-title a {
    color: var(--ink);
}

.brut-front-title a:hover {
    color: var(--blue);
}

.brut-btn-read {
    display: inline-block;
    padding: 12px 24px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 999px;
    transition: opacity var(--transition);
}

.brut-btn-read:hover {
    opacity: 0.85;
    color: var(--white);
}

.brut-tv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.brut-tv-tag {
    padding: 6px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: border-color var(--transition);
}

.brut-tv-tag:hover {
    border-color: var(--ink);
}

/* Hero Featured Video — legacy */
.hero-featured {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-light) 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 48px;
    color: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-featured-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-featured-video {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-featured-player {
    position: relative;
    width: 100%;
    max-width: 240px;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-featured-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-featured-thumb {
    display: block;
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-featured-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.hero-featured-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
    width: 100%;
}

.hero-featured-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.65rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-featured-title a {
    color: var(--white);
    transition: opacity var(--transition);
}

.hero-featured-title a:hover {
    opacity: 0.85;
}

.hero-featured-description {
    font-size: 0.95rem;
    line-height: 1.65;
    opacity: 0.92;
    max-width: 560px;
    margin: 0 auto;
}

/* Legacy hero aliases (other pages) */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 45%, var(--blue-light) 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 48px;
    color: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.hero-shape-1 {
    width: 300px; height: 300px;
    background: var(--yellow);
    top: -80px; right: -60px;
}

.hero-shape-2 {
    width: 200px; height: 200px;
    background: #00d4ff;
    bottom: -40px; left: 30%;
    opacity: 0.2;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
}

.hero-embed {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9/16;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

.hero-video .video-thumb {
    aspect-ratio: 9/16;
    max-width: 280px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.hero-content { display: flex; flex-direction: column; gap: 16px; }

.hero-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.85rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-title a { color: var(--white); }
.hero-title a:hover { text-decoration: underline; }

.hero-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* Badges & Buttons */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-yellow {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 2px 12px var(--yellow-glow);
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 12px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: 0 4px 20px var(--yellow-glow);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--yellow-glow);
}
.badge-blue { background: var(--blue); color: var(--white); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

/* Play buttons */
.play-btn, .play-btn-sm {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.play-btn-sm { width: 40px; height: 40px; }
.play-btn svg, .play-btn-sm svg { width: 24px; height: 24px; color: var(--blue); }
.video-thumb:hover .play-btn, .video-card-thumb:hover .play-btn-sm { opacity: 1; }

/* Sections */
.section { margin-bottom: 48px; }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 16px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0; top: 0.15em; bottom: 0.15em;
    width: 4px;
    background: linear-gradient(180deg, var(--yellow), var(--blue));
    border-radius: 4px;
}

.section-link {
    font-weight: 600;
    color: var(--blue);
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(0, 61, 143, 0.06);
    transition: all var(--transition);
}

.section-link:hover {
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
}

/* Video scroll (horizontal carousel like Brut mobile) */
.video-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.video-scroll::-webkit-scrollbar { height: 4px; }
.video-scroll::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

/* Sur le même sujet — style Brut */
.article-related-wrap {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.related-subject-section {
    width: 100%;
}

.related-subject-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
}

.related-scroll {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

.related-scroll::-webkit-scrollbar { height: 5px; }
.related-scroll::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

.related-card {
    display: block;
    flex: 0 0 168px;
    width: 168px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.related-card-thumb {
    display: block;
    position: relative;
    width: 100%;
    height: 280px;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 0;
    transition: transform var(--transition), box-shadow var(--transition);
}

.related-card-placeholder {
    background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
}

.related-card:hover .related-card-thumb {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.related-card-brand {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.8rem;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    z-index: 3;
    pointer-events: none;
}

.related-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--yellow);
    color: var(--ink);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
    max-width: calc(100% - 52px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

.related-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 56px 12px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.related-card-date {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    font-style: normal;
}

.related-card-title {
    display: block;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.35;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .related-card {
        flex: 0 0 200px;
        width: 200px;
    }

    .related-card-thumb {
        height: 340px;
    }

    .related-subject-title {
        font-size: 2rem;
    }
}

.video-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
}

.video-card-thumb {
    aspect-ratio: 9/16;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    position: relative;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    overflow: hidden;
}

.video-card:hover .video-card-thumb {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.video-card-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Articles grid */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.article-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.article-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: transparent;
}

.article-card-image {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
}

.article-card-placeholder {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.article-card-body { padding: 16px; }

.article-card-body h3 {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.article-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.article-meta, .article-excerpt {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.article-excerpt { margin-top: 4px; }

/* TV categories */
.tv-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tv-cat-badge {
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.tv-cat-badge:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter-block {
    position: relative;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-light) 100%);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    color: var(--white);
    margin: 56px 0 32px;
    overflow: hidden;
}

.newsletter-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--yellow);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.newsletter-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--yellow);
    margin-bottom: 10px;
}

.newsletter-text {
    flex: 1;
    min-width: 0;
}

.newsletter-text h2 {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
}

.newsletter-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.newsletter-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.newsletter-input {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-input::placeholder {
    color: var(--gray-400);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px var(--yellow-glow);
}

.newsletter-btn {
    width: 100%;
    padding: 14px 28px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--yellow-glow);
}

/* Footer — fond noir style Brut */
.site-footer {
    background: #000000;
    color: #ffffff;
    border-top: none;
    padding: 56px 24px 28px;
    margin-top: auto;
    width: 100%;
}

.footer-grid {
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 300px;
}

.site-footer .brand-logo {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.site-footer .brand-name {
    color: #ffffff;
}

.site-footer .brand-dot {
    color: var(--yellow);
    text-shadow: none;
}

.footer-logo {
    display: inline-block;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-title);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-links a:hover { color: #ffffff; }

.site-footer .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.site-footer .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    transition: all var(--transition);
}

.site-footer .social-links a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000000;
}

.site-footer .social-links svg { width: 18px; height: 18px; }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.footer-legal a:hover { color: #ffffff; }

/* Social links (hors footer) */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--ink);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--yellow);
    transform: translateY(-2px);
}

.social-links svg { width: 18px; height: 18px; }

/* Page content */
.page-header { margin-bottom: 32px; }

.page-header h1 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 8px;
}

.page-subtitle { color: var(--gray-600); font-size: 1.1rem; }

.prose h2 {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.35rem;
    margin: 32px 0 12px;
}

.prose h3 {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.15rem;
    margin: 24px 0 10px;
}

.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 16px 0 16px 24px; }
.prose li { margin-bottom: 8px; }
.prose a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.prose a:hover { color: var(--blue-light); }
.prose strong, .prose b { font-weight: 700; }
.prose em, .prose i { font-style: italic; }
.prose blockquote {
    position: relative;
    margin: 40px 8px 48px;
    padding: 32px 40px;
    border: 0;
    background: transparent;
    font-family: var(--font-title);
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    line-height: 1.45;
    color: var(--ink);
    text-align: center;
}

.prose blockquote::before,
.prose blockquote::after {
    position: absolute;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(4rem, 8vw, 5.5rem);
    line-height: 1;
    color: #f7c4cf;
    opacity: 0.95;
    pointer-events: none;
}

.prose blockquote::before {
    content: '“';
    top: -22px;
    left: 0;
}

.prose blockquote::after {
    content: '”';
    right: 0;
    bottom: -42px;
}

.prose blockquote p {
    margin: 0;
}

.prose .tek-lire-aussi {
    position: relative;
    margin: 40px 0;
    padding: 32px 24px 26px;
    background: #f0f2f5;
    border-radius: 18px;
    text-align: center;
}

.prose .tek-lire-aussi-label {
    position: absolute;
    top: -12px;
    left: 18px;
    background: #e11d48;
    color: #fff;
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border-radius: 6px;
    line-height: 1.2;
}

.prose .tek-lire-aussi a {
    display: block;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(0.95rem, 2.2vw, 1.12rem);
    line-height: 1.4;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
}

.prose .tek-lire-aussi a:hover {
    color: var(--blue);
    text-decoration: none;
}

html[data-theme="dark"] .prose .tek-lire-aussi {
    background: var(--gray-100);
}

html[data-theme="dark"] .prose .tek-lire-aussi a {
    color: var(--ink);
}

.founder-quote {
    border-left: 4px solid var(--yellow);
    padding: 20px 24px;
    background: var(--gray-100);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    margin: 32px 0;
}

.tags-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }

.tag {
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Video detail — style Brut */
.video-detail-brut {
    background: var(--white);
    margin: -20px -20px 0;
    padding: 24px 20px 0;
}

.video-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1100px;
}

.video-detail-player-wrap {
    background: #000;
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-detail-player {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
}

.video-detail-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.video-tag-pill {
    display: inline-block;
    padding: 5px 14px;
    border: 1.5px solid var(--black);
    border-radius: 999px;
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 700;
    background: var(--white);
    color: var(--ink);
    letter-spacing: 0.02em;
}

.video-detail-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.15rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 12px 0 16px;
    color: var(--ink);
}

.video-detail-lead {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.45;
    margin-bottom: 16px;
    color: var(--ink);
}

.video-detail-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 20px;
}

.video-detail-date {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 8px;
}

.video-up-next {
    display: grid;
    grid-template-columns: 1fr 72px;
    gap: 16px;
    align-items: center;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-top: 28px;
    transition: background var(--transition);
}

.video-up-next:hover {
    background: var(--gray-200);
}

.video-up-next-label {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.video-up-next-title {
    display: block;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.35;
    color: var(--ink);
}

.video-up-next-meta {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.video-up-next-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.video-detail-share-col {
    display: none;
}

.video-share-mobile {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.video-share-mobile .video-share-vertical {
    flex-direction: row;
    justify-content: center;
}

.video-share-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--ink);
    transition: border-color var(--transition), transform var(--transition);
}

.video-share-btn:hover {
    border-color: var(--ink);
    transform: scale(1.05);
}

.video-share-btn svg {
    width: 20px;
    height: 20px;
}

/* Legacy video page */
.video-player-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.video-player-wrapper iframe,
.featured-player iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.video-page-content, .article-layout {
    display: grid;
    gap: 32px;
}

.video-page-main h1, .article-header h1 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 12px 0;
}

.video-meta, .article-meta-bar {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.article-meta-bar { display: flex; flex-wrap: wrap; gap: 16px; }

.video-description { line-height: 1.8; }

.share-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

/* TV page */
.tv-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--gray-100);
    transition: background 0.2s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--blue);
    color: var(--white);
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.video-card-lg .video-card-thumb {
    aspect-ratio: 16/9;
    margin-bottom: 12px;
}

.video-card-lg h3 {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
}

.video-cat-label {
    position: absolute;
    bottom: 12px; left: 12px;
    background: var(--yellow);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.featured-video-block {
    margin-bottom: 40px;
}

.featured-video-grid {
    display: grid;
    gap: 24px;
    margin-top: 16px;
}

.featured-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

/* Article page */
.article-cover {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.article-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gray-100);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.tool-btn:hover { background: var(--yellow); }
.tool-btn svg { width: 18px; height: 18px; }

.summary-dropdown { position: relative; }

.summary-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 10;
    min-width: 160px;
}

.summary-menu.open { display: block; }

.summary-menu button {
    display: block;
    width: 100%;
    padding: 10px 16px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.summary-menu button:hover { background: var(--gray-100); }

.article-body { line-height: 1.8; font-size: 1.05rem; }

.article-page {
    padding-bottom: 16px;
}

.article-page .article-layout {
    margin-bottom: 0;
}

.comments-section {
    margin-top: 48px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.comments-section h2 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.comment {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.comment-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.comment-form {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 640px;
}

.comment-form h3 {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-comment {
    align-self: flex-start;
    padding: 12px 32px;
}

.form-row { display: flex; flex-direction: column; gap: 12px; }

.comment-form input,
.comment-form textarea,
.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 32px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.contact-social { margin-top: 24px; }
.contact-social h3 {
    font-family: var(--font-title);
    font-weight: 600;
    margin-bottom: 12px;
}

/* Ad spaces */
.ad-space {
    background: var(--gray-100);
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius);
    padding: 40px 20px;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Alerts */
.messages { margin-bottom: 20px; }

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }
.alert-info { background: #d1ecf1; color: #0c5460; }

.empty-state {
    color: var(--gray-400);
    font-style: italic;
    padding: 24px 0;
}

/* Desktop */
@media (min-width: 768px) {
    .sidebar { transform: translateX(0); }
    .mobile-header { display: none; }
    .sidebar-overlay { display: none !important; }

    .main-wrapper { margin-left: var(--sidebar-width); }
    .main-content { padding: 32px 40px; }

    .brut-home {
        margin: -32px -40px 0;
        padding: 0 40px;
    }

    .brut-hero {
        margin: 0 -40px 48px;
        padding: 40px;
    }

    .brut-hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }

    .brut-hero-video {
        flex: 0 0 300px;
    }

    .brut-hero-player {
        max-width: 280px;
    }

    .brut-front-inner {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .brut-front-media {
        flex: 0 0 55%;
        aspect-ratio: 16 / 10;
    }

    .brut-front-content {
        flex: 1;
    }

    .brut-card {
        flex: 0 0 180px;
        width: 180px;
    }

    .hero-featured {
        padding: 32px 36px;
    }

    .hero-featured-inner {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .hero-featured-video {
        flex: 0 0 320px;
        max-width: 320px;
        width: 320px;
        min-height: 340px;
        padding: 16px;
    }

    .hero-featured-player {
        max-width: 260px;
        margin: 0 auto;
    }

    .hero-featured-content {
        flex: 1;
        text-align: left;
        gap: 18px;
    }

    .hero-featured-title {
        font-size: 2.1rem;
    }

    .hero-featured-description {
        font-size: 1.05rem;
        margin: 0;
        max-width: none;
    }

    .hero-grid {
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 40px;
    }

    .hero-title { font-size: 2.25rem; }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-grid-2 { grid-template-columns: repeat(2, 1fr); }

    .newsletter-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .newsletter-form {
        flex-direction: row;
        align-items: stretch;
        flex: 0 1 480px;
        max-width: 480px;
        gap: 10px;
    }

    .newsletter-fields {
        flex: 1;
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-btn {
        width: auto;
        min-width: 130px;
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .video-detail-brut {
        margin: -32px -40px 0;
        padding: 32px 40px 0;
    }

    .video-detail-layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr auto;
        gap: 36px 40px;
        align-items: start;
    }

    .video-detail-player-wrap {
        min-height: 420px;
        padding: 20px;
    }

    .video-detail-player {
        max-width: 280px;
        margin: 0 auto;
    }

    .video-detail-share-col {
        display: block;
        position: sticky;
        top: 32px;
    }

    .video-share-mobile {
        display: none;
    }

    .video-page-content,
    .article-layout {
        grid-template-columns: 1fr 300px;
    }

    .featured-video-grid {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row { flex-direction: row; }

    .video-card { flex: 0 0 200px; }
}

@media (min-width: 1024px) {
    .articles-grid-full,
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
