/* ========================================
   SECTION ACTUALITÉS
   ======================================== */

   .news {
    background-color: var(--surface-news);
    padding: var(--spacing-xl) 0;
  }
  
  .news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }
  
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .news-item {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border-top: 4px solid var(--accent-cyan);
  }
  
  .news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-bright) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
  }

  /* Background images for specific news items (file names in /img/) */
  .news-image--securite {
    background-image: url('../img/securite.jpeg');
    background-size: cover;
    background-position: center;
  }

  .news-image--accident {
    background-image: url('../img/accident.jpeg');
    background-size: cover;
    background-position: center;
  }
  
  .news-content {
    padding: 25px;
  }
  
  .news-date {
    font-size: 12px;
    color: var(--grey);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .news-title {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.4;
  }

  .news-title a {
    color: inherit;
    text-decoration: none;
  }

  .news-title a:hover,
  .news-title a:focus-visible {
    color: var(--accent-cyan);
    text-decoration: underline;
  }
  
  .news-excerpt {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 14px;
  }

  /* ========================================
     SECTION AVIS
     ======================================== */

  .trust-reviews {
    background: linear-gradient(180deg, var(--surface-news) 0%, var(--white) 100%);
    padding: var(--spacing-xl) 0;
  }

  .trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }

  .trust-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: var(--spacing-lg);
  }

  .trust-score {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-bright));
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    padding: 10px 16px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 14px var(--accent-soft);
  }

  .trust-subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }

  .trust-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }

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

  .trust-featured {
    border-left: 4px solid var(--accent-bright);
  }

  .trust-rating {
    margin: 0 0 10px;
    letter-spacing: 1px;
    font-size: 16px;
    color: var(--warning);
    font-weight: 700;
  }

  .trust-card h3 {
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 16px;
    line-height: 1.4;
  }

  .trust-text {
    margin-bottom: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
  }

  .trust-meta {
    margin: 0;
    color: var(--grey);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
  }