/* ===========================================
   🌸 Magic Read Kids Pro v6.1 – Élina
   Optimisé pour Ghost 6 – version sans recherche
   =========================================== */
:root {
  --purple: #7B68EE;
  --pink: #FF69B4;
  --white: #ffffff;
  --gray: #4A4A4A;
  --light: #faf9ff;
  --radius: 20px;
  --shadow: 0 8px 30px rgba(123,104,238,0.15);
  --transition: all 0.3s ease;
  --content-width: 780px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #f9f8ff, #fff0f9);
  color: var(--gray);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--purple);
  transition: var(--transition);
}
a:hover { color: var(--pink); }

/* ===========================
   HEADER
=========================== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-img {
  height: 50px;
  border-radius: 12px;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}
.nav-list a {
  color: var(--gray);
  font-weight: 600;
}
.nav-list a:hover {
  color: var(--purple);
}

/* Header buttons */
.btn-primary {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  transition: var(--transition);
  margin-left: 0.5rem;
}
.btn-icon:hover { color: var(--purple); }

/* ===========================
   HERO SECTION
=========================== */
.hero {
  text-align: center;
  padding: 5rem 1rem 4rem;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
}
.hero-content {
  max-width: 800px;
  margin: auto;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  line-height: 1.6;
  font-size: 1.1rem;
  opacity: 0.9;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* ===========================
   SLIDER SECTION
=========================== */
.slider-section {
  padding: 3rem 1rem;
  text-align: center;
}
.slider-container {
  overflow: hidden;
  margin-top: 1rem;
}
.slider-track {
  display: flex;
  gap: 2rem;
  animation: scroll 60s linear infinite;
  width: max-content;
}
.slide {
  background: white;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  font-weight: 600;
  white-space: nowrap;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   POSTS GRID
=========================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1200px;
}
.post-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(123,104,238,0.2);
}
.post-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-card-content {
  padding: 1.5rem;
}
.post-card-title {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.read-more {
  font-weight: 600;
  display: inline-block;
  margin-top: 0.6rem;
}

/* ===========================
   AFFILIATE BOX
=========================== */
.affiliate-box {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin: 3rem auto;
  max-width: var(--content-width);
}
.affiliate-box h3 {
  margin-bottom: 1rem;
  color: var(--purple);
}
.affiliate-box a {
  color: var(--purple);
  font-weight: 600;
}
.affiliate-box a:hover { color: var(--pink); }

/* ===========================
   NEWSLETTER
=========================== */
.newsletter-home {
  background: var(--light);
  padding: 4rem 1rem;
  text-align: center;
}
.newsletter-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: auto;
  padding: 2rem;
}
.newsletter-card h2 {
  color: var(--purple);
  margin-bottom: 1rem;
}
.newsletter-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.newsletter-card input {
  padding: 0.8rem 1.2rem;
  width: 70%;
  max-width: 400px;
  border-radius: 50px;
  border: 2px solid var(--purple);
}
.newsletter-card button {
  border-radius: 50px;
  background: var(--purple);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-card button:hover { background: var(--pink); }

/* Messages de succès et d'erreur cachés par défaut */
.message-success,
.message-error {
  display: none;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  font-weight: 600;
}

/* Affichage quand activé par Ghost */
.message-success[data-members-success].success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
}

.message-error[data-members-error].error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  padding: 4rem 1rem 2rem;
  margin-top: 6rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.footer-section h4 { margin-bottom: 1rem; }
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.85;
}
/* ============================
   🌙 FOOTER LÉGAL – Harmonisé Magic Read Kids (violet dégradé)
============================ */

.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.6rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
  font-weight: 500;
}

.legal-links a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.legal-links .separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9em;
}

/* === Bloc Amazon disclosure === */
.amazon-disclosure {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem 1.6rem;
  border-radius: 14px;
  margin: 0 auto 1.5rem;
  max-width: 760px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9em;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
}

.amazon-disclosure strong {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* === Adaptation mobile === */
@media (max-width: 768px) {
  .legal-links {
    flex-direction: column;
    gap: 10px;
  }

  .legal-links .separator {
    display: none;
  }

  .legal-links a {
    width: 100%;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.15);
  }

  .amazon-disclosure {
    padding: 1rem;
    font-size: 0.85em;
  }
}

/* ===========================
   BACK TO TOP
=========================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   KOENIG EDITOR FIX
=========================== */
.kg-width-wide {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
}
.kg-width-full {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.kg-width-full img,
.kg-width-wide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

/* Menu mobile caché sur desktop */
@media (min-width: 769px) {
  .mobile-menu-toggle,
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* ===========================
   MENU MOBILE - NOUVEAU
=========================== */

/* Bouton Hamburger - Caché sur Desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
  transition: var(--transition);
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animation du hamburger quand le menu est ouvert */
.mobile-menu-overlay.active ~ header .mobile-menu-toggle .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-overlay.active ~ header .mobile-menu-toggle .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-overlay.active ~ header .mobile-menu-toggle .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Overlay du menu mobile */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menu mobile lui-même */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(135deg, #faf9ff 0%, #fff0f9 100%);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 9999;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

/* Header du menu mobile */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-logo {
  height: 40px;
  border-radius: 8px;
}

.mobile-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--purple);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 50%;
}

.mobile-menu-close:hover {
  background: rgba(123, 104, 238, 0.1);
  transform: rotate(90deg);
}

/* Navigation mobile */
.mobile-nav {
  padding: 2rem 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(123, 104, 238, 0.1);
}

.mobile-nav-list a {
  display: block;
  padding: 1.2rem 1.5rem;
  color: var(--gray);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

.mobile-nav-list a:hover {
  background: rgba(123, 104, 238, 0.05);
  color: var(--purple);
  padding-left: 2rem;
}

.mobile-nav-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav-list a:hover::before {
  transform: scaleY(1);
}

/* Bouton S'inscrire dans le menu mobile */
.mobile-cta {
  margin: 1.5rem;
  padding: 1rem 2rem !important;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--purple), var(--pink)) !important;
  color: white !important;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 104, 238, 0.4);
  padding-left: 2rem !important;
}

@media (max-width: 768px) {
  /* Masquer la navigation desktop et le bouton S'inscrire desktop */
  .desktop-nav,
  .desktop-btn {
    display: none !important;
  }
  
  /* Afficher le bouton hamburger */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Ajustements du header */
  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 1rem;
    gap: 1rem;
  }
  
  .site-logo img {
    height: 42px;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* Reste du responsive existant */
  .btn-primary {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
  }
  
  /* Hero section mobile */
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  /* Posts grid mobile */
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  /* Footer mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
/* === HEADER PREMIUM (Desktop uniquement) === */
@media (min-width: 769px) {
  .site-header {
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
  }

  .site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
  }

  .nav-list a {
    position: relative;
    font-weight: 600;
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    transition: width 0.3s ease-in-out;
  }

  .nav-list a:hover::after {
    width: 100%;
  }
}

/* ===========================
   ARTICLE COMPLET - HARMONISATION
=========================== */

/* Container principal de l'article */
.post-full {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* En-tête de l'article */
.post-full-header {
  max-width: var(--content-width);
  margin: 0 auto 2rem;
  text-align: center;
}

.post-full-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.post-full-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--purple);
  margin: 0;
}

.author-bio {
  font-size: 0.9rem;
  color: #666;
  margin: 0.2rem 0 0 0;
}

.meta-info {
  font-size: 0.9rem;
  color: #888;
}

/* IMAGE PRINCIPALE - HARMONISÉE AVEC LE CONTENU */
.post-full-image {
  max-width: var(--content-width);
  margin: 2rem auto;
  padding: 0;
}

.post-full-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.post-full-image figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.8rem;
  font-style: italic;
}

/* Contenu de l'article */
.post-full-content {
  max-width: var(--content-width);
  margin: 0 auto;
}

.post-content {
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--gray);
}

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

.post-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--purple);
}

.post-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--gray);
}

/* === FIX Ghost Image Sizing in Posts === */
/* Container pour les images Ghost dans le contenu */
.kg-image-card {
  max-width: var(--content-width);
  margin: 2rem auto;
}

/* Images normales dans les articles */
.post-content img,
.kg-image-card img {
  display: block;
  max-width: var(--content-width);
  width: 100%;
  height: auto;
  margin: 2rem auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(123,104,238,0.1);
}

/* Centrer les légendes */
.kg-image-card figcaption {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.8rem;
}

/* Fix pour images "wide" (un peu plus larges que le texte) */
.kg-width-wide {
  max-width: 900px;
  margin: 2rem auto;
}

.kg-width-wide img {
  max-width: 900px;
  width: 100%;
  border-radius: 18px;
}

/* Images full-width (larges mais contrôlées) */
.kg-width-full {
  max-width: 1200px;
  margin: 2rem auto;
  width: 100%;
}

.kg-width-full img {
  max-width: 1200px;
  width: 100%;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
}

/* Navigation entre articles */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 3rem auto;
  max-width: var(--content-width);
  padding-top: 2rem;
  border-top: 2px solid var(--light);
}

.post-nav {
  flex: 1;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--gray);
}

.post-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(123,104,238,0.2);
}

.post-nav strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: var(--purple);
}

/* Responsive pour les articles */
@media (max-width: 768px) {
  .post-full {
    padding: 1rem;
  }

  .post-full-title {
    font-size: 1.6rem;
  }

  .post-excerpt {
    font-size: 1rem;
  }

  .post-full-image,
  .post-content img,
  .kg-image-card img,
  .kg-width-wide img,
  .kg-width-full img {
    max-width: 100%;
    border-radius: 12px;
  }

  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .author-info {
    flex-direction: column;
    text-align: center;
  }
}
/* ==========================================
   🌸 MAGIC READ KIDS – FIX ARTICLE LAYOUT
   Élina | Version douce & fluide
   ========================================== */

/* === Contenu des articles === */
.post-content {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #3b3b3b;
  word-break: break-word;
}

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

.post-content h2, .post-content h3 {
  color: var(--purple);
  margin: 2rem 0 1rem;
  font-weight: 700;
}

.post-content a {
  color: var(--purple);
  text-decoration: underline;
  font-weight: 500;
}
.post-content a:hover {
  color: var(--pink);
}

/* === Images principales & dans le contenu === */
.post-full-image img,
.post-content img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(123, 104, 238, 0.1);
  margin: 2rem 0;
  object-fit: cover;
}

/* === Figures et légendes === */
.post-content figure {
  margin: 2rem auto;
  text-align: center;
}
.post-content figcaption {
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.6rem;
}

/* === Blocs de citation === */
.post-content blockquote {
  border-left: 4px solid var(--purple);
  background: rgba(123, 104, 238, 0.05);
  padding: 1rem 1.5rem;
  font-style: italic;
  margin: 2rem 0;
  border-radius: 12px;
  color: #555;
}

/* === Listes === */
.post-content ul,
.post-content ol {
  margin: 1.5rem 0 1.5rem 2rem;
  padding-left: 1rem;
}
.post-content li {
  margin-bottom: 0.6rem;
}

/* === Koenig Editor Blocks (Ghost) === */
.kg-width-wide {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
}
.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.kg-width-full img,
.kg-width-wide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* === Blocs "Bookmark" (lien intégré Ghost) === */
.kg-bookmark-card {
  border: 1px solid rgba(123,104,238,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.kg-bookmark-card:hover {
  transform: translateY(-3px);
}
.kg-bookmark-title {
  color: var(--purple);
  font-weight: 600;
}
.kg-bookmark-description {
  color: #666;
}
.kg-bookmark-metadata {
  font-size: 0.9rem;
  color: #999;
}

/* === Code inline & blocs === */
.post-content code {
  background: rgba(123,104,238,0.08);
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.95em;
}

/* === Responsive mobile === */
@media (max-width: 768px) {
  .post-content {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .post-content img {
    border-radius: 10px;
  }
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 1.8rem;
  padding-top: 1.2rem;
}
