  /* ══════════════════════════════
     SECTION ACTUS
  ══════════════════════════════ */
  .news-section {
    background: #fff;
    padding: 72px 80px 80px;
  }

  /* En-tête section */
  .news-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .news-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #111;
    line-height: 1;
  }
  .news-section-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    border: 1.5px solid #111;
    padding: 8px 18px;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .news-section-link:hover { background: #111; color: #fff; }

  /* Grille principale : 1 grande + liste à droite */
  .news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 16px;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
  }

  .news-empty {
    grid-column: 1 / -1;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    text-align: center;
    padding: 40px 0;
  }

  /* ── Card principale (grande) ── */
  .news-main-skeleton,
  .news-item-skeleton {
    cursor: default;
    pointer-events: none;
  }

  .news-section .skeleton-block,
  .news-section .skeleton-line {
    position: relative;
    overflow: hidden;
    background: rgba(17, 17, 17, 0.08);
  }

  .news-section .skeleton-block::after,
  .news-section .skeleton-line::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    animation: newsSkeletonSweep 1.2s ease-in-out infinite;
  }

  .news-section .skeleton-line {
    display: block;
    border-radius: 2px;
  }

  .skeleton-news-tag {
    width: 94px;
    height: 18px;
    margin-bottom: 14px;
  }

  .skeleton-news-title {
    width: min(100%, 420px);
    height: 34px;
  }

  .skeleton-news-item-title {
    width: min(100%, 190px);
    height: 22px;
    margin-bottom: 18px;
  }

  .skeleton-news-item-tag {
    width: 82px;
    height: 16px;
  }

  @keyframes newsSkeletonSweep {
    to { transform: translateX(100%); }
  }

  @media (prefers-reduced-motion: reduce) {
    .news-section .skeleton-block::after,
    .news-section .skeleton-line::after {
      animation: none;
    }
  }

  .news-main {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #f4f2ee;
    overflow: hidden;
    cursor: pointer;
  }
  .news-main-img {
    width: 100%;
    height: clamp(280px, 28vw, 390px);
    overflow: hidden;
    display: block;
  }
  .news-main-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  }
  .news-main:hover .news-main-img img { transform: scale(1.04); }

  .news-main-body {
    padding: 24px 28px 28px;
  }
  .news-main-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    margin-bottom: 12px;
  }
  .news-main-tag-icon {
    width: 17px; height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
  .news-main-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 700;
    line-height: 1.12;
    color: #111;
    transition: color 0.2s;
  }
  .news-main:hover .news-main-title { color: #000; }

  /* ── Liste de cards à droite ── */
  .news-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 100%;
  }

  .news-item {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #f4f2ee;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background 0.2s;
    overflow: hidden;
    flex: 1;
    min-height: 0;
  }
  .news-item:hover { background: #f4f2ee; }

  .news-item-body {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
  }
  .news-item-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin-bottom: 10px;
    transition: color 0.2s;
  }
  .news-item:hover .news-item-title { color: #000; }

  .news-item-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(0,0,0,0.4);
  }
  .news-item-tag-icon {
    width: 15px; height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .news-item-img {
    width: 118px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }
  .news-item-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .news-item:hover .news-item-img img { transform: scale(1.06); }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 1024px) {
    .news-grid { grid-template-columns: 1fr 340px; }
    .news-item-img { width: 110px; }
  }
  @media (max-width: 860px) {
    .news-section { padding: 52px 40px 60px; }
    .news-grid { grid-template-columns: 1fr; gap: 12px; }
    .news-list { gap: 6px; }
    .news-main-img { height: auto; aspect-ratio: 16/9; }
  }
  @media (max-width: 540px) {
    .news-section { padding: 40px 20px 48px; }
    .news-item-img { width: 90px; }
    .news-item-body { padding: 14px 14px; }
  }
