/* === VARIABLES === */
:root {
 --background: #141414;
 --bg: #141414;
 --text: #ebebeb;
 --text-light: #aaa;
 --gold: #ffe5a8;
 --gold-light: #f0e6d2;
 --accent: #ffe5a8;
 --font-primary: 'Cormorant Garamond', serif;
}

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* === BODY === */
body {
 font-family: 'Cormorant Garamond', serif;
 color: var(--text);
 background: var(--background);
 min-height: 100vh;
 line-height: 1.8;
 /* Configuración de la animación de fade-in */
 animation: fadein 2.5s; 
}

@keyframes fadein {
  from { 
    opacity: 0; 
  }
  to { 
    opacity: 1; 
  }
}

/* === CABECERA === */
.home-link-image {
 position: fixed;
 top: 20px;
 left: 20px;
 width: 15%;
 max-width: 180px;
 height: auto;
 border-radius: 50%;
 object-fit: cover;
 z-index: 1000;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-link-image:hover {
 transform: scale(1.08);
 box-shadow: 0 0 20px rgba(255, 229, 168, 0.3);
}

.main-header {
 text-align: center;
 padding: 60px 20px 30px;
 margin: 0 auto;
}

.main-title {
 font-family: 'Italianno', cursive;
 font-size: clamp(3.5rem, 10vw, 6.5rem);
 color: var(--gold-light);
 text-shadow: 0 4px 20px rgba(0,0,0,0.8);
 margin: 0;
 line-height: 1;
}

.main-subtitle {
 font-family: 'Cormorant Garamond', serif;
 font-size: clamp(1rem, 2.25vw, 2.5rem);
 color: #f0e6d2;
 font-variant: small-caps;
 font-style: italic;
 letter-spacing: 0.05em;
 margin: 0.5rem 0 0;
}

/* === CONTENIDO PRINCIPAL === */
.page-content {
 padding: 160px 50px 50px;
 max-width: 75vw;
 margin: 0 auto;
 width: 100%;
}

.page-content h1 {
 font-size: clamp(1.8rem, 3vw, 2.5rem);
 color: #ebebeb;
 margin-bottom: 1.5rem;
 text-align: left;
 font-weight: 700;
}

.page-content p {
 font-size: clamp(1.25rem, 1.5vw, 1.8rem);
 line-height: 1.9;
 text-align: justify;
 margin-bottom: 1.2rem;
 text-indent: 2em;
 hyphens: auto;
}

.page-content h2 {
 font-size: clamp(1.5rem, 2.5vw, 2rem);
 margin: 2rem 0 1rem;
 color: var(--gold-light);
}

/* === IMÁGENES === */
.bio-image {
 width: 38%;
 max-width: 280px;
 height: auto;
 float: right;
 margin: 0 0 15px 15px;
 border-radius: 0;
 object-fit: cover;
 -webkit-mask-image: radial-gradient(ellipse 49% 49% at center, black 45%, transparent 100%);
 mask-image: radial-gradient(ellipse 49% 49% at center, black 45%, transparent 100%);
 transform: translateZ(0);
}

.repertorio-image {
 width: 100%;
 max-width: 500px;
 height: auto;
 display: block;
 margin: 0 auto 30px;
 border-radius: 50%;
 object-fit: cover;
 -webkit-mask-image: radial-gradient(circle at center, black 70%, transparent 100%);
 mask-image: radial-gradient(circle at center, black 70%, transparent 100%);
 transform: translateZ(0);
}

/* === ENLACES === */
.links-section {
 text-indent: 0 !important;
 font-style: normal !important;
 text-align: left !important;
 margin-top: 1.5rem;
 font-size: clamp(1rem, 1.6vw, 1.3rem);
 font-weight: 500;
 color: var(--gold);
}

.links-section a {
 color: var(--gold);
 text-decoration: underline;
 font-weight: 600;
 transition: color 0.3s ease;
}

.links-section a:hover {
 color: #ffffff;
 text-decoration: none;
}

/* === REPERTORIO: FILTRO === */
.repertorio-filter {
 text-align: center;
 margin: 2rem 0;
}

.filter-header {
 display: inline-block;
 width: 100%;
 max-width: 300px;
 margin: 0 auto;
}

#filter-mode {
 width: 100%;
 background: rgba(26, 26, 26, 0.8);
 color: var(--gold-light);
 border: 2px solid var(--gold);
 padding: 12px 20px;
 border-radius: 14px;
 font-family: 'Cormorant Garamond', serif;
 font-size: clamp(1.1rem, 2vw, 1.4rem);
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
 text-align: center;
 backdrop-filter: blur(6px);
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#filter-mode:hover {
 background: var(--gold);
 color: #141414;
 transform: translateY(-2px);
}

/* === BOTONES DE FILTRO (Usados tanto en Repertorio como en Galería) === */
.filter-buttons {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 12px;
 margin: 1.5rem auto;
 max-width: 90%;
 padding: 0 10px;
}

.filter-buttons button {
 background: rgba(26, 26, 26, 0.7);
 color: var(--gold-light);
 border: 1.5px solid var(--gold);
 padding: 10.5px 18.9px;
 border-radius: 12px;
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.25rem;
 font-weight: 600;
 cursor: pointer;
 font-variant: small-caps;
 transition: all 0.3s ease;
 backdrop-filter: blur(6px);
 min-width: auto;
 white-space: nowrap;
}

.filter-buttons button:hover,
.filter-buttons button.active {
 background: var(--gold);
 color: #141414;
 transform: translateY(-2px);
 box-shadow: 0 6px 18px rgba(255, 229, 168, 0.3);
}

.media-controls button.active {
    /* Aplicamos los estilos visuales que queremos para la selección actual (no flotando) */
    background: rgba(26, 26, 26, 0.7);
    color: var(--gold-light);
    transform: none; /* Anula la animación */
    box-shadow: none; /* Anula la sombra */
}

/* 2. ESTADO HOVER ESPECÍFICO (Con animación) */
/* Re-aplicamos el efecto de hover COMPLETO para asegurar que el botón sí flota al pasar el ratón. */
.media-controls button:hover {
    background: var(--gold);
    color: #141414;
    transform: translateY(-2px); /* Re-aplica la animación de flotar */
    box-shadow: 0 6px 18px rgba(255, 229, 168, 0.3); /* Re-aplica la sombra */
}

/* === REPERTORIO ESPECÍFICO === */
/* GÉNEROS: AJUSTE DE TAMAÑO DE CONTENIDO */
.filter-buttons[data-mode="genre"] {
 display: flex; 
 flex-wrap: wrap; 
 justify-content: center; 
 gap: 14px;
 max-width: 100%;
 margin: 1.25rem auto 0;
 padding: 0 10px;
}

.filter-buttons[data-mode="genre"] button {
 min-width: 0; 
 padding: 10.5px 18.9px; 
 font-size: 1.25rem;
 white-space: nowrap;
 flex: 0 1 auto; 
}

/* COMPOSITORES: ADAPTABLE AL CONTENIDO */
.filter-buttons[data-mode="composer"] button {
 flex: 0 1 auto; 
 max-width: none; 
 min-width: 120px; 
 padding: 10px 18px;
}

/* LISTA DE OBRAS: MÁX 3 COLUMNAS + CENTRADO TOTAL */
.repertorio-list {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
 padding: 0;
 margin: 0;
 width: max-content; 
 max-width: 100%;
}

/* WRAPPER PARA CENTRAR LA ÚLTIMA FILA */
.repertorio-list-wrapper {
 display: flex;
 justify-content: center;
 width: 100%;
 margin: 2.5rem 0;
}

/* OBRAS: TEXTO FORMATEADO Y ALINEADO A LA IZQUIERDA */
.repertorio-item {
 background: rgba(30, 30, 30, 0.6);
 border-radius: 16px;
 padding: 1.6rem;
 backdrop-filter: blur(8px);
 border: 1px solid rgba(255, 229, 168, 0.15);
 transition: all 0.3s ease;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
 width: 100%;
 max-width: 340px;
 margin: 0 auto;
 text-align: left;
}

.repertorio-item h3 {
 font-size: 1.2rem;
 font-weight: 500;
 margin-bottom: 0.2em;
 font-variant: small-caps;
 letter-spacing: 0.08em;
}

.repertorio-item:hover {
 transform: translateY(-5px);
 box-shadow: 0 14px 32px rgba(255, 229, 168, 0.18);
 border-color: var(--gold);
}

/* TÍTULO: VERSALITAS */
.repertorio-item .title {
 font-size: 1.35rem;
 color: var(--gold-light);
 margin: 0 0 0.4rem;
 font-variant: small-caps;
 letter-spacing: 1.2px;
 line-height: 1.3;
 display: block;
}

/* DETALLE: NORMAL */
.repertorio-item .detail {
 font-size: 1rem;
 color: #cccccc;
 margin: 0 0 0.4rem;
 font-style: normal;
 line-height: 1.5;
 display: block;
}

.repertorio-item .detail-text {
 font-style: normal;
 font-weight: 400;
 font-size: 1.1rem;
 margin-bottom: 0.5em;
 display: block;
}

.repertorio-item .category-text {
 font-style: italic; 
 font-weight: 300;
 font-size: 1rem;
 display: block; 
 margin-top: 0.5em;
 color: var(--gold);
}

/* COMPOSITOR / GÉNERO: CURSIVA */
.repertorio-item .composer,
.repertorio-item .genre {
 font-size: 1rem;
 color: #cccccc;
 margin: 0.4rem 0 0;
 font-style: italic;
 line-height: 1.5;
 display: block;
}

/* Resaltado en negrita */
.repertorio-item strong {
 color: var(--gold-light);
}

/* ========================================= */
/* === ESTILOS ESPECÍFICOS DE GALERÍA === */
/* ========================================= */

.intro-gallery {
  text-align: center;
  max-width: 900px;
  margin: 1rem auto 2.5rem;
  font-size: 1.2rem;
  line-height: 1.7;
  padding: 0 1rem;
}

/* --- Estilos Masonry Grid --- */

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  grid-gap: 15px;
  grid-auto-rows: 10px; /* Base para el cálculo de la altura de las filas (usado por JS) */
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
}

.masonry-item {
  display: block;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.4s ease;
  opacity: 1;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
}

.masonry-item.hidden {
  display: none; /* Ocultar completamente los ítems filtrados */
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.masonry-item img:hover {
  transform: scale(1.05);
}

/* === FORZAR RENDERIZADO DE IMÁGENES === */
.masonry-item img {
    display: block;
    width: 100%;
    height: auto;
    visibility: visible !important;
    opacity: 1 !important;
}

/* --- Estilos del Modal (Lightbox) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0 60px;
    box-sizing: border-box;
}

.modal.visible {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: calc(100% - 120px);
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255, 229, 168, 0.3);
    animation: zoom 0.5s ease;
}

@keyframes zoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* === FLECHAS FUERA DE LA IMAGEN === */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(4px);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--gold);
    color: #141414;
    transform: translateY(-50%) scale(1.1);
}

/* === BOTÓN CERRAR === */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--gold-light);
}

/* === TRANSICIÓN ENTRE PÁGINAS === */
#page-transition {
    position: fixed;
    inset: 0;
    background: var(--background);
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

#page-transition.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* === FOOTER === */
.footer {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  background: var(--background);
  color: var(--text);
  font-size: 0.9rem;
}

.footer p {
  margin: 5px 0;
  line-height: 1.4;
}

.footer .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2 20px;
}

/* Audio-Video – Lightbox responsive y móvil */
.lightbox-content video,
.lightbox-content audio {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    background: #000;
    display: block;
    margin: 0 auto;
}

/* ========================================= */
/* === AUDIO/VÍDEO - GRID ESPECÍFICO === */
/* ========================================= */

/* Grid para Audio/Vídeo */
.audio-video-page .masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 30px auto;
    grid-auto-rows: auto;
}

.audio-video-page .media-item {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 229, 168, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.audio-video-page .media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 229, 168, 0.25);
    border-color: var(--gold);
}

/* Contenedor de la imagen que se adapta */
.audio-video-page .media-thumb {
    width: 100%;
    height: auto;  /* ← Altura automática según proporción */
    object-fit: contain;  /* ← Sin recortes */
    display: block;
    background: #000; /* Fondo negro si hay espacios */
}

.audio-video-page .media-info {
    padding: 12px;
    background: rgba(20, 20, 20, 0.8);
    flex-grow: 1; /* Ocupa el espacio restante */
}

.audio-video-page .media-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 5px;
    line-height: 1.3;
    font-variant: small-caps;
}

.audio-video-page .media-work {
    font-size: 0.95rem;
    color: #cccccc;
    font-style: italic;
    line-height: 1.4;
}

/* Lightbox para Audio/Vídeo */
.audio-video-page .modal {
    display: none;
}

.audio-video-page .modal.active {
    display: flex;
}

.audio-video-page .lightbox-caption {
    text-align: center;
    color: var(--gold-light);
    margin-top: 15px;
    font-size: 1.2rem;
    padding: 0 20px;
}

.audio-video-page .lightbox-caption strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-variant: small-caps;
}

/* ========================================= */
/* === LIGHTBOX AUDIO/VÍDEO === */
/* ========================================= */

#media-lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#media-lightbox.active {
    display: flex;
    opacity: 1;
}

#media-lightbox .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* === VÍDEO ESPECÍFICO === */
#media-lightbox.active video {
    max-width: 90vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(255, 229, 168, 0.4);
}

/* === AUDIO ESPECÍFICO === */
#media-lightbox.active audio {
    display: block;
    width: 500px;
    max-width: 90vw;
    height: 54px;
    min-height: 54px;
    background: rgba(42, 42, 42, 0.95);
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(255, 229, 168, 0.4);
    border: 2px solid var(--gold);
    padding: 8px;
    margin: 20px auto;
}

/* === CONTENEDOR DE AUDIO CON THUMBNAIL === */
#media-lightbox.active .audio-player-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 16px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 50px rgba(255, 229, 168, 0.3);
}

#media-lightbox.active .audio-lightbox-thumb {
    display: block;
    max-width: 400px;
    width: 90vw;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

/* === CAPTION === */
#media-lightbox .lightbox-caption {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gold-light);
    font-size: 1.2rem;
    padding: 0 20px;
    width: 100%;
}

#media-lightbox .lightbox-caption strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 4px;
    font-variant: small-caps;
}

/* === BOTONES DEL LIGHTBOX === */
#media-lightbox .close-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

#media-lightbox .close-btn:hover {
    color: var(--gold-light);
}

#media-lightbox .prev-btn,
#media-lightbox .next-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 2px solid var(--gold);
    width: 55px;
    height: 55px;
    font-size: 26px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
    backdrop-filter: blur(4px);
}

#media-lightbox .prev-btn {
    left: 30px;
}

#media-lightbox .next-btn {
    right: 30px;
}

#media-lightbox .prev-btn:hover,
#media-lightbox .next-btn:hover {
    background: var(--gold);
    color: #141414;
    transform: translateY(-50%) scale(1.1);
}

.repertorio-item {
    position: relative;
}

.media-link {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 229, 168, 0.1); /* Dorado muy tenue */
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    z-index: 10;
    text-decoration: none;
}

.media-link:hover {
    background: var(--gold);
    color: #141414;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 229, 168, 0.4);
}

.media-svg {
    width: 18px;
    height: 18px;
}

/* Evitar que el texto largo se pise con el icono */
.repertorio-item h3 {
    padding-right: 35px;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
 .repertorio-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 }
 .page-content p {
  text-align: left;
  text-indent: 1.5em;
 }
}

@media (max-width: 992px) {
 .page-content {
  padding: 120px 20px 40px;
  max-width: 90vw;
 }
 .home-link-image {
  width: 80px;
  top: 15px;
  left: 15px;
 }
 .main-header {
  padding-top: 100px;
 }
 .bio-image {
  width: 50%;
  max-width: 220px;
  float: none;
  display: block;
  margin: 0 auto 25px;
 }
 .repertorio-image {
  max-width: 350px;
 }
 .repertorio-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 }
 .page-content p {
  text-align: left;
  text-indent: 1.5em;
 }
}

/* Tabletas (2 columnas para Masonry) */
@media (max-width: 900px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Audio/Vídeo: 2 columnas fijas en tablet */
  .audio-video-page .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
    .modal {
        padding: 0 40px;
    }
    .modal-content {
        max-width: calc(100% - 80px);
    }
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .page-content p {
        text-align: left;
        text-indent: 1.5em;
    }
    #media-lightbox.active video {
        max-width: 95vw;
        max-height: 60vh;
    }
    
    #media-lightbox.active audio {
        width: 90vw;
    }
    
    #media-lightbox.active .audio-lightbox-thumb {
        max-width: 300px;
    }
    
    #media-lightbox .prev-btn,
    #media-lightbox .next-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    #media-lightbox .prev-btn {
        left: 15px;
    }
    
    #media-lightbox .next-btn {
        right: 15px;
    }
    
    #media-lightbox .lightbox-caption {
        bottom: -100px;
        font-size: 1rem;
    }
}

/* Media Query para modal en móviles */
@media (max-width: 700px) {
  .modal-content {
    width: 100%;
    max-width: 100%;
    max-height: 80%;
  }
  .prev-btn, .next-btn {
    top: unset;
    bottom: 20px;
    margin-top: 0;
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 650px) {
 .page-content p {
  text-align: left; 
  text-indent: 1.5em;
 }
}

/* Móviles (1 columna para Masonry) */
@media (max-width: 600px) {
  .masonry-grid {
    grid-template-columns: 1fr;
  }
  .filter-buttons {
    flex-direction: column; 
  }
  .filter-buttons button {
    width: 100%;
  }
  /* Audio/Vídeo: 1 columna en móvil */
  .audio-video-page .masonry-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .audio-video-page .media-title {
    font-size: 1rem;
  }
  .audio-video-page .media-work {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
 .filter-buttons button {
  font-size: 0.9rem;
  padding: 8px 10px;
  min-width: 100px;
 }
 .repertorio-list {
  grid-template-columns: 1fr;
 }
 .page-content p {
  text-align: left;
  text-indent: 1.5em;
 }
 #media-lightbox .close-btn {
    font-size: 35px;
    right: 15px;
 }
 
 #media-lightbox.active .audio-player-container {
    padding: 20px;
    gap: 20px;
 }
}