:root {
  --morado: #7e66a3;
  --verde: #65b36a;
  --osc: #222;
  --claro: #f7f7fb;
}
html,
body {
  margin: 0;
  font-family: "Barlow", Helvetica, Arial, Lucida, sans-serif;
  background: #7c90bb;
  background: radial-gradient(
    circle,
    rgba(124, 144, 187, 1) 0%,
    rgba(90, 106, 147, 1) 100%
  );
  color: #1b1b1b;
  overflow-x: hidden;
}
.separador {
  height: 20px;
  width: 100%;
  margin-bottom: -5px;
}
h2 {
  color: #fff;
  margin: 30px !important;
  text-align: center;
  font-size: 2.3rem;
}
/* Barra superior */
.topbar{
  position: relative;              
  background: #fcd054;
  border-bottom: 4px solid #2f8f41;
  z-index: 50;
}


.topbar.is-fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.logo {
    width: 120px;
    padding-top: 10px;
}
.nav {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
}
.nav a {
  display: inline-block;
  padding: 0.75rem 1rem;
  background: #e7f6e95e;
  border: 1px solid #2f8f41;
  border-top: none;
  border-bottom: none;
  text-decoration: none;
  color: #133f20;
  font-weight: 500;
  align-content: center;
}
.nav a:focus-visible {
  outline: 3px solid #133f20;
  outline-offset: 2px;
}
.hero {
  max-width: 1100px;
  margin: 1.5rem auto;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.side {
  background: #cab8de1a;
  border-left: 8px solid var(--verde);
  padding: 1rem;
  border-radius: 0.5rem;
}
.side .brand {
  font-weight: 800;
  color: #2f8f41;
}
.content {
  color: #f0f0f0;
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 2rem 5rem;
}

/* Mapa */
#cartografia {
  position: relative;
  background: #a48db9;
  padding-bottom: 50px;
  h2 {
    color: #000;
  }
}

.map-wrap {
  position: relative;
  margin: 1rem auto;
  overflow: hidden;
}
.map-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.cartografia {
  max-width: 1100px;
  margin: 0 auto;
}
.cartografia:hover .hotspot {
    display: block;
}
#cartografia::before {
  content: "";
  position: absolute;
  left: 1%;
  top: 120px;
  width: 220px;
  height: 70%;
  background: url("../img/bg-left-birds.svg") no-repeat center / contain;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65; 
}

.hotspot{
  display: none;
  position:absolute;
  left:0; top:0;
  transform:translate(-50%, -50%); 
  width:0; height:0;              
  border:0; background:transparent;
  z-index: 2;                      
  cursor:pointer;
}
.hotspot.small-dot .hotspot-dot {
  width: 20px;
  height: 20px;
  border: 2px solid var(--morado);
}
.fauna {
    width: 20px;
    height: 20px;
    border: 2px solid;
}
/* El círculo se posiciona sobre el ancla */
.hotspot-dot{
  position:absolute;
  left:0; top:0;
  transform:translate(-50%,-50%);
  width:34px; height:34px; border-radius:999px;
  display:grid; place-items:center;
  background:#fcd055e3;                     /* tu amarillo */
  border:3px solid var(--morado);
  color:#7e66a3; font-weight:800; font-size:1rem;
}


.hotspot:hover .bubble {
    display: block;
}
/* El globo no afecta la posición del ancla; va “pegado” a la derecha del punto */
.bubble{
  display: none;
  position:absolute;
  left:26px;               /* distancia desde el centro del punto hacia la derecha */
  top:-22px;               /* súbelo/bájalo para centrar verticalmente */
  background:#6f4aa7;
  color:#fff;
  border-radius:12px;
  padding:.45rem .8rem;
  box-shadow:0 8px 18px rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.25);
  max-width:220px;
  white-space:nowrap;
}
.bubble::before{
  content:"";
  position:absolute; left:-10px; top:18px; /* ajusta según top de .bubble */
  width:0; height:0;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-right:10px solid #6f4aa7;
}

.bubble-title{ font-weight:700; font-size:1rem; line-height:1.1; margin:0; }
.bubble-sub{ font-size:.8rem; opacity:.9; margin-top:.2rem; }

/* Foco accesible solo al contenedor del globo */
.hotspot:focus-visible .bubble{ outline:3px solid #000; outline-offset:2px; }

/* En móvil, puedes permitir que el globo rompa línea */
@media (max-width:600px){
  .bubble{ white-space:normal; max-width:70vw; }
}


/* utilidades que ya tenías */
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Modal accesible */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 31, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}
.modal-backdrop[aria-hidden="false"] {
  display: flex;
}
.is-video .modal,
.is-gallery .modal {
    padding: 0;
}
.modal {
  background: #fff;
  max-width: 720px;       
  width: 100%;
  max-height: 90vh;       
  overflow-y: auto;       
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 1rem 1.25rem;
}

.modal header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}
.modal h3 {
  margin: 0.25rem 0;
}
.modal .close {
  border: 0;
  background: #f3f3f8;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}
.modal .body {
  padding: 0.75rem 0 0;
}
.chip {
  display: inline-block;
  background: #eee;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
section {
  scroll-margin-top: 80px;
}


/* Layout especial para fauna/flora (type: panel) */
.panel-bird{
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  gap: 0;
  min-height: 260px;
  border-radius: 5px;
  overflow: hidden;
  background: #d2f0ff; /* color base suave, se verá sobre el fondo del modal */
}

/* Lado de la ilustración */
.panel-bird-image{
  background: #9dd8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}
.panel-bird-image img{
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
}

/* Lado del texto */
.panel-bird-text{
  background: #c7ebcf;
  padding: 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  position: relative;   
}
.panel-bird-source {
    right: 1.2rem;
    bottom: 0.9rem;
    font-size: 0.6rem !important;
    line-height: 1.3 !important;
    color: #335b33 !important;
    opacity: 0.8 !important;
}

.panel-bird-source a {
  color: inherit;
  text-decoration: underline;
}

.panel-bird-text h4{
  margin: 0;
  font-size: 1.25rem;
  color: #204020;
}
.panel-bird-subtitle{
  margin: 0;
  font-weight: 600;
  font-size: .95rem;
  color: #335b33;
}
.panel-bird-text p{
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: #1f1f1f;
}
.panel-bird-source{
  margin-top: .4rem;
  font-size: .8rem;
  color: #335b33;
}

/* Responsive: en móvil se apila, imagen arriba texto abajo */
@media (max-width: 720px){
  .panel-bird{
    grid-template-columns: 1fr;
  }
  .panel-bird-image{
    padding: .85rem 1rem;
  }
  .panel-bird-image img{
    max-height: 200px;
  }
  .panel-bird-text{
    padding: 1rem 1.2rem 1.3rem;
  }
}



/*redes*/
.social-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1000;
}

/* Botón cuadrado con bordes suaves */
.social-fixed .social {
  width: 45px;
  height: 45px;
  border-radius: 0 5px 5px 0;
  display: grid;
  place-items: center;
  text-decoration: none;
  outline: none;
  border: 2px solid #fff3; /* similar a la referencia */
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.social-fixed .social:focus-visible {
  outline: 3px solid #000;
  outline-offset: 2px;
}
.social-fixed .social:hover {
  transform: translateX(2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* Colores inspirados en tu captura */
.social-fixed .fb {
  background: #3a8f90;
} /* turquesa */
.social-fixed .x {
  background: #b8946f;
} /* ocre/marrón claro */
.social-fixed .yt {
  background: #d3a507;
} /* amarillo mostaza */
.social-fixed .ig {
  background: #c4633e;
} /* terracota */
.social-fixed .in {
  background: #cc0a74;
} /* magenta */
.social-fixed .social svg {
  fill: #fff;
}

/* En móviles: barra en la parte inferior, horizontal */
@media (max-width: 640px) {
  .social-fixed {
    top: auto;
    bottom: 12px;
    left: 12px;
    right: 12px;
    transform: none;
    flex-direction: row;
  }
}
/*fin redes*/

/*barra govco*/
/* Fuente iconografica */
@font-face {
  font-family: "govco-font";
  src: url("../assets/icons/fonts/govco-font-icons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html {
  font-size: 100%; /* 100% = 16px */
}

.barra-superior-govco {
  background-color: #3366cc;
  width: 100%;
  height: 3rem;
  padding-left: 4.375rem;
}

.barra-superior-govco a {
  content: url(https://cdn.www.gov.co/assets/images/logo.svg);
  height: 1.875rem;
  width: 8.5rem;
}

.barra-superior-govco a:focus-visible {
  outline: max(0.125rem, 0.15em) solid #ffffff;
  border-radius: 0.313rem;
}

.barra-superior-govco .idioma-icon-barra-superior-govco {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 0.313rem;
  background-color: #ffffff;
  cursor: pointer;
  padding: 0;
  border: 0.125rem solid #ffffff;
  font-size: 10px;
  position: absolute;
  right: 5.375rem;
}

.barra-superior-govco .idioma-icon-barra-superior-govco:hover {
  background-color: #004884;
}

.barra-superior-govco .idioma-icon-barra-superior-govco:focus {
  outline: max(0.125rem, 0.15em) solid #ffffff;
  outline-offset: max(0.188rem, 0.15em);
}

.barra-superior-govco .idioma-icon-barra-superior-govco::before {
  font-family: "govco-font";
  content: "\ec56";
  color: #3366cc;
  font-size: 14px;
}

.barra-superior-govco .idioma-icon-barra-superior-govco:hover::before {
  color: #ffffff;
}

@media (max-width: 991px) {
  .barra-superior-govco {
    justify-content: center;
    padding: 0;
  }

  .barra-superior-govco .idioma-icon-barra-superior-govco {
    right: 1rem;
  }
}
/*fin barra govco*/

/* Cabecera CNMH */
.header-cnmh {
  background: #f3bf26; /* amarillo institucional */
  text-align: center;
  padding: 0.5rem 0;
  position: relative;
  z-index: 999;
}
.header-cnmh img {
  height: 52px; /* ajusta según tu imagen */
  width: auto;
}

/*videos*/

.yt-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;          /* moderno */
  border-radius: 5px;
  overflow: hidden;
  background: #000;
  margin-top: 10px;
}
.yt-wrap iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
}
/*fin videos*/

/* Contenedor de la cabecera/intro donde van los adornos */
.hero{
  position: relative;              
  max-width: 1100px;
  margin: 1.5rem auto;
  padding: 10rem 0;            
}

/* Siluetas moradas del lado izquierdo */
.hero::before{
    content: "";
    position: absolute;
    left: -20%;
    top: 152px;
    width: 220px;
    height: 70%;
    background: url(../img/bg-left-birds.svg) no-repeat center / contain;
    pointer-events: none;
    z-index: 0;
}

/* Marco floral a la derecha */
.hero::after{
  content:"";
  position:absolute;
  right: -20%;
  top: 0;
  width: 260px;
  height: 100%;
  background: url("../img/bg-right-flowers.svg") no-repeat right top/contain;
  pointer-events: none;
  opacity: .55;
  z-index: 0;
}

/* Ave grande volando (arriba derecha) */
.decor-bird-flying{
  position:absolute;
  right: 120px;                   
  top: -30px;
  width: 190px;
  height: 190px;
  background: url("../img/bird-flying.webp") no-repeat center/contain;
  pointer-events: none;
  z-index: 1;                      
}

/* Aves en el suelo (abajo) */
.decor-birds-bottom{
  position:absolute;
    right: -10rem;
    bottom: -5rem;
  width: 360px;
  height: 160px;
  background: url("../img/birds-bottom.webp") no-repeat center/contain;
  pointer-events: none;
  z-index: 1;
}

.decor-bird-left{
position: absolute;
    left: -3rem;
    bottom: 30rem;
    width: 100px;
    height: 220px;
    background: url(../img/bird-left.webp) no-repeat left bottom / contain;
    pointer-events: none;
    opacity: 1;
    z-index: 1;
}

/* Asegura que el texto quede por encima de los adornos */
.hero .content{ position: relative; z-index: 2; }

/* Responsivo: compacta adornos en pantallas pequeñas */
@media (max-width: 900px){
  .hero::before{ left:-40px; width:160px; opacity:.28; }
  .hero::after{ right:-30px; width:200px; opacity:.45; }
  .decor-bird-flying{ right: 40px; top: -10px; width:140px; height:140px; }
  .decor-birds-bottom{ right: 40px; bottom:-18px; width:260px; height:120px; }
    .decor-bird-left{
    left: -80px;
    width: 160px;
    height: 160px;
    bottom: 30px;
  }
}
@media (max-width: 560px){
  .hero::before{ display:none; }         
  .hero::after{ right:-16px; width:140px; opacity:.35; }
  .decor-bird-flying{ right: 12px; width:120px; height:120px; }
  .decor-birds-bottom{ right: 12px; width:220px; height:100px; }
    .decor-bird-left{
    display: none; 
  }
}


/*panel*/

.panel-flex{
  display:grid; grid-template-columns: 180px 1fr; gap:16px; align-items:start;
}
.panel-flex img{ width:100%; height:auto; border-radius:8px; }
@media (max-width:640px){ .panel-flex{ grid-template-columns:1fr; } }

/*galeria - tesoros*/

.gallery-intro h4{
  margin:.2rem 0 .4rem;
  font-size:1.1rem;
}
.gallery-intro h4 span{
  font-weight:400;
  font-size:.95rem;
  opacity:.85;
}

/* Contenedor de las 3 piezas */
.gallery-grid{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:.75rem;
}

/* Cada pieza: imagen izquierda, texto derecha (en desktop) */
.gallery-item{
  display:grid;
  grid-template-columns: 160px minmax(0,1fr);
  gap:14px;
  align-items:flex-start;
}

/* Imagen visible y bien presentada */
.gallery-item img{
  width:100%;
  height:auto;
  border-radius:8px;
  display:block;
}

/* Texto */
.gallery-item figcaption{
  font-size:.9rem;
  line-height:1.5;
}

/* En pantallas pequeñas: apila imagen arriba, texto abajo */
@media (max-width: 640px){
  .gallery-item{
    grid-template-columns: 1fr;
  }
}

.slider{
  position: relative;
  margin-top: .75rem;
}
.slider-track{
  position: relative;
  overflow: hidden;
}
.slide{
  display: none;
}
.slide.is-active{
  display: block;
}

/* Botones del slider */
.slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0,0,0,.55);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;            
}
.slider-btn.prev{ left: 6px; }
.slider-btn.next{ right: 6px; }
.slider-btn:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ===== Slider Tesoros escondidos ===== */

.slider[data-slider="tesoros"] .slide{
  padding: .5rem 0;
}

/* Solo el slide activo se muestra como layout de 2 columnas */
.slider[data-slider="tesoros"] .slide.is-active{
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  gap: 14px;
  align-items: flex-start;
}

/* Imagen controlada */
.slider[data-slider="tesoros"] img{
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Texto a la derecha, scrolleable si es muy largo */
.slider[data-slider="tesoros"] figcaption{
  font-size: .9rem;
  line-height: 1.5;
  max-height: 220px;
  overflow-y: auto;
}

/* Responsive: en móvil, imagen arriba y texto abajo */
@media (max-width: 640px){
  .slider[data-slider="tesoros"] .slide.is-active{
    grid-template-columns: 1fr;
  }
  .slider[data-slider="tesoros"] figcaption{
    max-height: none;
  }
}



@media (max-width: 640px){
  .slide figcaption{ font-size: .85rem; }
}

.gallery-block{
  max-width: 1100px;
  margin: 2rem auto 3rem;
}
.gallery-block h3{
  margin: 0 0 .5rem;
  font-size: 1.4rem;
  color: #000;
}
.gallery-block p{
  margin: 0 0 1rem;
  font-size: .98rem;
}

/* Usamos el mismo slider base:
   .slider, .slider-track, .slide, .slide.is-active, .slider-btn {...}
   que ya definiste antes.
*/

/* Grid de 3 imágenes por slide */
.triple-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px;
}

/* Mantener baja la altura: thumbnails recortados */
.triple-grid img{
  width: 100%;
  aspect-ratio: 4 / 3;      /* controla la altura */
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.triple-grid figcaption{
  font-size: .78rem;
  line-height: 1.3;
  margin-top: 4px;
  color: #222;
}

/* Responsivo */
@media (max-width: 900px){
  .triple-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 560px){
  .triple-grid{
    grid-template-columns: 1fr;
  }
}


.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox[aria-hidden="false"]{
  display: flex;
}
.lightbox-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
}
.lightbox-content{
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  margin: 0;
  z-index: 1;
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.lightbox-content img{
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  display:block;
}
.lightbox-content figcaption{
  font-size:.85rem;
  color:#fff;
}
.lightbox-close{
  position:absolute;
  top:-12px;
  right:-12px;
  width:28px;
  height:28px;
  border-radius:50%;
  border:0;
  background:#fff;
  cursor:pointer;
}


#galeria-cartografia {
    background: #ffffff4a;
    padding: 15px;
    border-radius: 10px;
}
 /* footer */

.footer-albarico{
  background: #4e395e;         
  color: #f5f5f5;
  padding: 4rem 1.5rem 3rem;
  margin-top: 0;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}

.footer-inner h2{
  margin: 0 !important;
  font-size: 2.4rem;
  font-weight: 700;
}

.footer-inner h3{
  margin: 0.2rem 0 1.8rem;
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
}

.footer-text{
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-credits{
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.8rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px){
  .footer-albarico{
    padding: 3rem 1.25rem 2.5rem;
  }
  .footer-inner h2{
    font-size: 1.7rem;
  }
  .footer-inner h3{
    font-size: 1.5rem;
  }
  .footer-credits{
    font-size: 0.75rem;
  }
}

/* ====== POPUPS DE VIDEO ====== */

.is-video {
  border: 2px solid #cbbd8b;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border-radius: 5px;
  overflow: hidden;
}

.is-video header {
  background: #f3e3b3;
  padding: 0.6rem 1rem;
}

.is-video header h3 {
  font-size: 1.1rem;
  color: #40351f;
  font-weight: 700;
  margin: 0;
}

.is-video .close {
  background: #fff9df;
  color: #604a1e;
  border: 1px solid #d1be82;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}
.is-video .close:hover {
  background: #f7e8b1;
}

/* cuerpo con texto + video */
.is-video .body {
  padding: 1rem 1rem 1.5rem;
  background: #fefcf8;
}


/* ====== POPUPS DE GALERÍA (TESOROS ESCONDIDOS) ====== */

.is-gallery {
  border: 2px solid #d3c09a;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.is-gallery header {
  background: #f5e8c4;
  padding: 0.8rem 1.2rem;
}

.is-gallery header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #4a3c21;
  margin: 0;
}

.is-gallery .close {
  background: #fffaf0;
  border: 1px solid #d4c28d;
  color: #5b4a22;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}
.is-gallery .close:hover {
  background: #f2e3b2;
}


/* galería interna */
.is-gallery .slider {
  position: relative;
  margin-top: 1rem;
}

.is-gallery .slider-track {
  overflow: hidden;
}

.is-gallery .slide {
  display: none;
}
.is-gallery .slide.is-active {
  display: block;
}

/* cada imagen del popup */
.is-gallery .slide img {
  border-radius: 8px;
  max-height: 400px;
  width: 100%;
  object-fit: cover;
  border: 2px solid #e7d7b5;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* texto de pie */
.is-gallery figcaption {
  font-size: 0.9rem;
  color: #2f2b1c;
  line-height: 1.4;
  margin-top: 0.5rem;
  text-align: left;
}

/* botones del slider */
.is-gallery .slider-btn {
  background: rgba(80, 60, 20, 0.6);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
}
.is-gallery .slider-btn:hover {
  background: rgba(80, 60, 20, 0.85);
}

.is-gallery .gallery-intro {
  background: #f5ecd3;
  border-left: 4px solid #b99848;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-style: italic;
  font-size: 0.95rem;
  color: #40361e;
  margin: 0 10px;
}
