@charset "UTF-8";
/* ==========================================
   STYLES PAGE D'ACCUEIL - CADETS ST-JEAN
   Version avec système d'alertes avancé
   ========================================== */
/* ==========================================
   BASE ET RESET
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  color: #1f2937;
  background-color: #ffffff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   SYSTÈME D'ALERTES D'EN-TÊTE
   ========================================== */
.cadets-alerts-container {
  position: relative;
  z-index: 1019;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.cadets-alerts-container .container {
  max-width: none;
  padding: 0;
}
.cadets-alerts-container.alerts-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.cadets-alerts-container.alerts-fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

body:has(.alerts-fixed-top) .cadets-alerts-container {
  padding-top: 60px;
}

body:has(.alerts-fixed-bottom) .cadets-alerts-container {
  padding-bottom: 60px;
}

.cadets-alert {
  padding: 1rem 0;
  text-align: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  border: none;
  display: block;
}
.cadets-alert.alert-info {
  background: #347c94;
  color: #ffffff;
}
.cadets-alert.alert-warning {
  background: #d5a837;
  color: #000000;
}
.cadets-alert.alert-success {
  background: #10b981;
  color: #ffffff;
}
.cadets-alert.alert-urgent {
  background: #8f2024;
  color: #ffffff;
  animation: urgentPulse 2s infinite;
}
.cadets-alert.alert-announcement {
  background: #d5a837;
  color: #000000;
}
.cadets-alert.alert-clickable {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.cadets-alert.alert-clickable:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  opacity: 0.95;
}
.cadets-alert.alert-clickable:focus {
  outline: 2px solid #f8d73f;
  outline-offset: 2px;
}
.cadets-alert .alert-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cadets-alert .alert-content .alert-link-wrapper {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cadets-alert .alert-content .alert-link-wrapper:hover {
  text-decoration: underline;
}
.cadets-alert .alert-content .alert-link-wrapper:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
  border-radius: 0.25rem;
}
.cadets-alert .alert-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  animation: iconFloat 3s ease-in-out infinite;
}
.cadets-alert .alert-message {
  flex: 1;
  min-width: 200px;
  text-align: center;
  line-height: 1.5;
}
.cadets-alert .alert-action-link {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 0.5rem;
  white-space: nowrap;
  transition: 0.15s ease-in-out;
}
.cadets-alert .alert-action-link:hover {
  opacity: 0.8;
  text-decoration: none;
}
.cadets-alert .alert-action-link:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
  border-radius: 0.25rem;
}
.cadets-alert .alert-dismiss {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: inherit;
  font-size: 1.25rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease-in-out;
  z-index: 2;
}
.cadets-alert .alert-dismiss:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(-50%) scale(1.1);
}
.cadets-alert .alert-dismiss:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.alerts-stack .cadets-alert {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.alerts-stack .cadets-alert:last-child {
  border-bottom: none;
}

.cadets-alerts-carousel {
  position: relative;
}
.cadets-alerts-carousel .carousel-indicators {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.25rem;
  z-index: 3;
}
.cadets-alerts-carousel .carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: 0.15s ease-in-out;
}
.cadets-alerts-carousel .carousel-indicator.active, .cadets-alerts-carousel .carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}
.cadets-alerts-carousel .carousel-indicator:focus {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.alerts-style-classic .cadets-alert {
  border-top: 3px solid rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
}

.alerts-style-minimal .cadets-alert {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #1f2937 !important;
  font-weight: 400;
  padding: 0.5rem 0;
}
.alerts-style-minimal .cadets-alert .alert-icon {
  opacity: 0.7;
}

.alerts-style-bold .cadets-alert {
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.alerts-style-bold .cadets-alert .alert-icon {
  font-size: 1.5rem;
}

.alert-fade {
  animation: alertFadeIn 0.5s ease-out;
}

.alert-slide {
  animation: alertSlideIn 0.6s ease-out;
}

.alert-pulse {
  animation: alertPulse 2s ease-in-out infinite;
}

.alert-bounce {
  animation: alertBounceIn 0.8s ease-out;
}

@keyframes alertFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes alertSlideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes alertPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes alertBounceIn {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  60% {
    transform: translateY(10px);
    opacity: 1;
  }
  80% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes urgentPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
}
@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
/* ==========================================
   HEADER ET NAVIGATION (ajusté pour les alertes)
   ========================================== */
.header {
  background: linear-gradient(135deg, #000000 0%, #414833 100%);
  color: #ffffff;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-height: 80px;
}
.alerts-fixed-top ~ .header {
  top: 60px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #d5a837;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 300px;
  line-height: 1.2;
}
.logo::before {
  content: " ";
  font-size: 1.6rem;
  background: url("../images/logo_small.png") no-repeat center;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: inline-block;
  flex-shrink: 0;
}
.logo:hover {
  color: #f8d73f;
  transition: 0.2s ease-in-out;
}
.logo:focus {
  outline: 2px solid #f8d73f;
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
  white-space: nowrap;
}
.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-item:hover .dropdown, .nav-item:hover .cadets-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link,
.cadets-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.3;
  white-space: nowrap;
}
.nav-link:hover,
.cadets-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f8d73f;
}
.nav-link:focus,
.cadets-nav-link:focus {
  outline: 2px solid #f8d73f;
  outline-offset: 2px;
}

.dropdown-arrow {
  font-size: 0.6rem;
  transition: 0.15s ease-in-out;
  margin-left: 0.25rem;
}

.dropdown,
.cadets-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.2s ease-in-out;
  z-index: 1000;
}
.dropdown a,
.dropdown .cadets-dropdown-link,
.cadets-dropdown a,
.cadets-dropdown .cadets-dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #1f2937;
  text-decoration: none;
  transition: 0.15s ease-in-out;
  white-space: normal;
  font-size: 0.875rem;
}
.dropdown a:hover,
.dropdown .cadets-dropdown-link:hover,
.cadets-dropdown a:hover,
.cadets-dropdown .cadets-dropdown-link:hover {
  background-color: #f3f4f6;
  color: #000000;
}
.dropdown a:first-child,
.dropdown .cadets-dropdown-link:first-child,
.cadets-dropdown a:first-child,
.cadets-dropdown .cadets-dropdown-link:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}
.dropdown a:last-child,
.dropdown .cadets-dropdown-link:last-child,
.cadets-dropdown a:last-child,
.cadets-dropdown .cadets-dropdown-link:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #f8d73f;
  outline-offset: 2px;
}

/* ==========================================
   SECTION HERO
   ========================================== */
.hero {
  background: linear-gradient(135deg, #000000 0%, #414833 50%, #0a4d6b 100%);
  color: #ffffff;
  padding: 4rem 0 2rem;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f8d73f;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero p,
.hero .hero-content {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  line-height: 1.625;
}

/* ==========================================
   MÉDIAS HERO (CARROUSEL/IMAGE/GALERIE)
   ========================================== */
.hero-media {
  padding: 0 0 2rem;
  background: linear-gradient(180deg, #000000 0%, #414833 30%, #f3f4f6 100%);
}

/* Carrousel */
.carrousel-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.carrousel-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
}
.carrousel-wrapper:focus {
  outline: 2px solid #f8d73f;
  outline-offset: 4px;
}

.carrousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.carrousel-slide.active {
  opacity: 1;
}
.carrousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.carrousel-slide:hover .carrousel-overlay {
  transform: translateY(0);
}

.carrousel-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.carrousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.2s ease-in-out;
}
.carrousel-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.carrousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.carrousel-btn {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #ffffff;
  font-size: 1.875rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  pointer-events: auto;
}
.carrousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}
.carrousel-btn:focus {
  outline: 2px solid #f8d73f;
  outline-offset: 2px;
}

.carrousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.indicator.active, .indicator:hover {
  background: #ffffff;
}
.indicator:focus {
  outline: 2px solid #f8d73f;
  outline-offset: 2px;
}

.carrousel-placeholder {
  width: 100%;
  height: 400px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #4b5563;
}
.carrousel-placeholder .placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Image statique */
.static-image-container {
  max-width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.static-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.2s ease-in-out;
}
.static-image-container a:hover img {
  transform: scale(1.02);
}

/* Galerie */
.gallery-container .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-item {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}

/* ==========================================
   SECTION ACCÈS RAPIDE
   ========================================== */
.quick-actions {
  padding: 5rem 0;
  background: #f3f4f6;
}
.quick-actions h2 {
  text-align: center;
  font-size: 2.25rem;
  color: #000000;
  margin-bottom: 3rem;
  font-weight: 700;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.action-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease-in-out;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(213, 168, 55, 0.1), transparent);
  transition: left 0.3s ease-in-out;
}
.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #d5a837;
}
.action-card:hover::before {
  left: 100%;
}
.action-card.primary {
  background: linear-gradient(135deg, #000000 0%, #414833 100%);
  color: #ffffff;
}
.action-card.primary .action-icon {
  color: #f8d73f;
}
.action-card.primary h3 {
  color: #ffffff;
}
.action-card.secondary {
  background: linear-gradient(135deg, #0a4d6b 0%, #347c94 100%);
  color: #ffffff;
}
.action-card.secondary .action-icon {
  color: #f8d73f;
}
.action-card.secondary h3 {
  color: #ffffff;
}
.action-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #000000;
  font-weight: 600;
}
.action-card p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.625;
}

.action-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #d5a837;
  display: block;
}
.action-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ==========================================
   BOUTONS
   ========================================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease-in-out;
  border: 2px solid transparent;
  font-size: 1rem;
  cursor: pointer;
}
.btn:focus {
  outline: 2px solid #f8d73f;
  outline-offset: 2px;
}

.btn-primary {
  background: #d5a837;
  color: white;
  border-color: #d5a837;
}
.btn-primary:hover {
  background: #f8d73f;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
.btn-secondary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #000000;
  border-color: #000000;
}
.btn-outline:hover {
  background: #000000;
  color: #ffffff;
}

/* ==========================================
   SECTION ACTUALITÉS
   ========================================== */
.news-section {
  padding: 5rem 0;
  background: #ffffff;
}

.news-header {
  text-align: center;
  margin-bottom: 3rem;
}
.news-header h2 {
  font-size: 3rem;
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 700;
}
.news-header p {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.featured-news {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease-in-out;
  border: 1px solid #e5e7eb;
}
.featured-news:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.featured-news:hover .featured-image img {
  transform: scale(1.02);
}

.featured-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.featured-image.placeholder {
  background: linear-gradient(135deg, #0a4d6b 0%, #347c94 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ffffff;
}

.featured-content {
  padding: 2rem;
}
.featured-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.featured-content h3 a {
  color: #000000;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.featured-content h3 a:hover {
  color: #d5a837;
}
.featured-content p {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.news-date {
  color: #d5a837;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-item {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: 0.2s ease-in-out;
  border-left: 4px solid #d5a837;
  position: relative;
  overflow: hidden;
}
.news-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #d5a837;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.2s ease-in-out;
}
.news-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}
.news-item:hover::before {
  transform: scaleY(1);
}
.news-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.news-item h4 a {
  color: #000000;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.news-item h4 a:hover {
  color: #d5a837;
}
.news-item p {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.news-item .news-date {
  font-size: 0.75rem;
}

.news-thumbnail {
  margin-top: 0.75rem;
  border-radius: 0.25rem;
  overflow: hidden;
}
.news-thumbnail img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.no-news {
  text-align: center;
  padding: 4rem;
  color: #4b5563;
  background: #f3f4f6;
  border-radius: 0.75rem;
  border: 2px dashed #d1d5db;
}
.no-news .no-news-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.no-news h3 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1rem;
}

.news-footer,
.news-archive-link {
  text-align: center;
  margin-top: 2rem;
}

.load-more-news {
  margin-right: 1rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: linear-gradient(135deg, #000000 0%, #414833 100%);
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #d5a837;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-list li {
  margin-bottom: 0.5rem;
}
.footer-nav-list a,
.footer-nav-list .cadets-footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: 0.15s ease-in-out;
  display: block;
  padding: 0.25rem 0;
}
.footer-nav-list a:hover,
.footer-nav-list .cadets-footer-link:hover {
  color: #f8d73f;
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: #ccd1d1;
}
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.15s ease-in-out;
}
.footer-bottom a:hover {
  color: #f8d73f;
  text-decoration: underline;
}

/* ==========================================
   RESPONSIVE DESIGN - ALERTES
   ========================================== */
@media (max-width: 1024px) {
  .cadets-alert {
    padding: 0.75rem 0;
  }
  .cadets-alert .alert-content {
    gap: 0.5rem;
    flex-direction: column;
  }
}
@media (max-width: 1024px) and (min-width: 640px) {
  .cadets-alert .alert-content {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .cadets-alert .alert-message {
    min-width: auto;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .cadets-alert .alert-dismiss {
    position: static;
    transform: none;
    margin-top: 0.5rem;
    align-self: center;
  }
}
@media (max-width: 1024px) and (min-width: 640px) {
  .cadets-alert .alert-dismiss {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .alerts-style-bold .cadets-alert {
    font-size: 1rem;
    padding: 1rem 0;
  }
}
@media (max-width: 768px) {
  .cadets-alert {
    padding: 0.5rem 0;
    font-size: 0.875rem;
  }
  .cadets-alert .alert-content {
    flex-direction: column;
    gap: 0.25rem;
  }
  .cadets-alert .alert-icon {
    font-size: 1.125rem;
  }
  .cadets-alert .alert-message {
    line-height: 1.375;
  }
  .cadets-alert .alert-dismiss {
    position: static;
    transform: none;
    margin-top: 0.5rem;
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }

  .alerts-style-minimal .cadets-alert {
    padding: 0.25rem 0;
    font-size: 0.75rem;
  }

  .alerts-style-bold .cadets-alert {
    font-size: 0.875rem;
    padding: 0.75rem 0;
    letter-spacing: 0.25px;
  }
  .alerts-style-bold .cadets-alert .alert-icon {
    font-size: 1.25rem;
  }

  .cadets-alerts-carousel .carousel-indicators {
    bottom: 0.25rem;
  }
  .cadets-alerts-carousel .carousel-indicators .carousel-indicator {
    width: 6px;
    height: 6px;
  }
}
@media (max-width: 640px) {
  .cadets-alert {
    padding: 0.5rem 0;
  }
  .cadets-alert .alert-content {
    padding: 0 0.5rem;
  }
  .cadets-alert .alert-message {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .cadets-alert .alert-icon {
    font-size: 1rem;
  }
  .cadets-alert .alert-action-link {
    font-size: 0.75rem;
    margin-left: 0;
    margin-top: 0.25rem;
  }
  .cadets-alert .alert-dismiss {
    width: 20px;
    height: 20px;
    font-size: 0.875rem;
  }

  .cadets-alerts-container.alerts-fixed-top,
.cadets-alerts-container.alerts-fixed-bottom {
    position: relative;
    z-index: auto;
  }

  body:has(.alerts-fixed-top) .cadets-alert,
body:has(.alerts-fixed-bottom) .cadets-alert {
    padding-top: 0;
    padding-bottom: 0;
  }
}
/* ==========================================
   RESPONSIVE DESIGN - GÉNÉRAL
   ========================================== */
@media (max-width: 1280px) {
  .nav-menu {
    gap: 1rem;
  }

  .nav-link,
.cadets-nav-link {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  .logo {
    font-size: 1rem;
    max-width: 250px;
  }
}
@media (max-width: 1024px) {
  .nav-menu {
    gap: 0.75rem;
  }

  .header {
    padding: 1rem 0;
  }

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

  .actions-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .carrousel-wrapper {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000000;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    gap: 0.5rem;
  }
  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
    white-space: normal;
  }

  .nav-link,
.cadets-nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    justify-content: center;
    white-space: normal;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .dropdown,
.cadets-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
  }
  .dropdown a,
.dropdown .cadets-dropdown-link,
.cadets-dropdown a,
.cadets-dropdown .cadets-dropdown-link {
    color: #ffffff;
    padding: 0.5rem 1rem;
  }

  .logo {
    font-size: 1rem;
    max-width: 200px;
  }

  .header {
    padding: 0.75rem 0;
  }

  .hero {
    padding: 2.5rem 0 1rem;
  }
  .hero h1 {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
  }
  .hero p,
.hero .hero-content {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-media {
    padding: 0 0 1.5rem;
  }

  .carrousel-wrapper {
    height: 300px;
  }

  .carrousel-placeholder {
    height: 250px;
  }
  .carrousel-placeholder .placeholder-icon {
    font-size: 3rem;
  }

  .quick-actions {
    padding: 3rem 0;
  }
  .quick-actions h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }

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

  .action-card {
    padding: 1.5rem;
  }
  .action-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  .action-card p {
    margin-bottom: 1rem;
  }

  .action-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
  }

  .news-section {
    padding: 3rem 0;
  }

  .news-header h2 {
    font-size: 1.875rem;
  }

  .featured-image {
    height: 200px;
  }

  .featured-content {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 0.5rem;
  }

  .logo {
    font-size: 0.875rem;
    max-width: 180px;
  }
  .logo::before {
    width: 28px;
    height: 28px;
    font-size: 1.4rem;
  }

  .header {
    min-height: 60px;
  }

  .nav-container {
    min-height: 50px;
  }

  .hero {
    padding: 2rem 0 1rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p,
.hero .hero-content {
    font-size: 0.875rem;
  }

  .carrousel-wrapper {
    height: 250px;
  }

  .action-card {
    padding: 1rem;
  }

  .quick-actions {
    padding: 2rem 0;
  }
  .quick-actions h2 {
    font-size: 1.5rem;
  }

  .news-section {
    padding: 2rem 0;
  }

  .featured-image {
    height: 150px;
  }

  .featured-content {
    padding: 1rem;
  }
  .featured-content h3 {
    font-size: 1.25rem;
  }

  .news-item {
    padding: 1rem;
  }

  .footer {
    padding: 2rem 0 0.5rem;
  }

  .footer-content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
/* ==========================================
   ACCESSIBILITÉ ET OPTIMISATIONS
   ========================================== */
/* Animation réduite pour accessibilité */
@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .carrousel-slide {
    transition: opacity 0.1s !important;
  }

  .cadets-alert {
    animation: none !important;
  }
  .cadets-alert .alert-icon {
    animation: none !important;
  }

  .alert-fade,
.alert-slide,
.alert-pulse,
.alert-bounce {
    animation: none !important;
  }
}
/* Mode sombre (si supporté) */
@media (prefers-color-scheme: dark) {
  .quick-actions {
    background: #d6d9e0;
  }

  .action-card {
    background: #f2f2f2;
    border-color: #c8ccd5;
  }

  .news-section {
    background: #f7f7f7;
  }

  .footer-bottom {
    border-color: rgba(255, 255, 255, 0.1);
  }

  .cadets-alert.alert-announcement {
    background: #b38b26;
  }
  .cadets-alert.alert-info {
    background: #275c6e;
  }
  .cadets-alert.alert-warning {
    background: #b38b26;
  }
  .cadets-alert.alert-success {
    background: #0c8a60;
  }
  .cadets-alert.alert-urgent {
    background: #65171a;
  }

  .alerts-style-minimal .cadets-alert {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
  }
}
/* Styles pour l'impression */
@media print {
  .header,
.cadets-alerts-container,
.mobile-menu-toggle,
.carrousel-controls,
.carrousel-indicators,
.alert-dismiss,
.carousel-indicators {
    display: none !important;
  }

  .hero,
.action-card,
.featured-news,
.news-item,
.cadets-alert {
    box-shadow: none !important;
    border: 1px solid #d1d5db !important;
  }

  .hero {
    background: none !important;
    color: #000000 !important;
  }

  .cadets-alert {
    background: #f3f4f6 !important;
    color: #000000 !important;
    page-break-inside: avoid;
  }

  a {
    color: #000000 !important;
    text-decoration: underline !important;
  }

  .container {
    max-width: none !important;
    padding: 0 !important;
  }
}
/* États de focus améliorés pour l'accessibilité */
.cadets-alert:focus-within,
.alert-link-wrapper:focus,
.alert-action-link:focus,
.alert-dismiss:focus,
.carousel-indicator:focus {
  outline: 3px solid #f8d73f;
  outline-offset: 2px;
}

/* Support pour les utilisateurs qui préfèrent moins de mouvement */
@media (prefers-reduced-motion: reduce) {
  .cadets-alerts-carousel .carousel-indicator {
    display: none;
  }

  .cadets-alert.alert-clickable:hover {
    transform: none;
  }
}
/* ==========================================
   STYLES SEO OPTIMISÉS - CADETS ST-JEAN
   ========================================== */
/* Breadcrumbs SEO-friendly */
.breadcrumbs {
  background: var(--gray-50, #f9fafb);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200, #e5e7eb);
  font-size: 0.875rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--gray-400, #9ca3af);
  font-weight: 500;
}

.breadcrumb-list a {
  color: var(--navy-primary, #000000);
  text-decoration: none;
  transition: var(--transition-base, 0.2s ease-in-out);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius, 0.25rem);
}

.breadcrumb-list a:hover {
  color: var(--logo-gold, #d5a837);
  background: var(--white, #ffffff);
  text-decoration: underline;
}

.breadcrumb-list li:last-child span {
  color: var(--gray-600, #4b5563);
  font-weight: 500;
  padding: 0.25rem 0.5rem;
}

/* Hero breadcrumb (dans les sections hero) */
.hero-breadcrumb {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-breadcrumb .breadcrumb-link {
  color: var(--white, #ffffff);
  text-decoration: none;
  transition: var(--transition-base, 0.2s ease-in-out);
}

.hero-breadcrumb .breadcrumb-link:hover {
  color: var(--logo-yellow, #f8d73f);
  text-decoration: underline;
}

.hero-breadcrumb .breadcrumb-separator {
  margin: 0 0.25rem;
  opacity: 0.6;
}

.hero-breadcrumb .breadcrumb-current {
  font-weight: 500;
  color: var(--logo-gold, #d5a837);
}

/* Optimisation des titres pour SEO */
h1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 1.5rem 0 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 1.25rem 0 0.75rem;
}

h4 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 1rem 0 0.5rem;
}

/* Optimisation des images pour Core Web Vitals */
img {
  height: auto;
  max-width: 100%;
  border-radius: var(--border-radius, 0.25rem);
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Structure sémantique améliorée */
main {
  min-height: 50vh;
}

article {
  position: relative;
}

/* Optimisation des liens pour l'accessibilité */
a {
  transition: var(--transition-base, 0.2s ease-in-out);
}

a:focus {
  outline: 2px solid var(--logo-yellow, #f8d73f);
  outline-offset: 2px;
  border-radius: var(--border-radius, 0.25rem);
}

/* Skip links pour l'accessibilité */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--navy-primary, #000000);
  color: var(--white, #ffffff);
  padding: 8px;
  text-decoration: none;
  border-radius: var(--border-radius, 0.25rem);
  z-index: 10000;
  font-weight: 600;
  transition: var(--transition-base, 0.2s ease-in-out);
}

.skip-link:focus {
  top: 6px;
  outline: 2px solid var(--logo-yellow, #f8d73f);
}

/* Métadonnées optimisées */
.post-meta,
.article-meta,
.resource-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray-600, #4b5563);
  margin: 1rem 0;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-icon {
  font-size: 1rem;
  color: var(--logo-gold, #d5a837);
}

/* Tags et catégories pour SEO */
.post-tags,
.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag-item,
.category-item {
  background: var(--gray-100, #f3f4f6);
  color: var(--navy-primary, #000000);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full, 9999px);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-base, 0.2s ease-in-out);
  border: 1px solid var(--gray-200, #e5e7eb);
}

.tag-item:hover,
.category-item:hover {
  background: var(--logo-gold, #d5a837);
  color: var(--navy-primary, #000000);
  border-color: var(--logo-gold, #d5a837);
  text-decoration: none;
}

/* Navigation SEO améliorée */
.post-navigation,
.page-navigation {
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200, #e5e7eb);
  border-bottom: 1px solid var(--gray-200, #e5e7eb);
}

.nav-direction {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--logo-gold, #d5a837);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-primary, #000000);
  line-height: 1.4;
}

/* Pagination SEO-friendly */
.pagination-nav {
  margin: 2rem 0;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-numbers {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200, #e5e7eb);
  background: var(--white, #ffffff);
  color: var(--navy-primary, #000000);
  text-decoration: none;
  border-radius: var(--border-radius, 0.25rem);
  transition: var(--transition-base, 0.2s ease-in-out);
  font-weight: 500;
  min-width: 44px;
  text-align: center;
}

.page-numbers:hover {
  background: var(--logo-gold, #d5a837);
  border-color: var(--logo-gold, #d5a837);
  color: var(--navy-primary, #000000);
  text-decoration: none;
}

.page-numbers.current {
  background: var(--navy-primary, #000000);
  border-color: var(--navy-primary, #000000);
  color: var(--white, #ffffff);
}

.page-numbers.dots {
  border: none;
  background: none;
  cursor: default;
}

.page-numbers.dots:hover {
  background: none;
  border: none;
}

/* Formulaire de recherche SEO */
.search-form:focus-within {
  border-color: var(--logo-gold, #d5a837);
  box-shadow: 0 0 0 3px rgba(213, 168, 55, 0.1);
}

.search-field {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--navy-primary, #000000);
}

.search-field:focus {
  outline: none;
}

.search-field::placeholder {
  color: var(--gray-500, #6b7280);
}

.search-submit {
  padding: 0.75rem 1rem;
  background: var(--logo-gold, #d5a837);
  border: none;
  border-radius: 0 var(--border-radius-lg, 0.5rem) var(--border-radius-lg, 0.5rem) 0;
  color: var(--navy-primary, #000000);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-base, 0.2s ease-in-out);
}

.search-submit:hover {
  background: var(--logo-yellow, #f8d73f);
}

/* Archive et listing optimisés */
.archive-header,
.page-header {
  text-align: center;
  padding: 2rem 0;
  background: var(--gray-50, #f9fafb);
  border-bottom: 1px solid var(--gray-200, #e5e7eb);
}

.archive-title,
.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--navy-primary, #000000);
  margin-bottom: 1rem;
}

.archive-description {
  font-size: 1.125rem;
  color: var(--gray-600, #4b5563);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cartes d'articles optimisées */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.post-card {
  background: var(--white, #ffffff);
  border-radius: var(--border-radius-xl, 0.75rem);
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  overflow: hidden;
  transition: var(--transition-base, 0.2s ease-in-out);
  border: 1px solid var(--gray-200, #e5e7eb);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
  border-color: var(--logo-gold, #d5a837);
}

.post-thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-200, #e5e7eb);
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base, 0.2s ease-in-out);
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.05);
}

.post-content {
  padding: 1.5rem;
}

.post-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.post-title a {
  color: var(--navy-primary, #000000);
  text-decoration: none;
  transition: var(--transition-base, 0.2s ease-in-out);
}

.post-title a:hover {
  color: var(--logo-gold, #d5a837);
}

.post-excerpt {
  color: var(--gray-600, #4b5563);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--logo-gold, #d5a837);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base, 0.2s ease-in-out);
}

.read-more-link:hover {
  color: var(--navy-primary, #000000);
  text-decoration: none;
}

.link-arrow {
  transition: var(--transition-base, 0.2s ease-in-out);
}

.read-more-link:hover .link-arrow {
  transform: translateX(4px);
}

/* Responsive optimizations */
@media (max-width: 768px) {
  .breadcrumb-list {
    font-size: 0.75rem;
  }

  .nav-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pagination {
    gap: 0.25rem;
  }

  .page-numbers {
    padding: 0.5rem 0.75rem;
    min-width: 40px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .search-form {
    flex-direction: column;
  }

  .search-submit {
    border-radius: 0 0 var(--border-radius-lg, 0.5rem) var(--border-radius-lg, 0.5rem);
    width: 100%;
  }
}
/* Print styles pour SEO */
@media print {
  .breadcrumbs,
.post-navigation,
.pagination-nav,
.search-form {
    display: none !important;
  }

  .post-card,
.nav-link {
    box-shadow: none !important;
    border: 1px solid var(--gray-300, #d1d5db) !important;
  }

  a {
    color: var(--black, #000000) !important;
    text-decoration: underline !important;
  }
}

/*# sourceMappingURL=front-page.css.map */
