.elementor-30450 .elementor-element.elementor-element-84c8eb6{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-30450 .elementor-element.elementor-element-84c8eb6{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-cfd2c84 */:root {
  --kc-brand: #005C8A;
  --kc-accent: #0073a6;
  --kc-gold: #f4a261;
  --ink: #0f172a;
  --muted: #64748b;
  --light-bg: #f9fafb;
  --border: #e2e8f0;
  --radius: 12px;
}

/* ====== HEADER DE L'ARTICLE ====== */
.blog-header {
  background: linear-gradient(135deg, var(--kc-brand) 0%, var(--kc-accent) 100%);
  color: #fff;
  padding: 90px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(255,255,255,0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.blog-header .container {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.blog-category {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.blog-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.blog-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  opacity: 0.9;
  flex-wrap: wrap;
}

/* ====== ARTICLE ====== */
.blog-article {
  max-width: 850px;
  margin: -40px auto 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.article-content {
  padding: 50px;
}

/* Intro */
.intro-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid var(--kc-brand);
  background: #f3faff;
  border-radius: 6px;
}

/* ====== TITRES ====== */
.article-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 50px 0 20px;
  color: var(--ink);
  position: relative;
}
.article-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--kc-gold);
  margin-top: 8px;
  border-radius: 3px;
}
.article-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--kc-brand);
}
.article-content p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
}

/* ====== ENCADRÉS ====== */
.highlight-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 30px;
  border-radius: var(--radius);
  margin: 40px 0;
  border-left: 5px solid var(--kc-brand);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.highlight-box h3 {
  color: var(--kc-brand);
  margin-top: 0;
  margin-bottom: 12px;
}

/* ====== GALERIE ====== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin: 40px 0;
}
.photo-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.photo-item:hover {
  transform: translateY(-4px);
}
.photo-item img,
.photo-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-item:hover img,
.photo-item:hover video {
  transform: scale(1.05);
}
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  padding: 36px 16px 14px;
  font-size: 14px;
  font-weight: 500;
}

/* ====== CITATIONS ====== */
.quote-block {
  background: var(--light-bg);
  padding: 40px;
  border-radius: var(--radius);
  margin: 40px 0;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.quote-block::before {
  content: '"';
  font-size: 90px;
  color: var(--kc-brand);
  opacity: 0.12;
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: Georgia, serif;
}
.quote-text {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
}
.quote-author {
  margin-top: 16px;
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
}

/* ====== INFO-BOX ====== */
.info-box {
  background: #fff8ed;
  border-left: 5px solid var(--kc-gold);
  padding: 28px;
  border-radius: var(--radius);
  margin: 30px 0;
}
.info-box h4 {
  color: var(--kc-gold);
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}
.info-box ul {
  list-style: none;
  padding: 0;
}
.info-box li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--ink);
}
.info-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--kc-gold);
  font-weight: bold;
}

/* ====== FOOTER D'ARTICLE ====== */
.article-footer {
  background: var(--light-bg);
  padding: 40px 50px;
  border-top: 2px solid var(--border);
}
.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tag {
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--muted);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.tag:hover {
  background: var(--kc-brand);
  color: #fff;
  border-color: var(--kc-brand);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .article-content {
    padding: 30px 20px;
  }
  .blog-header {
    padding: 60px 20px 40px;
  }
}/* End custom CSS */