/* ===========================
   VIDEO HERO
=========================== */
 
.video-section {
    min-height:100svh;
    display:flex;
    align-items:center;
    justify-content:center;
    position: relative;
    
}
 
#video-elem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
 
.video-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
    pointer-events: none;
}
 
.titulo-video-container {
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:6rem 2rem 4rem;
    z-index: 2;
}
 
.titulo-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: auto;
    width:100%;
    max-width:1200px;
    padding:0 2rem;
}
 
.titulo-video h1{
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: clamp(2.2rem, 8vw, 6rem);
    font-family: "Teko", sans-serif;
    line-height: .95;
    margin: 0 0 .5rem 0;
}
 
.titulo-video h2{
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.6rem, 5vw, 3.5rem);
    font-family: "Teko", sans-serif;
    line-height: .85;
    margin: 0 0 .5rem 0;
}
 
.titulo-video em{
    color: #ffffff;
    font-size: clamp(1rem, 2.5vw, 2rem);
    line-height: 1.25;
}
 
.titulo-video a{
    padding: 1rem;
    margin-top: 1rem;
    background-color: #a31e33;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 400;
    width: fit-content;
    border-radius: 10px;
}
 
/* ===========================
   CARDS (ajustadas)
=========================== */
.cards {
    position: relative;
    transform: translateY(-12rem);
    z-index: 10;
}

.cards-container {
    max-width: 1900px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding: 0 3rem;
    transform: scale(1.05);
    transform-origin: top center;
}

.card {
    flex: 1 1 45%;
    max-width: 700px;
}

/* ── card-media: ahora con <img> real en vez de background-image ── */
.card-media {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    /* background-size / background-position eliminados: ya no son background-image */
}

/* La imagen real que sustituye al background-image */
.card-media__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1;
}

.card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    color: white;
    z-index: 2;
}

.card-content h2 {
    font-family: "Teko", sans-serif;
    font-size: 3rem;
    margin: 0;
    padding: 1.5rem 1rem 0.2rem 1rem;
}

.card-subtitle {
    display: block;
    text-transform: uppercase;
    font-size: 1.2rem;
    padding: 0 1rem 1rem 1rem;
    margin: 0;
}

/* zona inferior fija */
.card-bottom {
    margin-top: auto;
    padding: 0 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.card-claim {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.card-button {
    background: #a31e33;
    color: #fff;
    text-decoration: none;
    padding: .8rem 2rem;
    border-radius: 5px;
    align-self: flex-start;
    width: fit-content;
    display: inline-block;
    margin-left: 1rem;
    margin-top: .5rem;
    margin-bottom: 1rem;
}

.card-content h2,
.card-subtitle {
    display: block;
}

.cards .card:nth-child(1) h2,
.cards .card:nth-child(1) .card-subtitle { background: #a31e33; }

.cards .card:nth-child(2) h2,
.cards .card:nth-child(2) .card-subtitle { background: #6c757d; }

.cards .card:nth-child(3) h2,
.cards .card:nth-child(3) .card-subtitle { background: #000; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .cards {
        transform: none;
        margin-top: 2rem;
    }

    .cards-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
        transform: none;
    }

    .card {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }

    .card-media {
        height: clamp(260px, 55vw, 420px);
    }
}

@media (max-width: 900px) {
    .card-media {
        height: auto;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .card-content {
        position: relative;
        padding-bottom: 1.5rem;
    }
}


 
 
/* ===========================
   DESCUBRE
=========================== */
.descubre{
    margin: 0 auto 7.5rem auto;
}
 
.descubre-container{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}
 
.descubre-texto{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
 
.descubre-texto > *{
    margin-left: 0;
    margin-right: auto;
}
 
.descubre-texto h2{
    color: #a31e33;
    font-size: 3em;
    font-weight: 800;
    font-family: "Teko", sans-serif;
    line-height: 1;
    margin-bottom: 1rem;
}
 
.descubre-texto h3{
    color: #000;
    font-weight: 800;
    font-size: 2rem;
    padding-bottom: 1rem;
    font-family: "Teko", sans-serif;
    line-height: 1;
    margin-bottom: 0;
}
.descubre-texto p{
    line-height: 1.5;
    letter-spacing: 1.5px;
}

.descubre-texto a{
    background-color: #212529;
    color: #ffffff;
    text-decoration: none;
    padding: .75rem;
    width: fit-content;
    margin-top: 1rem;
    margin-left: 0;
    border-radius: 10px;
    text-transform: uppercase;
}
 
.descubre-img{
    width: 40%;
    object-fit: cover;
}
 
.descubre-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 10px;
}
 
/* ===========================
   FERIA
=========================== */
.feria-container{
    display:flex;
    flex-direction: row;
}
 
.feria-img, .feria-text{
    width: 50%;
}
 
.feria-text{
    background-color: #a31e33;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
 
.feria-text> *{
    width: 80%;
    margin: 0 auto;
}
 
.feria-text h2{
    font-size: 3rem;
    font-weight: 800;
    padding-bottom: 1rem;
    font-family: "Teko", sans-serif;
    line-height: 1;
    margin-bottom: 0;
}
 
.feria-text p{
    line-height: 1.5;
    letter-spacing: 1.5;
    margin-top: 1rem;
}
 
.feria-text a{
    background-color: #212529;
    color: #ffffff;
    text-decoration: none;
    padding: .75rem;
    width: fit-content;
    margin-top: 1rem;
    margin-left: 10%;
    border-radius: 10px;
    text-transform: uppercase;
}
 
/* ===========================
   NOTICIAS
=========================== */
.noticias-container{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
}
 
.noticia{
    width:30%;
    display:flex;
    flex-direction: column;
}
 
/* ===========================
   TURISMO
=========================== */
.turismo-container{
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    gap:4rem;
    width: 70%;
    margin: 0 auto 7.5rem auto;
}
 
.turismo-text, .turismo-img{
    width:50%;
}
 
/* ===========================
   RESPONSIVE — MOBILE / TABLET
=========================== */
 
@media (max-width: 900px) {
 
  .cards {
    transform: none;
    margin-top: 2rem;
  }
 
  .cards-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
 
  .card {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
 
  .card-media {
    height: clamp(260px, 55vw, 420px);
  }
}
 
@media (max-width: 768px) {
 
  .titulo-video-container {
    padding: 5rem 1.5rem 3rem;
    text-align: center;
  }
 
  .descubre {
    margin-bottom: 4rem;
  }
 
  .descubre-container {
    flex-direction: column;
    gap: 1.5rem;
  }
 
  .descubre-texto,
  .descubre-img {
    width: 100%;
    padding: 0 1rem;
  }
 
  .descubre-img img {
    max-height: 280px;
    object-fit: cover;
  }
 
  .descubre-texto a {
    margin-left: 0;
    width: 100%;
    text-align: center;
    display: block;
    box-sizing: border-box;
  }
 
  .feria-container {
    flex-direction: column;
  }
 
  .feria-img,
  .feria-text {
    width: 100%;
  }
 
  .feria-img img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    display: block;
  }
 
  .feria-text {
    padding: 2.5rem 1.5rem;
  }
 
  .feria-text > * {
    width: 100%;
    margin: 0;
  }
 
  .feria-text a {
    margin-left: 0;
    width: 100%;
    text-align: center;
    display: block;
    box-sizing: border-box;
  }
 
  .noticias-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
 
  .noticia {
    width: 100%;
  }
 
  .turismo-container {
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    padding: 0 1rem;
    margin-bottom: 4rem;
    box-sizing: border-box;
  }
 
  .turismo-text,
  .turismo-img {
    width: 100%;
    padding: 0;
  }
 
  .turismo-info-card {
    padding: 2rem 1rem;
  }
 
  .turismo-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    line-height: 1.2;
    text-align: center;
  }
 
  .turismo-desc {
    font-size: 1rem;
    text-align: center;
  }
 
  .btn-turismo-cta {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    display: block;
    text-align: center;
  }
}
 
@media (max-height: 700px) {
  .titulo-video h1 { font-size: 3rem; }
  .titulo-video h2 { font-size: 2rem; }
  .titulo-video em  { font-size: 1rem; }
}
 
.turismo-info-col {
    flex: 1;
    min-width: 0;
}
 
.turismo-info-card {
    padding: 3rem 1rem;
    box-sizing: border-box;
}
 
.turismo-title {
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    line-height: 1.1;
    word-break: break-word;
}
 
/* HOME */
.page-home .video-section {
    min-height: 100svh;
}
 
/* CARRERAS */
.page-10-km .video-section,
.page-20-km .video-section,
.page-marcha .video-section {
    min-height: 660px;
}
 
/* PÁGINAS NORMALES */
.page-turismo .video-section,
.page-noticias .video-section,
.page-reglamento .video-section,
.page-faqs .video-section,
.page-el-evento .video-section,
.page-multimedia .video-section,
.page-como-llegar .video-section {
    min-height: 330px;
}
 
#video-elem,
.video-section img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
 
.video-section{
    position:relative;
}
 
/* ==========================
   HEADER TRANSPARENTE / STICKY
   ========================== */
 
/* --- HOME: header transparente, logo y textos blancos --- */
.page-home header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    z-index: 2000;
    transition: background-color var(--transition-speed) ease;
}
 
/* Textos y enlaces blancos en home
   NOTA: lang-current se gestiona aparte para respetar el fullscreen */
.page-home header a,
.page-home .burguer-icon,
.page-home .burguer-icon::before,
.page-home .burguer-icon::after {
    color: #fff;
    transition: color var(--transition-speed) ease;
}
 
/* lang-current blanco en home (sin fullscreen) */
.page-home .lang-current {
    color: #fff;
}
 
/* Logo blanco visible en home, rojo oculto */
.page-home #logo_white { display: block; }
.page-home #logo_color { display: none; }
 
/* --- PÁGINAS INTERNAS: header sticky, fondo blanco, textos negros --- */
body:not(.page-home) header {
    background: #fff;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
 
body:not(.page-home) header.scrolled {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
 
/* Logo normal visible en páginas internas */
body:not(.page-home) #logo_color { display: block; }
body:not(.page-home) #logo_white { display: none; }
 
/* Links, burger negro en páginas internas
   NOTA: lang-current se gestiona aparte */
body:not(.page-home) header a,
body:not(.page-home) .burguer-icon,
body:not(.page-home) .burguer-icon::before,
body:not(.page-home) .burguer-icon::after {
    color: #000;
}
 
/* lang-current negro en páginas internas (solo si NO hay fullscreen activo) */
body:not(.page-home) header:not(.fullscreen-active) .lang-current {
    color: #000;
}
 
/* Burger negro en páginas internas */
body:not(.page-home) .burguer-icon,
body:not(.page-home) .burguer-icon::before,
body:not(.page-home) .burguer-icon::after {
    background: #000;
}
 
body:not(.page-home) header.scrolled .burguer-icon,
body:not(.page-home) header.scrolled .burguer-icon::before,
body:not(.page-home) header.scrolled .burguer-icon::after {
    background: #000;
}
 
/* Burger blanco en home */
.page-home .burguer-icon,
.page-home .burguer-icon::before,
.page-home .burguer-icon::after {
    background: #fff;
}
 
/* Scroll en home → header fijo con fondo blanco */
.page-home header.scrolled {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Scroll en home → textos, logo e iconos cambian a oscuro (fondo ya es blanco) */
.page-home header.scrolled .nav-li > a {
    color: #000;
    transition: color var(--transition-speed) ease;
}
.page-home header.scrolled .lang-current {
    color: #000;
}
.page-home header.scrolled .burguer-icon,
.page-home header.scrolled .burguer-icon::before,
.page-home header.scrolled .burguer-icon::after {
    background: #000;
}
.page-home header.scrolled #logo_color { display: block; }
.page-home header.scrolled #logo_white { display: none; }
 
/* --- FULLSCREEN ACTIVO: logo blanco, burger blanco, lang-current blanco --- */
header.fullscreen-active #logo_color { display: none !important; }
header.fullscreen-active #logo_white { display: block !important; }
 
header.fullscreen-active .burguer-icon,
header.fullscreen-active .burguer-icon::before,
header.fullscreen-active .burguer-icon::after {
    background: #fff !important;
}
 
/* FIX: lang-current siempre blanco con fullscreen activo */
header.fullscreen-active .lang-current {
    color: #fff !important;
}
 
/* --- HERO / VIDEO --- */
.video-section {
    position: relative;
    z-index: 1;
}
 
body:not(.page-home) .video-section {
    margin-top: 0rem;
}
 
#video-elem,
.video-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
 
/* ==========================
   BLOQUE MAPA
   ========================== */
.bloque-mapa-113 {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
}
 
.bloque-mapa-113 .columna-izquierda,
.bloque-mapa-113 .columna-derecha {
    flex: 1 1 450px;
}
 
.bloque-mapa-113 h2 {
    color: #a50101;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 20px;
}
 
.bloque-mapa-113 .ciudad h3 {
    color: #222;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 10px;
}
 
.bloque-mapa-113 .ciudad ul {
    list-style: disc inside;
    padding-left: 0;
    margin: 0 0 20px 0;
}
 
.bloque-mapa-113 .ciudad li {
    margin-bottom: 5px;
}
 
.bloque-mapa-113 .columna-izquierda p {
    margin-bottom: 15px;
}
 
.bloque-mapa-113 a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 600;
}
 
.bloque-mapa-113 a:hover {
    text-decoration: underline;
}
 
/* ===========================
   NOTICIA DETALLE — MOBILE
=========================== */
 
@media (max-width: 991px) {
 
  .noticia_detalle .col-lg-5,
  .noticia_detalle .col-lg-7 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
 
  .noticia_detalle .img-fluid {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
 
  .noticia_detalle h2 {
    font-size: 1.6rem !important;
    line-height: 1.3;
  }
 
  .noticia_detalle h3.text-muted {
    font-size: 1.1rem !important;
    line-height: 1.4;
  }
 
  .noticia_detalle .ck-content {
    font-size: 0.95rem;
    line-height: 1.7;
  }
 
  .noticia_detalle .d-flex.gap-3 {
    flex-direction: column;
    gap: 0.5rem !important;
  }
 
  .noticia_detalle .d-flex.gap-3 a {
    width: 100%;
    text-align: center;
  }
 
  .slide-title {
    font-size: 1.6rem !important;
    padding: 0 1.5rem;
    line-height: 1.2;
  }
 
  .noticias .col-md-4 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
 
  .noticias-title {
    font-size: 1.8rem;
  }
 
  .noticia_detalle .fechaNoticia {
    font-size: 0.85rem;
  }
 
  .noticia_detalle .px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
 
@media (max-width: 900px) {
 
  .card-media {
    height: auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
 
  .card-content {
    position: relative;
    padding-bottom: 1.5rem;
  }
}
 
/* ===============================
   COLORES DE BACKGROUND EN TITULOS/SUBTITULOS
   =============================== */
.cards .card h2,
.cards .card .card-subtitle {
    display: block;
    width: 100%;
    padding: .9rem;
    background-clip: padding-box;
    box-sizing: border-box;
}
 
.cards .card:nth-child(1) h2,
.cards .card:nth-child(1) .card-subtitle { background: #a31e33; }
.cards .card:nth-child(2) h2,
.cards .card:nth-child(2) .card-subtitle { background: #6c757d; }
.cards .card:nth-child(3) h2,
.cards .card:nth-child(3) .card-subtitle { background: #000; }
 
/* Imágenes en editores */
#editor-cuerpo-es img,
#editor-cuerpo-eu img,
#editor-cuerpo-en img,
.article-content img,
.block-text img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 10px 0;
    object-fit: contain;
}
 
#editor-cuerpo-es,
#editor-cuerpo-eu,
#editor-cuerpo-en,
.article-content,
.block-text {
    width: 100%;
    max-width: 100%;
}
 
/* Oculta bordes de tarjetas de page-aggregator */
.card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ===============================
   ANIMACIÓN CARDS (PAGE AGGREGATOR)
   Entrada suave desde abajo con fade + scale
   =============================== */

.cards .card {
    opacity: 0;
    transform: translateX(100vw);
    animation: cardSlideIn 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    will-change: transform, opacity;
    cursor: pointer;
}

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cards .card:nth-child(1) { animation-delay: 0.2s; }
.cards .card:nth-child(2) { animation-delay: 0.6s; }
.cards .card:nth-child(3) { animation-delay: 1s; }
.cards .card:nth-child(4) { animation-delay: 1.4s; }
.cards .card:nth-child(5) { animation-delay: 1.8s; }
.cards .card:nth-child(6) { animation-delay: 2.2s; }

/* Hover: zoom muy sutil en la imagen */
.card-media__img {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card-media__img {
    transform: scale(1.03);
}

/* Hover: overlay apenas se toca para mantener legibilidad del texto */
.card-overlay {
    transition: background 0.4s ease;
}
.card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.38);
}

/* Hover: elevación ligera */
.card-media {
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card-media {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   CAROUSEL
═══════════════════════════════════════ */

.block-carousel {
    padding: 0;
    background: transparent;   /* sin fondo, no se ven huecos */
}

.block-carousel .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.carousel {
    position: relative;
    overflow: hidden;
    max-width: 1200px;     /* ajustar el ancho máximo */
    margin: 0 auto;
}

/* TRACK */
.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.3, 1);
}

/* SLIDE */
.carousel-slide {
    min-width: 100%;
    height: 75vh;
    position: relative;
    flex-shrink: 0;
    margin-bottom: 3rem;
}

/* WRAPPER */
.carousel-image-wrapper {
    position: absolute;
    inset: 0;
}

/* IMG */
.carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* OVERLAY */
.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.35)
    );
}

/* CAPTION */
.carousel-caption {
    position: absolute;
    bottom: 28px;
    left: 28px;
    color: #fff;
    z-index: 2;
}

.carousel-caption h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* BUTTONS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .carousel-slide {
        height: 50vh;
    }

    .carousel-caption {
        bottom: 16px;
        left: 16px;
    }

    .carousel-caption h3 {
        font-size: 15px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}
