/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@0;1&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Styles de base */
html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  font-style: normal;
}
p {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.btn-terra{
    background-color: var(--bg-terraccotta);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
/* ====================================== */
/* Header & Navigation */
/* ====================================== */

.le-top-menu {
  background-color: #4A5568;
}

.le-top-menu .nav-link{
  color: var(--top-text-primary);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
}

.le-top-menu .le-top-bar-link{
  color: var(--top-text-primary);
}

.top-menu {
  background-color: var(--bg-terraccotta);
  padding: 0px 0;
  border-bottom: 0px solid rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--top-text-primary);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.theme-toggle:hover {
  transform: scale(1.1);
  color: var(--top-text-primary);
}

[data-theme="dark"] .top-menu {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-menu .le-menu{
  background-color: var(--bg-terraccotta);
  color: white;
  padding-bottom: 0.5%;
  padding-top: 0.5%;
}

.top-menu .le-menu .nav-link {
  color: var(--text-white);
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.top-menu .le-menu .nav-link:hover {
  color: var(--text-white);
}

.top-menu .le-menu .nav-link::first-letter{
  text-transform: capitalize;
}

.logo{
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.le-header {
  background-color: var(--bg-terraccotta);
  padding-bottom: 0%;
  padding-top: 1%;
}
.le-header .top-bar {
  background-color: transparent;
  padding: 0px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
  color: var(--text-primary);
}

.le-header .top-bar a{
  color: var(--text-white);
  text-decoration: none;
  font-size: 14px;
}

.le-header .top-bar i{
  color: var(--text-white);
  text-decoration: none;
  font-size: 18px;
}

[data-theme="dark"] .le-header .top-bar {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.le-header .logo{
  width: 100%;
  height: auto;
}

.le-header-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.le-header .nav {
  background-color: transparent;
  padding: 0px 0;
  transition: background-color 0.3s ease;
  margin-top: 1%;
  position: relative;
}
.le-header .nav .nav-link {
  color: var(--text-white);
  font-weight: normal;
  margin: 0 5px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 12px;
}

.le-header .nav .nav-link:hover {
  color: var(--accent-yellow);
}

.le-header .theme-toggle {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 14px;
  cursor: pointer;
  padding: 0px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.le-header .theme-toggle:hover {
  transform: scale(1.1);
  color: var(--accent-yellow);
}
/* ==========================================================================
   MEGA MENU : STRUCTURE & CORRECTIF DE SURVOL
   ========================================================================== */

/* 2. Le dropdown parent en position static */
.mega-dropdown {
  position: static !important;
}

/* 3. Le conteneur du Mega Menu */
.dropdown-menu.mega-menu {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  
  /* COULEURS : Fond sombre avec texte blanc */
  background-color: var(--bg-terraccotta);
  color: var(--text-white);
  
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  
  position: absolute !important;
  top: 100%;
  margin-top: 0 !important;
  z-index: 1000;
  
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: visible !important;
  
  transition: opacity 0.15s ease, visibility 0.15s ease;
  transition-delay: 0.1s;
}

/* 4. LE PONT INVISIBLE */
.dropdown-menu.mega-menu::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  top: -15px;
  height: 15px;
  background: transparent;
  z-index: 10;
}

.dropdown-menu.mega-menu .card {
  background-color: transparent;
  border: none;
}

/* 5. COMPORTEMENT AU SURVOL */
@media all and (min-width: 992px) {
  .hover-dropdown:hover > .dropdown-menu.mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  
  .hover-dropdown:not(:hover) > .dropdown-menu.mega-menu {
    transition-delay: 0.1s;
  }
}

/* ==========================================================================
   CONTENU DU MENU : STYLE & COULEURS
   ========================================================================== */

/* Titres de section en majuscules */
.mega-menu h6 {
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Bordure droite blanche */
.mega-menu .border-end {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Liens de sous-catégories : blanc par défaut */
.mega-menu .subcategory-link {
  color: var(--text-white);
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
  transition: all 0.2s ease-in-out;
  font-size: 12px;
  text-transform: uppercase;
}

.mega-menu .subcategory-link:hover {
  color: var(--accent-yellow);
  padding-left: 8px;
  transform: translateX(5px);
}

/* Bouton "Tout voir" */
.mega-menu .btn-view-all {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.mega-menu .btn-view-all:hover {
  background-color: var(--bg-yellow);
  border-color: var(--bg-yellow);
  color: var(--text-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 69, 0, 0.3);
}

/* Cartes d'articles */
.mega-menu .article-card {
  transition: transform 0.3s ease;
  background: transparent;
}

.mega-menu .article-card:hover {
  transform: translateY(-5px);
}

/* Titres d'articles : blanc par défaut, orange au survol */
.mega-menu .article-title {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.mega-menu .article-title:hover {
  color: var(--bg-yellow);
}

/* Date d'article */
.mega-menu .article-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* Image placeholder */
.mega-menu .image-placeholder {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
}

/* Effet zoom sur les images */
.hover-zoom {
  transition: transform 0.3s ease;
}

.article-card:hover .hover-zoom {
  transform: scale(1.05);
}

/* Message "Aucun article" */
.mega-menu .no-content-message {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* ==========================================================================
   COLONNES DYNAMIQUES (SOUS-CATÉGORIES)
   ========================================================================== */

.subcategory-dynamic-list {
  column-count: 1;
  column-gap: 20px;
}

@media (min-width: 992px) {
  .subcategory-dynamic-list {
    column-count: 2;
  }
}

.break-avoid {
  break-inside: avoid-column;
  page-break-inside: avoid;
}

/* ==========================================================================
   RESPONSIVE : MOBILE
   ========================================================================== */

@media (max-width: 991px) {
  /* Sur mobile, le mega-menu devient un dropdown classique */
  .dropdown-menu.mega-menu {
    position: relative !important;
    width: 100% !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    margin-top: 0.5rem !important;
  }
  
  /* Pas de pont invisible sur mobile */
  .dropdown-menu.mega-menu::before {
    display: none;
  }
  
  /* Colonnes en pleine largeur sur mobile */
  .mega-menu .col-lg-3,
  .mega-menu .col-lg-9 {
    width: 100%;
    border: none !important;
    margin-bottom: 1.5rem;
  }
  
  /* Articles en 1 colonne sur mobile */
  .mega-menu .row-cols-md-3 {
    row-gap: 1rem;
  }
  
  /* Réduction des paddings sur mobile */
  .dropdown-menu.mega-menu .container-fluid {
    padding: 1rem !important;
  }
}

/* Très petits écrans */
@media (max-width: 576px) {
  .mega-menu h6 {
    font-size: 0.7rem;
  }
  
  .mega-menu .subcategory-link {
    font-size: 0.85rem;
    text-transform: uppercase;
  }
  
  .mega-menu .article-title {
    font-size: 0.85rem;
  }
}
/* ====================================== */
/* Header & Navigation fin */
/* ====================================== */
/* ==========================================================================
   OFFCANVAS MOBILE AVANCÉ
   ========================================================================== */

.mobile-offcanvas {
  background-color: var(--bg-terraccotta) !important;
  color: var(--text-white);
  border-right: 1px solid rgba(255,255,255,0.1);
}

/* Accordéon Mobile : Reset du style Bootstrap par défaut */
.mobile-offcanvas .accordion-button {
  color: var(--text-white);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.mobile-offcanvas .accordion-button:after {
  filter: invert(1); /* Flèche blanche */
  transform: scale(0.8);
}

.mobile-offcanvas .accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.05); /* Fond très léger au clic */
  color: var(--accent-yellow);
  box-shadow: none;
}

/* Fond légèrement plus sombre pour le contenu déroulé */
.bg-black-opacity {
  background-color: rgba(0, 0, 0, 0.2);
}

/* --- CARTE ARTICLE MOBILE (Horizontal Layout) --- */
.mobile-article-card {
  transition: background-color 0.2s ease;
  background-color: rgba(255, 255, 255, 0.02);
}

.mobile-article-card:hover, 
.mobile-article-card:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal; /* Important pour le multiline clamp */
}

/* --- RÉSEAUX SOCIAUX & UTILITAIRES --- */
.mobile-socials i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.mobile-socials i:hover {
  color: var(--accent-yellow);
  transform: translateY(-3px);
}

/* Supprimer la flèche pour les liens simples qui n'ont pas d'accordéon */
.remove-arrow::after {
  display: none !important;
}

/* Sticky Top pour la barre de nav mobile */
.sticky-top {
  z-index: 1020;
}

/* Hero Carousel */
/* ====================================== */
/* Home offre section */
/* Conteneur principal */
.bg-btp-animated {
  position: relative;
  background-color: #4A5568;
  z-index: 1;
}

/* Couche d'animation en arrière-plan */
.bg-btp-animated::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* Motif SVG de grues et bâtiments */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Cpath fill='%23D56631' fill-opacity='0.1' d='M50 200 L50 120 L70 120 L70 200 M120 200 L120 50 L125 50 L125 200 M300 200 L300 100 L340 100 L340 200'/%3E%3Cpath fill='%23B86B47' fill-opacity='0.15' d='M0 200 L0 150 L30 150 L30 200 M180 200 L180 80 L220 80 L220 200 M370 200 L370 140 L400 140 L400 200'/%3E%3Ccircle fill='%23D56631' fill-opacity='0.05' cx='50' cy='50' r='20'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 600px 300px;
  animation: moveBTP 60s linear infinite;
  z-index: -1; /* Reste derrière le texte */
  opacity: 0.6;
}

@keyframes moveBTP {
  from { background-position: 0 bottom; }
  to { background-position: 600px bottom; }
}

/* Ajustement pour que le contenu reste lisible */
.bg-btp-animated .row {
  position: relative;
  z-index: 2;
}
.carousel-offres:not(.flickity-enabled) {
  display: flex;
  overflow-x: hidden;
  gap: 20px;
}

.carousel-cell {
  width: 200px; /* Largeur de tes cartes */
  height: 200px;
  margin-right: 20px;
  flex-shrink: 0; /* Empêche les cartes de rétrécir */
}

/* Style de ta section sombre */
.section-offres-bg {
  background-color: #34495e; /* Ajuste selon ton bleu/gris exact */
  min-height: 500px;
}

/* Style des cartes */
.card-offre {
  border-radius: 20px;
  border: none;
  height: 100%;
  transition: transform 0.3s ease;
}

.card-offre:hover {
  transform: translateY(-10px);
}

/* Couleurs aléatoires pour les cartes (à définir dans ton helper ou ici) */
.card-purple { background-color: #f3e5f5; }
.card-orange { background-color: #fff3e0; }
.card-green  { background-color: #e8f5e9; }
.card-blue   { background-color: #e3f2fd; }
/* ====================================== */
/* Hero Section */
.home-gauche{
  background-color: transparent;
}

.home-gauche .hero {
  background-color: transparent;
  height: auto;
        
}


.home-gauche .hero-content {
            background-color: transparent;
            height: inherit;
            padding-bottom: 0%;
            padding-left: 5%;
            padding-right: 5%;
            padding-top: 0%;
        }

.home-gauche .hero-content h1 {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            margin-top: 1rem;
            animation: fadeInUp 1s ease-out;
        }

.home-gauche .hero-content .subtitle {
            font-size: 14px;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            animation: fadeInUp 1s ease-out 0.2s both;
            line-height: 1.5;
        }

.home-gauche .hero-form{
            background: transparent;
            height: inherit;
            padding-bottom: 0%;
            padding-left: 5%;
            padding-right: 5%;
            padding-top: 0%;
        }

        /* Search Form */
.home-gauche .search-form {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-top: 1.5rem;
            animation: fadeInUp 1s ease-out 0.6s both;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

.home-gauche .form-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .tab-btn {
            padding: 0.75rem 1.5rem;
            border: none;
            background: transparent;
            color: var(--text-dark);
            font-weight: 500;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

      .home-gauche  .tab-btn.active {
            background: var(--bg-terraccotta);
            color: var(--text-blanc);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

      .home-gauche  .search-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr auto;
            gap: 1rem;
            align-items: end;
        }

       .home-gauche .form-group {
            position: relative;
        }

       .home-gauche label {
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            display: block;
        }

      .home-gauche  .form-control {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

      .home-gauche  .form-check{
                font-size: 12px;
                color: var(--text-dark);
            }

      .home-gauche  .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
            transform: translateY(-2px);
        }

      .home-gauche  .btn-search {
            background: var(--bg-terraccotta);
            border: none;
            border-radius: 12px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

      .home-gauche  .btn-search:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

      .home-gauche  .filters-btn {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 0.75rem 1rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

      .home-gauche  .filters-btn:hover {
            border-color: var(--bg-terraccotta);
            transform: translateY(-2px);
        }

.home-gauche .biens-section {
            background: transparent;
        }

        .bien-card {
            background: transparent;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
        }

        .bien-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .bien-image {
            height: 150px;
            width: 200px;
        }

        .bien-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(37, 99, 235, 0.9);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .bien-content {
            padding: 0;
        }

        .bien-price {
            font-size: 14px;
            color: var(--primary-primary);
            margin-bottom: 0.5rem;
        }

        .bien-titre {
            font-size: 16px;
            font-family: "Roboto", sans-serif;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            user-select: none;
        }

         .bien-titre a{
            text-decoration: none;
        }

        .bien-ville {
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .bien-features {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 12px;
            color: var(--text-primary);
        }

        .bien-actions {
            display: flex;
            gap: 0.5rem;
        }

        .btn-action {
            flex: 1;
            padding: 0.5rem;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            background: white;
            color: var(--text-dark);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .btn-action:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

.home-milieu{
  background-color: transparent;
}
.home-milieu .hero-carousel {
  height: 300px;
  position: relative;
}

.home-milieu .carousel-item {
  height: inherit;
  position: relative;
  height: 300px;
}

.home-milieu .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-milieu .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,rgb(from var(--bg-terraccotta) r g b / 1),transparent);
  display: flex;
  align-items: left;
  justify-content: left;
  transition: background-color 0.3s ease;
}

.home-milieu .carousel-content {
  max-width: 800px;
  padding: 20px 30px;
  bottom: 0;
  position: absolute;
}

.home-milieu .badge-alune {
  background-color: var(--bg-beton);
  color: var(--text-blanc);
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.home-milieu .carousel-content h1 {
  background-color: transparent;
  padding: 0px 0px;
  display: inline-block;
  padding-right: 0%;
  color: var(--text-blanc);
  text-shadow: black 0px 0px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

/*.home-milieu .carousel-content h1 span {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  padding: 8px 12px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }*/

.home-milieu .carousel-content h1::first-letter {
  text-transform: uppercase;
}

.home-milieu .carousel-content h1 a{
  color: var(--text-blanc);
  text-decoration: none;
}

.home-milieu .carousel-content p{
  color: var(--text-blanc);
  text-decoration: none;
}

.home-milieu .carousel-content p a{
  color: var(--text-blanc);
  text-decoration: none;
}

.home-milieu .card{
  background-color: transparent;
  border: none;
  border-radius: 0%;
}

.home-milieu .card .card-title{
  color: var(--text-primary);
  font-size: 16px;
}

.home-milieu .card .card-text{
  color: var(--text-primary);
  font-size:12px
}

.home-milieu .article-image {
            height: 100px;
            width: 150px;
        }

.home-milieu .article-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(37, 99, 235, 0.9);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
        }

 .home-milieu .article-content {
            padding: 0;
        }

 .home-milieu .article-price {
            font-size: 14px;
            color: var(--primary-primary);
            margin-bottom: 0.5rem;
        }

.home-milieu .article-titre {
            font-size: 14px;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            user-select: none;
        }

.home-milieu .article-ville {
            color: var(--text-primary);
            margin-bottom: 12px;
        }

.home-milieu .grand-article-image {
            height: 250px;
            width: 350px;
        }
 .home-milieu .grand-article-content {
            padding: 0;
        }

 .home-milieu .grand-article-price {
            font-size: 16px;
            color: var(--primary-primary);
            margin-bottom: 0.5rem;
        }

.home-milieu .grand-article-titre {
            font-size: 20px;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            user-select: none;
            line-height: 1.5;
        }

.home-droite{
  background-color: transparent;
  color: var(--text-white);
  padding-left: 1.5%;
  padding-right: 1.5%;
  padding-left: 1.5%;
  padding-right: 1.5%;
}

.home-droite .col-offre{
  background-color: var(--bg-primary);
  margin-bottom: 5%;
  color: var(--text-primary) !important;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 10%;
  padding-top: 10%;
}

.home-droite .temps-restant{
  color: var(--text-terraccotta);
  font-size: 12px;
}



/* ====================================== */
/* Section Titles */
/* ====================================== */

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  padding-top: 60px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.section-title::first-letter {
  text-transform: uppercase;
}


/* ====================================== */
/* Article Cards */
/* ====================================== */

.article-card {
  background-color: var(--bg-secondary);
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

[data-theme="dark"] .article-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.article-card img {
  width: 100%;
  object-fit: cover;
}

.article-card-body {
  padding: 20px;
}

.article-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.article-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.article-meta a {
  color: var(--accent-pink);
  text-decoration: none;
}

/* ====================================== */
/* Flickity Carousel */
/* ====================================== */

.flickity-carousel {
  margin-bottom: 30px;
}

.carousel-cell {
  width: 300px;
  margin-right: 20px;
}

.flickity-button {
  background-color: var(--accent-pink);
}

.flickity-button:hover {
  background-color: #a02346;
}

.flickity-button svg {
  fill: white;
}

.flickity-page-dots .dot {
  background-color: var(--accent-pink);
}

/* ====================================== */
/* Featured Article Large */
/* ====================================== */

.featured-large {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 8px;
}

.featured-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.featured-overlay h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 10px;
}

.featured-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

/* ====================================== */
/* Stories Sidebar */
/* ====================================== */

.story-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: var(--bg-secondary);
  margin-bottom: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.story-item:hover {
  background-color: var(--accent-pink);
  transform: translateX(5px);
}

.story-item:hover .story-text {
  color: var(--text-blanc);
}

.story-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-pink), var(--accent-yellow));
  padding: 3px;
  margin-right: 15px;
  flex-shrink: 0;
}

.story-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.story-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text {
  flex: 1;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

/* ====================================== */
/* Interview Section */
/* ====================================== */

.interview-card {
  background-color: var(--bg-secondary);
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.interview-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.interview-content {
  padding: 30px;
}

.interview-content h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

/* ====================================== */
/* Bons Plans Section */
/* ====================================== */

.bon-plan-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
}

.bon-plan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bon-plan-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.bon-plan-overlay h5 {
  color: white;
  font-size: 1.2rem;
  margin: 0;
}

/* ====================================== */
/* Footer */
/* ====================================== */

footer {
  background-color: var(--bg-beton);
  color: var(--text-blanc);
  padding: 60px 0 20px;
  margin-top: 80px;
}

footer h5 {
  color: var(--text-blanc);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

footer a {
  color: var(--text-blanc);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-pink);
}

.social-icons a {
  color: var(--text-blanc);
  font-size: 1.2rem;
  margin-right: 15px;
  display: inline-block;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: var(--accent-pink);
  transform: scale(1.2);
}

/* ====================================== */
/* Responsive */
/* ====================================== */

@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-carousel,
  .carousel-item {
    height: 350px;
  }
  
  .nav-link {
    margin: 5px 0;
  }
}

/* ====================================== */
/* Accessibilité */
/* ====================================== */

*:focus-visible {
  outline: 2px solid var(--accent-pink);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent-pink);
  outline-offset: 4px;
}

/* Page article show */
/* ====================================== */
/* Barre de progression de lecture */
#reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-yellow));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Article detail styles */
.article-detail {
  padding: 60px 0;
}

.article-header {
  margin-bottom: 40px;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.article-meta {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.article-featured-image {
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.article-share .btn {
  padding: 10px 20px;
}

/* Articles similaires */
.article-card {
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .article-title {
    font-size: 1.8rem;
  }
  
  .article-content {
    font-size: 1rem;
  }
}
/* Page article show fin*/
/* ====================================== */

/* ==========================================================================
   ESPACE RÉDACTEUR
   ========================================================================== */

/* ── Layout général ── */
.redacteur-layout {
  font-family: 'Inter', 'Roboto', sans-serif;
}

/* ── Sidebar ── */
.redacteur-sidebar {
  width: 260px;
  min-width: 260px;
  background-color: var(--bg-beton);
  color: var(--text-white);
  min-height: 100vh;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
}

.sidebar-brand .sidebar-logo-badge {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  background-color: var(--bg-terraccotta);
  padding: 6px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.sidebar-brand .sidebar-site-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: white;
  font-size: 1rem;
}

.sidebar-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
}

.sidebar-nav .sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 3px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.sidebar-nav .sidebar-link i {
  font-size: 1rem;
  flex-shrink: 0;
}

.sidebar-nav .sidebar-link:hover {
  background-color: rgba(255,255,255,0.09);
  color: white;
}

.sidebar-nav .sidebar-link.active {
  background-color: var(--bg-terraccotta);
  color: white;
  font-weight: 600;
}

.sidebar-nav .sidebar-link-new {
  border: 1px dashed rgba(255,255,255,0.2);
}

.sidebar-nav .sidebar-link-new:hover,
.sidebar-nav .sidebar-link-new.active {
  border-color: transparent;
}

.sidebar-nav .sidebar-link-external {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.sidebar-divider {
  height: 1px;
  background-color: rgba(255,255,255,0.1);
  border: none;
}

.sidebar-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.sidebar-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.sidebar-fullname {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.sidebar-email {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  max-width: 180px;
}

.sidebar-logout {
  background-color: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
  border-radius: 7px;
  transition: all 0.2s ease;
}

.sidebar-logout:hover {
  background-color: var(--bg-terraccotta);
  color: white;
  border-color: var(--bg-terraccotta);
}

/* ── Zone principale ── */
.redacteur-main {
  background-color: var(--bg-primary);
  min-width: 0; /* évite le débordement flex */
}

/* ── Topbar ── */
.redacteur-topbar {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--bg-secondary);
  min-height: 60px;
}

.topbar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sidebar-toggle-btn,
.theme-toggle-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  border-radius: 7px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.sidebar-toggle-btn:hover,
.theme-toggle-btn:hover {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

/* ── Contenu ── */
.redacteur-content {
  background-color: var(--bg-primary);
}

/* ── Titres de page ── */
.redacteur-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* ── Cartes de statistiques ── */
.stat-card {
  background-color: var(--bg-secondary);
  border-radius: 12px;
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

[data-theme="dark"] .stat-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.875rem;
}

.icon-terra   { background-color: rgba(184,107,71,0.15);  color: var(--bg-terraccotta); }
.icon-beton   { background-color: rgba(74,85,104,0.15);   color: var(--bg-beton); }
.icon-success { background-color: rgba(25,135,84,0.15);   color: #198754; }
.icon-gold    { background-color: rgba(184,148,71,0.15);  color: #b8940f; }

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

/* ── Panneaux ── */
.redacteur-panel {
  background-color: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
}

.redacteur-panel-header {
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

[data-theme="dark"] .redacteur-panel-header {
  border-bottom-color: rgba(255,255,255,0.06);
}

.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* ── Table redacteur ── */
.redacteur-table thead {
  background-color: var(--bg-beton);
}

.redacteur-table thead th {
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border: none;
}

.redacteur-table tbody td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
  border-color: rgba(0,0,0,0.05);
  color: var(--text-primary);
  background-color: transparent;
}

[data-theme="dark"] .redacteur-table tbody td {
  border-color: rgba(255,255,255,0.05);
}

.article-row-title {
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* ── Boutons icônes ── */
.btn-icon {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 0.85rem;
  transition: all 0.18s ease;
}

[data-theme="dark"] .btn-icon {
  border-color: rgba(255,255,255,0.1);
}

.btn-icon:hover {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

.btn-icon-primary:hover {
  background-color: var(--bg-terraccotta);
  border-color: var(--bg-terraccotta);
  color: white;
}

.btn-icon-danger:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: white;
}

/* ── Badge terra ── */
.badge-terra {
  background-color: var(--bg-terraccotta);
  color: white;
  font-size: 0.73rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
}

/* ── Icône vide ── */
.empty-icon {
  font-size: 2.5rem;
  color: var(--text-secondary);
  opacity: 0.5;
}

/* ── Liens ── */
.link-terra {
  color: var(--bg-terraccotta) !important;
}
.link-terra:hover {
  color: #a05c3a !important;
}
.link-muted {
  color: var(--text-secondary) !important;
}
.link-muted:hover {
  color: var(--text-primary) !important;
}

/* ── Page de connexion redacteur ── */
.redacteur-login-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.redacteur-login-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  overflow: hidden;
  background-color: var(--bg-primary);
}

[data-theme="dark"] .redacteur-login-card {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.redacteur-login-card .login-header {
  background-color: var(--bg-terraccotta);
  padding: 2rem;
  text-align: center;
}

.login-brand-badge {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: white;
  background-color: rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: 6px;
  display: inline-block;
}

.redacteur-login-card .login-header h2 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.redacteur-login-card .login-header p {
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  margin: 0;
}

.redacteur-login-card .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-secondary);
}

.redacteur-login-card .form-control {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(0,0,0,0.09);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

[data-theme="dark"] .redacteur-login-card .form-control {
  border-color: rgba(255,255,255,0.1);
}

.redacteur-login-card .form-control:focus {
  border-color: var(--bg-terraccotta);
  box-shadow: 0 0 0 3px rgba(184,107,71,0.2);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

.btn-login {
  background-color: var(--bg-terraccotta) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-login:hover {
  background-color: #a05c3a !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184,107,71,0.35);
}

.input-password-wrapper .btn-toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
}

.input-password-wrapper {
  position: relative;
}

.input-password-wrapper .form-control {
  padding-right: 2.5rem;
}

/* ── Formulaire article ── */
.article-form-panel {
  background-color: var(--bg-secondary);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.form-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

[data-theme="dark"] .form-panel-title {
  border-bottom-color: rgba(255,255,255,0.07);
}

.article-form-panel .form-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.article-form-panel .form-control,
.article-form-panel .form-select {
  background-color: var(--bg-primary);
  border: 1px solid rgba(0,0,0,0.09);
  color: var(--text-primary);
  border-radius: 8px;
}

[data-theme="dark"] .article-form-panel .form-control,
[data-theme="dark"] .article-form-panel .form-select {
  border-color: rgba(255,255,255,0.1);
}

.article-form-panel .form-control:focus,
.article-form-panel .form-select:focus {
  border-color: var(--bg-terraccotta);
  box-shadow: 0 0 0 3px rgba(184,107,71,0.15);
}

.titre-input {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem !important;
  font-weight: 600;
}

.btn-submit {
  background-color: var(--bg-terraccotta) !important;
  color: white !important;
  border: none !important;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-submit:hover {
  background-color: #a05c3a !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184,107,71,0.3);
}

/* ── Responsive sidebar ── */
@media (max-width: 991.98px) {
  .redacteur-sidebar:not(.offcanvas) {
    display: none !important;
  }
}
/* ── Signature co-auteur ── */
.sig-hidden {
  display: none;
}

/* ── Auteur sur la page article show ── */
.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-terraccotta);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}
/* ── Fin espace rédacteur ── */

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

/* ── Tablette (< 992px) ── */
@media (max-width: 991px) {
  .section-title { font-size: 2rem; padding-top: 40px; }

  /* Article show */
  .article-title { font-size: 2rem; }
  .article-detail { padding: 40px 0; }
}

/* ── Mobile (< 769px) ── */
@media (max-width: 768px) {
  /* Sections generales */
  .section-title { font-size: 1.6rem; padding-top: 30px; margin-bottom: 24px; }

  /* Article show */
  .article-title { font-size: 1.6rem; }
  .article-content { font-size: 1rem; }
  .article-detail { padding: 30px 0; }
  .featured-overlay h3 { font-size: 1.4rem; }

  /* Navigation */
  .le-header .nav { margin-top: 0; }
}

/* ── Mobile (< 576px) ── */
@media (max-width: 575px) {
  /* Sections */
  .section-title { font-size: 1.35rem; padding-top: 24px; margin-bottom: 18px; }

  /* Article cards globaux */
  .article-card { margin-bottom: 16px; }
  .article-card-title { font-size: 1.1rem; }
  .article-card-body { padding: 14px; }

  /* Article show */
  .article-title { font-size: 1.4rem; }
  .article-featured-image { max-height: 280px; }
  .article-header { margin-bottom: 24px; }

  /* Featured large */
  .featured-large { height: 260px; }
  .featured-overlay { padding: 20px; }
  .featured-overlay h3 { font-size: 1.15rem; }
  .featured-overlay p { font-size: .88rem; }

  /* Footer */
  footer { padding: 40px 0 16px; margin-top: 40px; }
  footer h5 { margin-bottom: 12px; font-size: .92rem; }

  /* Interviews */
  .interview-card img { height: 250px; }
  .interview-content { padding: 20px; }
  .interview-content h4 { font-size: 1.3rem; }

  /* Stories */
  .story-item { padding: 12px; }
  .story-avatar { width: 48px; height: 48px; }
}