.jv-concierto-page {
    background-color: #000000;
    /* NEGRO JAZZ */
    color: #FFFFFF;
    /* BLANCO JAZZ */
    font-family: 'Poppins', sans-serif;
    padding: 20px;
}

.jv-concierto-header-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto 94px auto;
    /* Centrado y espaciado inferior */
    align-items: start;
}

@media (min-width: 768px) {
    .jv-concierto-header-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.jv-concierto-imagen {
    border-radius: 16px;
    overflow: hidden;
}

.jv-concierto-imagen img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

.jv-concierto-imagen.jv-placeholder {
    background-color: #333;
    height: 300px;
    /* Altura de placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #bbb;
    border-radius: 16px;
}

.jv-concierto-info-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jv-concierto-titulo-principal {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    /* Medium */
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 0.36px;
    color: #5CACCA;
    /* AZUL JAZZ */
    margin: 0;
    padding: 0;
}

.jv-meta.jv-meta-tipo {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    /* Light */
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    /* BLANCO JAZZ */
    margin: 0;
    padding: 0;
}

.jv-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    /* Light */
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    /* BLANCO JAZZ */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jv-details-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jv-details-list li::before {
    content: url('data:image/svg+xml;utf8,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.5 3.75L5.625 10.625L2.5 7.5" stroke="%235CACCA" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    /* Icono de check azul */
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.jv-details-list a {
    color: #5CACCA;
    /* AZUL JAZZ */
    text-decoration: none;
}

.jv-details-list a:hover {
    text-decoration: underline;
}

.jv-details-list .jv-sublist {
    list-style: none;
    padding: 0;
    margin-top: 5px;
    margin-left: 25px;
    /* Indentación para sub-items */
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.jv-details-list .jv-sublist li::before {
    content: url('data:image/svg+xml;utf8,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.5 3.75L5.625 10.625L2.5 7.5" stroke="%235CACCA" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    /* Icono de check azul */
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.jv-bloque-titulo {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    /* Medium */
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 0.36px;
    color: #FFFFFF;
    /* BLANCO JAZZ */
    margin: 94px auto 35px auto;
    /* Espaciado superior y centrado */
    text-align: center;
    max-width: 1280px;
    width: 100%;
}

.jv-artistas-section {
    max-width: 1280px;
    margin: 94px auto;
    width: 100%;
}

.jv-artistas-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.jv-artista-item {
    background-color: #000000;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 94px;
}

.jv-artista-top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 94px;
    align-items: start;
}

.jv-artista-content {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jv-artista-date {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.jv-artista-day {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 150%;
}

.jv-artista-date-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #5CACCA;
}

.jv-artista-titulo {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 0.36px;
    color: #FFFFFF;
    margin: 0;
}

.jv-artista-texto {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #FFF;
    margin: 0;
}

.jv-artista-media {
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    background-color: #1c1c1c;
    display: flex;
}

.jv-artista-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jv-artista-media.jv-placeholder {
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 16px;
}

.jv-artista-video-block {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jv-artista-video-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 0.36px;
    color: #FFFFFF;
    margin: 0;
}

.jv-artista-video iframe, .jv-artista-video video {
    width: 100%;
    height: auto;
    border: none;
    aspect-ratio: 16 / 9;
}

.jv-artista-video a {
    background-color: #5CACCA;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
}

.jv-artista-video a:hover {
    background-color: #4a9bbd;
}

@media (max-width: 900px) {
    .jv-artista-top {
        grid-template-columns: 1fr;
    }

    .jv-artista-content {
        padding: 0;
    }

    .jv-artista-media {
        min-height: 260px;
    }
}

.jv-concierto-content {
    max-width: 1280px;
    margin: 94px auto 94px;
    padding: 0;
}

/* Informacion del concierto al final */
.jv-concierto-info {
    max-width: 1280px;
    margin: 80px auto 120px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 58px;
}

.jv-info-section {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.jv-info-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
}

.jv-info-title i {
    color: #5CACCA;
    font-size: 34px;
}

.jv-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

.jv-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jv-info-bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background-color: #5CACCA;
    border-radius: 50%;
    color: #000000;
    font-size: 9px;
    flex-shrink: 0;
}

.jv-info-label {
    opacity: 0.9;
}

.jv-info-note {
    margin: 0;
}

.jv-info-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.jv-info-cta {
    background: #5CACCA;
    color: #FFFFFF;
    padding: 19px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    /*min-height: 58px;*/
    max-width: 252px;
    text-transform: uppercase;
    letter-spacing: 0.036px;
    /*width: 100%;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.jv-info-cta-group{

}

.jv-info-cta-group .jv-info-cta {
    width: auto;
    flex: 1 1 200px;
}

.jv-info-iframe {
    flex: 1 1 100%;
    width: 100%;
}

.jv-info-iframe iframe {
    width: 100%;
    min-height: 520px;
    border: 0;
    border-radius: 12px;
    background: #111;
}

.jv-info-cta:hover {
    background: #4a9bbd;
}

@media (max-width: 900px) {
    .jv-concierto-info {
        margin: 60px auto 90px;
    }

    .jv-info-title {
        font-size: 28px;
        line-height: 34px;
    }
}

.jv-conciertos-list {
    max-width: 1280px;
    /*margin: 40px auto 94px auto;*/
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    padding: 0 0px;
}

.jv-concierto-card {
    position: relative;
    border-radius: 17px;
    overflow: hidden;
    min-height: 600px;
    background-color: #111;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    /* Para apilar el overlay y el inner */
    justify-content: flex-end;
    /* Para empujar el contenido hacia abajo */
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.jv-concierto-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(47, 46, 46, 0) 0%, rgba(47, 46, 46, 0.45) 45%, rgba(47, 46, 46, 0.8) 100%);
    border-radius: 17px;
    z-index: 0;
}

.jv-concierto-card-inner {
    position: relative;
    z-index: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.jv-concierto-card-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(20, 20, 20, 0.44);
    color: #FFFFFF;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0px 5px 50px 0px rgba(52, 52, 52, 0.03);
    text-decoration: none;
    align-self: flex-start;
    margin-bottom: auto;
    width: 200px;
    height: 205px;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

.jv-card-date-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* No hay gap entre día y fecha en Figma */
}

.jv-card-day {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    display: block;
}

.jv-card-date {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    display: block;
    color: #FFFFFF;
}

.jv-card-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #FFFFFF;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.jv-card-arrow i {
    /* Styles inherited from parent: font-size: 20px, color: #111 */
}

.jv-concierto-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0.3px;
    color: #FCFCFC;
    margin: 0;
}

.jv-concierto-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #FCFCFC;
}

.jv-card-location,
.jv-card-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*backdrop-filter: blur(10px); */
}

.jv-card-location::before {
    content: "";
    width: 12px;
    /* Del Figma (Vector) */
    height: 16px;
    /* Del Figma (Vector) */
    background: url('data:image/svg+xml;utf8,<svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 1.5C3.75 1.5 2 3.25 2 5.5C2 8.7 6 14.5 6 14.5S10 8.7 10 5.5C10 3.25 8.25 1.5 6 1.5Z" stroke="%23FCFCFC" stroke-width="1.4"/><circle cx="6" cy="5.5" r="1.5" stroke="%23FCFCFC" stroke-width="1.4"/></svg>') no-repeat center;
    /* SVG de location del Figma */
    background-size: contain;
}

.jv-card-time::before {
    content: "";
    width: 18px;
    /* Del Figma (Vector) */
    height: 18px;
    /* Del Figma (Vector) */
    background: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="9" cy="9" r="7.5" stroke="%23FCFCFC" stroke-width="1.4"/><path d="M9 4.5V9L11.7 10.6" stroke="%23FCFCFC" stroke-width="1.4" stroke-linecap="round"/></svg>') no-repeat center;
    /* SVG de tiempo del Figma */
    background-size: contain;
}

.jv-concierto-card-cta {
    background: #5CACCA;
    color: #FFFFFF;
    text-align: center;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.036px;
    width: 100%;
}

.jv-concierto-card-cta:hover {
    background: #4a9bbd;
}

.jv-conciertos-empty {
    max-width: 1280px;
    margin: 20px auto;
    color: #FFFFFF;
    padding: 0 20px;
}

/* Estilos para el footer y patrocinadores si se incluyen en el jv-concierto-page */
.jv-concierto-page .Patrocinadores {
    background-color: #5CACCA;
    padding: 38px 0 50px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jv-concierto-page .Patrocinadores>div {
    display: flex;
    gap: 41px;
    flex-wrap: wrap;
    justify-content: center;
}

.jv-concierto-page .Patrocinadores p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    /* Light */
    font-size: 10px;
    line-height: 24px;
    letter-spacing: -0.25px;
    color: #FFFFFF;
    text-align: center;
}

.jv-concierto-page .Patrocinadores img {
    max-height: 34px;
    /* Ajusta el tamaño de los logos */
    width: auto;
}


@media (max-width: 900px) {
    .jv-conciertos-list {
        grid-template-columns: 1fr;
    }

    .jv-concierto-card {
        min-height: 520px;
    }
}


.single-jv_concierto div#head {
    background: none;
}

.single-jv_concierto div#head:before {
    display: none;
}

.single-jv_concierto div#subheader__info {
    display: none;
}

.single-jv_concierto #subheader .e-con-inner {
    padding: 0;
}
