/* Container principal */
.personal-story {
  max-width: 900px;
  margin: 50px auto;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Image bannière */
.story-hero {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

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

/* Texte */
.story-body {
  padding: 40px;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.story-header h1 {
  margin: 0;
  font-size: 1.8rem;
}

.icon {
  font-size: 2rem;
}

.story-text p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

/* Style du bouton Galerie */
.gallery-link-container {
  margin-top: 30px;
  text-align: center;
}

.btn-gallery {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0055a4; /* Bleu élégant */
  color: white !important;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,85,164,0.3);
}

.btn-gallery:hover {
  background-color: #003d7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,85,164,0.4);
}

/* Section vidéo */
.story-video {
  padding: 0 40px 40px;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Section Articles Connexes */
.section-divider {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  margin: 20px 40px;
}

.related-articles {
  padding: 0 40px 40px;
}

.related-articles h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

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

.article-card {
  text-decoration: none;
  color: inherit;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-color: #0055a4;
}

.article-info {
  padding: 20px;
}

.article-info h4 {
  margin-top: 0;
  color: #0055a4;
  font-size: 1.1rem;
}

.article-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.read-more {
  font-size: 0.85rem;
  font-weight: bold;
  color: #0055a4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
