/* ========================================
   PAGE ACTUALITÉS - Styles
   ======================================== */

/* ========================================
   SECTION LISTE DES ACTUALITÉS
   ======================================== */

.section-actualites-liste {
  padding: 80px 0;
  background-color: #F5FBFA;
}

.actualites-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.actualites-intro-title {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 600;
  color: #1e3a4c;
  margin-bottom: 16px;
}

.actualites-intro-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #4a6572;
}

/* Grille des actualités */
.actualites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card actualité */
.actu-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(30, 58, 76, 0.08);
  transition: all 0.3s ease;
}

.actu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(30, 58, 76, 0.15);
}

.actu-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.actu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.actu-card:hover .actu-card-image img {
  transform: scale(1.05);
}

.actu-card-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #5FBFAB;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
}

.actu-card-content {
  padding: 32px;
}

.actu-card-category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5FBFAB;
  margin-bottom: 12px;
}

.actu-card-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: #1e3a4c;
  margin-bottom: 16px;
  line-height: 1.3;
}

.actu-card-excerpt {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #4a6572;
  margin-bottom: 24px;
}

.actu-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #5FBFAB;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.actu-card-link:hover {
  gap: 12px;
}

.actu-card-link svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   PAGE ACTUALITÉ DÉTAIL
   ======================================== */

.section-actu-detail {
  padding: 80px 0;
  background-color: #F5FBFA;
}

.actu-detail-container {
  max-width: 800px;
  margin: 0 auto;
}

.actu-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.actu-orizons-badge {
  margin-bottom: 32px;
}

.actu-orizons-badge a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.actu-orizons-badge a:hover {
  transform: scale(1.05);
}

.actu-orizons-badge img {
  width: 156px;
  height: auto;
}

.actu-detail-date {
  font-family: var(--font-body);
  font-size: 14px;
  color: #5FBFAB;
  font-weight: 500;
}

.actu-detail-category {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4a6572;
  background: rgba(95, 191, 171, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
}

.actu-detail-title {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 600;
  color: #1e3a4c;
  margin-bottom: 32px;
  line-height: 1.3;
}

.actu-detail-content {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: #4a6572;
}

.actu-detail-content p {
  margin-bottom: 24px;
}

.actu-detail-content strong {
  color: #1e3a4c;
}

.actu-detail-content a {
  color: #5FBFAB;
  text-decoration: none;
  transition: color 0.3s ease;
}

.actu-detail-content a:hover {
  color: #1e3a4c;
}

.actu-detail-content a strong {
  color: inherit;
}

.actu-detail-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1e3a4c;
  margin: 40px 0 20px;
}

.actu-detail-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a4c;
  margin: 32px 0 16px;
}

.actu-detail-content ul {
  margin: 20px 0;
  padding-left: 24px;
}

.actu-detail-content li {
  margin-bottom: 12px;
  position: relative;
}

.actu-detail-content li::marker {
  color: #5FBFAB;
}

/* Stats block */
.actu-stats-block {
  background: linear-gradient(135deg, #1e3a4c 0%, #2c485b 100%);
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
}

.actu-stats-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
}

.actu-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.actu-stat-item {
  text-align: center;
}

.actu-stat-number {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 700;
  color: #5FBFAB;
  margin-bottom: 8px;
}

.actu-stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Image dans l'article */
.actu-detail-image {
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(30, 58, 76, 0.1);
}

.actu-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.actu-detail-image figcaption {
  background: #f8f9fa;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #4a6572;
  font-style: italic;
  text-align: center;
}

/* CTA Section */
.actu-cta-section {
  margin-top: 60px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(95, 191, 171, 0.1) 0%, rgba(95, 191, 171, 0.05) 100%);
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(95, 191, 171, 0.2);
}

.actu-cta-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: #1e3a4c;
  margin-bottom: 16px;
}

.actu-cta-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: #4a6572;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.actu-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #5FBFAB;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.actu-cta-btn:hover {
  background: #4ea897;
  transform: translateY(-2px);
}

/* Navigation retour */
.actu-nav {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(30, 58, 76, 0.1);
}

.actu-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #4a6572;
  text-decoration: none;
  transition: color 0.3s ease;
}

.actu-back-link:hover {
  color: #5FBFAB;
}

.actu-back-link svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1023px) {
  .actualites-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .actu-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .section-actualites-liste {
    padding: 60px 0;
  }

  .actualites-intro-title,
  .actu-detail-title {
    font-size: 26px;
  }

  .actu-card-content {
    padding: 24px;
  }

  .actu-card-title {
    font-size: 20px;
  }

  .actu-detail-content {
    font-size: 16px;
  }

  .actu-stats-block {
    padding: 32px 24px;
  }

  .actu-stat-number {
    font-size: 28px;
  }

  .actu-cta-section {
    padding: 32px 24px;
  }
}
