/* Styles spécifiques pour la page Faire bleu */
.fb-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  max-width: 820px;
  margin: 2.5rem auto 4rem;
  position: relative;
  text-align: left;
}

.fb-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background: linear-gradient(180deg, #3b82f6 0%, #10b981 100%);
  border-radius: 999px;
}

.fb-timeline-item {
  position: relative;
  padding-left: 55px;
}

.fb-timeline-dot {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #3b82f6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 2;
  transition: all 0.25s ease;
}

.fb-timeline-item:hover .fb-timeline-dot {
  border-color: #f97316;
  background: #f97316;
  transform: scale(1.15);
}

.fb-timeline-content {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(203, 213, 225, 0.7);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(8px);
}

.fb-timeline-date {
  font-weight: 800;
  font-size: 1.25rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.fb-timeline-text {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.65;
}

.fb-site-figure {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.fb-site-figure-img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(203, 213, 225, 0.85);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.fb-site-figure figcaption {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #64748b;
  font-style: italic;
}

.fb-section-today {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.6) 0%, rgba(240, 253, 250, 0.6) 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  border: 1px solid rgba(191, 219, 254, 0.4);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.fb-today-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.fb-today-content {
  text-align: left;
}

.fb-today-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1 / 1;
}

.fb-today-image-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.fb-today-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Garde le cadrage grille : content-illustration ajoute zoom au clic (pages.js) */
.fb-today-image-wrap .content-illustration {
  max-width: none;
  margin: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.fb-today-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: #0f172a;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.fb-today-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 4px;
  background: #3b82f6;
  border-radius: 999px;
}

.fb-today-content p {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.fb-today-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.85rem 1.95rem;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
  transition: all 0.25s ease;
}

.fb-today-cta:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 8px 26px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

@media (max-width: 980px) {
  .fb-today-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .fb-today-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
}
