/* ========== HERO ACTUALITES ========== */
    .hero-actu {
      position: relative;
      min-height: 440px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }
    .hero-actu-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, transparent 100%),
        url('https://drive.google.com/thumbnail?id=1dQSw5ekAnK0yRAQdBhfH6TXeyHIY3y4O&sz=w2000') center/cover no-repeat;
    }
    /* Decorative storefront shape */
    .hero-actu-figure {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 55%;
      overflow: hidden;
    }
    .hero-store {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      width: 380px;
      height: 260px;
      background: url('https://drive.google.com/thumbnail?id=1iaWhz2mgBHO6df2AkIJrcgOD0ogcgp26&sz=w2000') center/cover no-repeat;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.06);
      display: none;
    }
    .hero-store::before {
      content: 'OuiGlass';
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-33.333%);
      font-family: 'Montserrat', Arial, sans-serif;
      font-size: 24px;
      font-weight: 900;
      font-style: italic;
      color: rgba(255,255,255,0.15);
    }
    .hero-store::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 10%;
      right: 10%;
      height: 60%;
      background: rgba(242,101,34,0.06);
      border-radius: 4px 4px 0 0;
      border: 1px solid rgba(255,255,255,0.04);
      border-bottom: none;
    }
    .hero-actu-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--orange);
      color: #fff;
      padding: 14px 18px;
      border-radius: 8px;
      text-align: center;
      z-index: 3;
    }
    .hero-actu-badge .badge-line1 {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      opacity: 0.85;
    }
    .hero-actu-badge .badge-line2 {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }
    .hero-actu-content {
      position: relative;
      z-index: 2;
      padding: 64px 56px;
      max-width: 650px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-actu-breadcrumb {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      opacity: 0.65;
      margin-bottom: 16px;
    }
    .hero-actu-content h1 {
      font-size: 52px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.04;
      margin-bottom: 28px;
      letter-spacing: -1px;
    }
    .hero-actu-content .featured-title {
      font-size: 22px;
      font-weight: 900;
      font-style: italic;
      line-height: 1.25;
      margin-bottom: 14px;
      max-width: 550px;
    }
    .hero-actu-content .featured-desc {
      font-size: 14px;
      line-height: 1.6;
      opacity: 0.75;
      margin-bottom: 8px;
      max-width: 480px;
    }
    .hero-actu-content .featured-date {
      font-size: 12px;
      opacity: 0.5;
      margin-bottom: 24px;
    }
    .btn-read-article {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange);
      color: #fff;
      padding: 14px 28px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      transition: background .2s;
      width: fit-content;
    }
    .btn-read-article:hover { background: #d9551a; }

    /* ========== ARTICLES SECTION ========== */
    .articles-section {
      padding: 64px 56px 80px;
      background: #fff;
    }
    .articles-filters {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .filter-btn {
      padding: 10px 24px;
      border: 2px solid #ddd;
      background: #fff;
      border-radius: 24px;
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
      cursor: pointer;
      transition: all .3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-family: 'Montserrat', Arial, sans-serif;
    }
    .filter-btn:hover { border-color: var(--orange); color: var(--orange); }
    .filter-btn.active {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
    }

    /* Article cards grid */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .article-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 2px solid #eee;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.1);
      border-color: var(--orange);
    }
    .article-card-img {
      aspect-ratio: 16/10;
      position: relative;
      overflow: hidden;
    }
    .article-card-img .img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .article-card-img .img-placeholder.style-a {
      background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 100%), url('https://drive.google.com/thumbnail?id=1mdQYtuh1NoNrEhyfhY7mdzG7kKl7D3M1&sz=w2000') center/cover no-repeat;
    }
    .article-card-img .img-placeholder.style-b {
      background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 100%), url('https://drive.google.com/thumbnail?id=1BC_LpflYtRM7ks0yEF6__VT3TSN9ru-z&sz=w2000') center/cover no-repeat;
    }
    .article-card-img .img-placeholder.style-c {
      background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 100%), url('https://drive.google.com/thumbnail?id=1Ujtruhv1cw_hBcl1irM_MQdqh8okSFiS&sz=w2000') center/cover no-repeat;
    }
    .article-card-img .card-badge {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: var(--orange);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 2px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .article-card-body {
      padding: 20px;
    }
    .article-card-body h3 {
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.35;
      margin-bottom: 10px;
      color: var(--dark);
    }
    .article-card-body p {
      font-size: 12px;
      line-height: 1.6;
      color: #666;
      margin-bottom: 14px;
    }
    .article-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .article-card-footer .date {
      font-size: 11px;
      color: #999;
      font-weight: 500;
    }
    .article-card-footer .read-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 800;
      color: var(--orange);
      text-transform: uppercase;
    }
    .article-card-footer .read-link:hover { text-decoration: underline; }

    /* ========== ILS PARLENT DE NOUS ========== */
    .media {
      padding: 64px 56px 72px;
      background: var(--gray);
      text-align: center;
    }
    .media h2 {
      font-size: 26px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 44px;
      display: inline-block;
      border-bottom: 3px solid var(--dark);
      padding-bottom: 8px;
    }
    .media-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .media-logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60px;
      min-width: 130px;
    }
    .logo-bfm {
      font-family: 'Arial Black', Arial, sans-serif;
      font-weight: 900;
      display: flex;
      align-items: flex-end;
    }
    .logo-bfm .bfm-text { font-size: 30px; color: #000; line-height: 1; }
    .logo-bfm .tv-text {
      font-size: 18px;
      font-weight: 900;
      color: #fff;
      background: #0055A4;
      padding: 2px 5px 4px;
      line-height: 1;
    }
    .logo-cnews {
      display: flex;
      align-items: center;
      font-family: 'Arial', sans-serif;
      font-weight: 900;
      font-size: 24px;
    }
    .logo-cnews .c-letter { color: #000; margin-right: 1px; }
    .logo-cnews .news-box {
      background: #E3000B;
      color: #fff;
      padding: 6px 12px;
      border-radius: 3px;
      font-size: 20px;
      letter-spacing: 1px;
    }
    .logo-rmc {
      background: #E3000B;
      color: #fff;
      font-family: 'Arial Black', Arial, sans-serif;
      font-size: 26px;
      font-weight: 900;
      padding: 8px 20px;
      border-radius: 4px;
      letter-spacing: 3px;
    }
    .logo-lepoint {
      background: #BE1622;
      color: #fff;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 22px;
      font-weight: 700;
      font-style: italic;
      padding: 10px 22px;
      border-radius: 4px;
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--dark);
      color: #fff;
      padding: 56px 56px 28px;
    }
    .footer-main {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-logo-text {
      font-size: 30px;
      font-weight: 900;
      font-style: italic;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.6;
      opacity: 0.6;
      margin-bottom: 22px;
      max-width: 280px;
    }
    .btn-rdv-footer {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 14px 26px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .btn-rdv-footer:hover { background: #d9551a; }
    .footer-col h4 {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 13px;
      opacity: 0.55;
      transition: opacity .2s;
    }
    .footer-col ul li a:hover { opacity: 1; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom .copyright { font-size: 12px; opacity: 0.4; }
    .footer-bottom-links { display: flex; gap: 28px; }
    .footer-bottom-links a { font-size: 12px; opacity: 0.45; transition: opacity .2s; }
    .footer-bottom-links a:hover { opacity: 1; }

    /* ========== ANIMATIONS ========== */
    .anim-fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
    }
    .anim-fade-up.visible { opacity: 1; transform: translateY(0); }
    .anim-fade-up.delay-1 { transition-delay: .1s; }
    .anim-fade-up.delay-2 { transition-delay: .2s; }
    .anim-fade-up.delay-3 { transition-delay: .3s; }
    .anim-fade-up.delay-4 { transition-delay: .4s; }
    .anim-fade-up.delay-5 { transition-delay: .5s; }
    .anim-fade-up.delay-6 { transition-delay: .6s; }

    /* Hero entrance */
    .hero-actu-content > * {
      opacity: 0;
      transform: translateY(25px);
      animation: heroFadeIn .7s cubic-bezier(.25,.46,.45,.94) forwards;
    }
    .hero-actu-content > *:nth-child(1) { animation-delay: .1s; }
    .hero-actu-content > *:nth-child(2) { animation-delay: .2s; }
    .hero-actu-content > *:nth-child(3) { animation-delay: .3s; }
    .hero-actu-content > *:nth-child(4) { animation-delay: .4s; }
    .hero-actu-content > *:nth-child(5) { animation-delay: .5s; }
    .hero-actu-content > *:nth-child(6) { animation-delay: .6s; }
    @keyframes heroFadeIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ========== RESPONSIVE — TABLET ========== */
    @media (max-width: 1100px) {
      .header { padding: 10px 32px; }
      .header-nav { gap: 18px; }
      .header-nav a { font-size: 13px; }
      .hero-actu-content h1 { font-size: 42px; }
      .hero-actu-content { padding: 48px 36px; }
      .hero-actu-content .featured-title { font-size: 20px; }
      .articles-section { padding: 48px 36px 64px; }
      .articles-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
      .media { padding: 48px 36px; }
      .footer { padding: 48px 36px 24px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* ========== RESPONSIVE — MOBILE ========== */
    @media (max-width: 768px) {
      .header { padding: 10px 20px; }
      .header-nav, .header-actions { display: none; }
      .burger { display: flex; }
      .logo-wrap img { width: 90px; height: 54px; }

      .hero-actu { min-height: 380px; }
      .hero-actu-content { padding: 40px 24px; max-width: 100%; }
      .hero-actu-content h1 { font-size: 34px; }
      .hero-actu-content .featured-title { font-size: 17px; }
      .hero-actu-content .featured-desc { font-size: 13px; }
      .hero-actu-figure { display: none; }
      .hero-actu-badge { display: none; }

      .articles-section { padding: 40px 20px 56px; }
      .articles-filters { gap: 8px; }
      .filter-btn { padding: 8px 18px; font-size: 12px; }
      .articles-grid { grid-template-columns: 1fr; gap: 20px; }

      .media { padding: 40px 20px 48px; }
      .media h2 { font-size: 22px; }
      .media-logos { flex-direction: column; gap: 20px; }

      .footer { padding: 36px 20px 20px; }
      .footer-main { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    }

    /* ========== MOBILE SMALL ========== */
    @media (max-width: 420px) {
      .header { padding: 8px 16px; }
      .logo-wrap img { width: 80px; height: 48px; }
      .hero-actu { min-height: 340px; }
      .hero-actu-content { padding: 32px 18px; }
      .hero-actu-content h1 { font-size: 28px; }
      .hero-actu-content .featured-title { font-size: 15px; }
      .hero-actu-content .featured-desc { font-size: 12px; }
      .filter-btn { padding: 7px 14px; font-size: 11px; }
      .article-card-body h3 { font-size: 13px; }
      .media h2 { font-size: 20px; }
    }