/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-0vmjgqegse] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-0vmjgqegse] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.footer-publico[b-0vmjgqegse] {
    width: 100%;
    margin-top: auto;
    color: white;
    background: #3f4549;
}

.footer-publico-enlaces[b-0vmjgqegse] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

    .footer-publico-enlaces a[b-0vmjgqegse] {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 60px;
        padding: 1rem;
        color: white;
        font-size: 0.91rem;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        transition: color 0.2s ease, background 0.2s ease;
    }

        .footer-publico-enlaces a:hover[b-0vmjgqegse] {
            color: white;
            background: rgba(255, 255, 255, 0.09);
        }

        .footer-publico-enlaces a.active[b-0vmjgqegse] {
            color: #ffb5ad;
            background: rgba(0, 0, 0, 0.12);
        }

.footer-publico-copy[b-0vmjgqegse] {
    padding: 0.7rem 1rem;
    color: rgba(255, 255, 255, 0.55);
    background: #34393d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    text-align: center;
}

@media (max-width: 650px) {
    .footer-publico-enlaces[b-0vmjgqegse] {
        grid-template-columns: 1fr;
    }

        .footer-publico-enlaces a[b-0vmjgqegse] {
            min-height: 48px;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

            .footer-publico-enlaces a:last-child[b-0vmjgqegse] {
                border-bottom: 0;
            }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ft7y5nh9vn],
.components-reconnect-repeated-attempt-visible[b-ft7y5nh9vn],
.components-reconnect-failed-visible[b-ft7y5nh9vn],
.components-pause-visible[b-ft7y5nh9vn],
.components-resume-failed-visible[b-ft7y5nh9vn],
.components-rejoining-animation[b-ft7y5nh9vn] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ft7y5nh9vn],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ft7y5nh9vn],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ft7y5nh9vn],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ft7y5nh9vn],
#components-reconnect-modal.components-reconnect-retrying[b-ft7y5nh9vn],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ft7y5nh9vn],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ft7y5nh9vn],
#components-reconnect-modal.components-reconnect-failed[b-ft7y5nh9vn],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ft7y5nh9vn] {
    display: block;
}


#components-reconnect-modal[b-ft7y5nh9vn] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ft7y5nh9vn 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ft7y5nh9vn 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ft7y5nh9vn 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ft7y5nh9vn]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ft7y5nh9vn 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ft7y5nh9vn {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ft7y5nh9vn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ft7y5nh9vn {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ft7y5nh9vn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ft7y5nh9vn] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ft7y5nh9vn] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ft7y5nh9vn] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ft7y5nh9vn] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ft7y5nh9vn] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ft7y5nh9vn] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ft7y5nh9vn 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ft7y5nh9vn] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ft7y5nh9vn {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Admin/Lugares/Index.razor.rz.scp.css */
/* CSS for Index component */
.acciones[b-ml6as1si45] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    white-space: nowrap;
}

.accion-btn[b-ml6as1si45] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 105px;
    min-height: 36px;
    padding: 0.45rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 7px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 650;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

    .accion-btn:hover[b-ml6as1si45] {
        text-decoration: none;
        transform: translateY(-1px);
    }

/* Editar */

.accion-editar[b-ml6as1si45] {
    color: #1e4f7a;
    background: #eaf3fa;
    border-color: #c5dced;
}

    .accion-editar:hover[b-ml6as1si45] {
        color: #173d5e;
        background: #d8ebf7;
    }

/* Ver */

.accion-ver[b-ml6as1si45] {
    color: #55437a;
    background: #f0ebf8;
    border-color: #d9cdec;
}

    .accion-ver:hover[b-ml6as1si45] {
        color: #41325e;
        background: #e4daf3;
    }

/* Activar o desactivar */

.accion-estado[b-ml6as1si45] {
    color: #6b530a;
    background: #fff6d8;
    border-color: #ead78b;
}

    .accion-estado:hover[b-ml6as1si45] {
        color: #514006;
        background: #ffedb3;
    }

/* Eliminar, si existe */

.accion-eliminar[b-ml6as1si45] {
    color: #9d2920;
    background: #fcebea;
    border-color: #efc4c0;
}

    .accion-eliminar:hover[b-ml6as1si45] {
        color: #7e1f18;
        background: #f8d8d5;
    }
/* /Components/Pages/Admin/Noticias/Index.razor.rz.scp.css */
/* CSS for Index component */
.acciones[b-7e1qxy2nxy] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    white-space: nowrap;
}

.accion-btn[b-7e1qxy2nxy] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    min-width: 96px;
    min-height: 36px;
    padding: 0.45rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 7px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 650;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

    .accion-btn:hover[b-7e1qxy2nxy] {
        text-decoration: none;
        transform: translateY(-1px);
    }

/* Editar */

.accion-editar[b-7e1qxy2nxy] {
    color: #1e4f7a;
    background: #eaf3fa;
    border-color: #c5dced;
}

    .accion-editar:hover[b-7e1qxy2nxy] {
        color: #173d5e;
        background: #d8ebf7;
    }

/* Ver */

.accion-ver[b-7e1qxy2nxy] {
    color: #55437a;
    background: #f0ebf8;
    border-color: #d9cdec;
}

    .accion-ver:hover[b-7e1qxy2nxy] {
        color: #41325e;
        background: #e4daf3;
    }

/* Publicar o despublicar */

.accion-publicar[b-7e1qxy2nxy] {
    color: #6b530a;
    background: #fff6d8;
    border-color: #ead78b;
}

    .accion-publicar:hover[b-7e1qxy2nxy] {
        color: #514006;
        background: #ffedb3;
    }

/* Eliminar */

.accion-eliminar[b-7e1qxy2nxy] {
    color: #9d2920;
    background: #fcebea;
    border-color: #efc4c0;
}

    .accion-eliminar:hover[b-7e1qxy2nxy] {
        color: #7e1f18;
        background: #f8d8d5;
    }
/* /Components/Pages/Home.razor.rz.scp.css */
/* CSS for Home component */
/* ========================================================
       HERO
       ======================================================== */

.home-hero[b-hstef0dvtq] {
    width: 100%;
}

.home-hero-imagen[b-hstef0dvtq] {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 1;
    min-height: 0;
    background-image: url('/images/cabecera.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-hero-overlay[b-hstef0dvtq] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 1rem 1.4rem;
    background: linear-gradient( to top, rgba(10, 10, 20, 0.72) 0%, rgba(10, 10, 20, 0.18) 28%, transparent 50% );
    text-align: center;
}

.home-hero-etiqueta[b-hstef0dvtq] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    color: white;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    backdrop-filter: blur(5px);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

/* ========================================================
           ACCESOS RÁPIDOS
           ======================================================== */

.home-accesos[b-hstef0dvtq] {
    background: white;
    border-bottom: 1px solid #ececec;
}

.home-accesos-inner[b-hstef0dvtq] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    max-width: 1280px;
    margin: 0 auto;
}

.home-acceso-redes[b-hstef0dvtq] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 205px;
    padding: 0.8rem 1.25rem;
    border-left: 1px solid #eeeeee;
}

.home-acceso-redes-texto[b-hstef0dvtq] {
    color: #777781;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.home-acceso[b-hstef0dvtq] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 1.5rem;
    color: #1a1a2e;
    border-right: 1px solid #eeeeee;
    text-decoration: none;
    transition: background 0.2s ease;
}

    .home-acceso:last-child[b-hstef0dvtq] {
        border-right: 0;
    }

    .home-acceso:hover[b-hstef0dvtq] {
        color: #c0392b;
        background: #fff7f6;
    }

.home-acceso-icono[b-hstef0dvtq] {
    font-size: 1.55rem;
}

.home-acceso strong[b-hstef0dvtq],
.home-acceso span[b-hstef0dvtq] {
    display: block;
}

.home-acceso strong[b-hstef0dvtq] {
    font-size: 0.9rem;
    font-weight: 900;
}

.home-acceso-texto > span[b-hstef0dvtq] {
    margin-top: 0.12rem;
    color: #92929b;
    font-size: 0.72rem;
}

/* ========================================================
           NOTICIAS Y EVENTOS
           ======================================================== */

.home-actualidad[b-hstef0dvtq] {
    padding: 4rem 2rem;
    background: radial-gradient( circle at 10% 0, rgba(192,57,43,0.07), transparent 25rem ), linear-gradient(180deg, #fafaf8, #f2f2ee);
}

.home-actualidad-grid[b-hstef0dvtq] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

.home-columna[b-hstef0dvtq] {
    min-width: 0;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(26,26,46,0.07);
    border-radius: 20px;
    box-shadow: 0 12px 38px rgba(26,26,46,0.1);
}

/* Misma cabecera para ambas columnas */

.home-columna-cabecera[b-hstef0dvtq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 89px;
    padding: 1.3rem 1.5rem;
    color: white;
    background: radial-gradient( circle at 95% 0, rgba(255,255,255,0.18), transparent 13rem ), linear-gradient(135deg, #c63328, #a53027);
}

.home-columna-cabecera-principal[b-hstef0dvtq] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.home-columna-icono[b-hstef0dvtq] {
    display: grid;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    place-items: center;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    font-size: 1.25rem;
}

.home-columna-antetitulo[b-hstef0dvtq] {
    display: block;
    margin-bottom: 0.2rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-columna-cabecera h2[b-hstef0dvtq] {
    margin: 0;
    color: white;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.04em;
}

.home-columna-enlace[b-hstef0dvtq] {
    display: grid;
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    place-items: center;
    color: white;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50%;
    font-size: 1.15rem;
    font-weight: 900;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .home-columna-enlace:hover[b-hstef0dvtq] {
        color: white;
        background: rgba(255,255,255,0.25);
        transform: translateX(3px);
    }

.home-columna-contenido[b-hstef0dvtq] {
    padding: 1.25rem;
}

/* ========================================================
           NOTICIAS
           ======================================================== */

.home-noticia-principal[b-hstef0dvtq] {
    overflow: hidden;
    background: #f8f8f6;
    border: 1px solid #e9e9e7;
    border-radius: 16px;
}

.home-noticia-principal-imagen[b-hstef0dvtq] {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 8;
    background: linear-gradient(135deg, #ddd, #eee);
}

    .home-noticia-principal-imagen img[b-hstef0dvtq] {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.home-noticia-principal:hover img[b-hstef0dvtq] {
    transform: scale(1.035);
}

.home-noticia-categoria[b-hstef0dvtq] {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.3rem 0.65rem;
    color: white;
    background: #c0392b;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-noticia-principal-body[b-hstef0dvtq] {
    padding: 1.2rem;
}

    .home-noticia-principal-body time[b-hstef0dvtq] {
        color: #a1a1a9;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: capitalize;
    }

    .home-noticia-principal-body h3[b-hstef0dvtq] {
        margin: 0.45rem 0 0.6rem;
        font-size: clamp(1.15rem, 2vw, 1.5rem);
        font-weight: 950;
        line-height: 1.2;
        letter-spacing: -0.035em;
    }

        .home-noticia-principal-body h3 a[b-hstef0dvtq] {
            color: #16162d;
            text-decoration: none;
        }

            .home-noticia-principal-body h3 a:hover[b-hstef0dvtq] {
                color: #c0392b;
            }

    .home-noticia-principal-body p[b-hstef0dvtq] {
        display: -webkit-box;
        margin: 0;
        overflow: hidden;
        color: #6f6f79;
        font-size: 0.85rem;
        line-height: 1.55;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

.home-noticias-lista[b-hstef0dvtq] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0.9rem;
}

.home-noticia-item[b-hstef0dvtq] {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    min-height: 92px;
    overflow: hidden;
    background: white;
    border: 1px solid #e9e9e7;
    border-radius: 13px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .home-noticia-item:hover[b-hstef0dvtq] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(26,26,46,0.1);
    }

.home-noticia-item-imagen[b-hstef0dvtq] {
    display: block;
    min-height: 92px;
    overflow: hidden;
    background: #eeeeec;
}

    .home-noticia-item-imagen img[b-hstef0dvtq] {
        width: 100%;
        height: 100%;
        min-height: 92px;
        object-fit: cover;
    }

.home-noticia-item-body[b-hstef0dvtq] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 0.7rem;
}

.home-noticia-item-categoria[b-hstef0dvtq] {
    overflow: hidden;
    color: #c0392b;
    font-size: 0.57rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-noticia-item h4[b-hstef0dvtq] {
    display: -webkit-box;
    margin: 0.25rem 0;
    overflow: hidden;
    font-size: 0.76rem;
    font-weight: 850;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

    .home-noticia-item h4 a[b-hstef0dvtq] {
        color: #17172d;
        text-decoration: none;
    }

        .home-noticia-item h4 a:hover[b-hstef0dvtq] {
            color: #c0392b;
        }

.home-noticia-item time[b-hstef0dvtq] {
    color: #a2a2aa;
    font-size: 0.62rem;
    text-transform: capitalize;
}

/* ========================================================
           EVENTOS
           ======================================================== */

.home-eventos-grid[b-hstef0dvtq] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-evento[b-hstef0dvtq] {
    min-width: 0;
    overflow: hidden;
    background: white;
    border: 1px solid #e7e7e7;
    border-radius: 15px;
    box-shadow: 0 4px 14px rgba(26,26,46,0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

    .home-evento:hover[b-hstef0dvtq] {
        transform: translateY(-3px);
        box-shadow: 0 12px 27px rgba(26,26,46,0.13);
    }

.home-evento-imagen[b-hstef0dvtq] {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e8e8e8;
}

    .home-evento-imagen img[b-hstef0dvtq] {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
    }

.home-evento:hover .home-evento-imagen img[b-hstef0dvtq] {
    transform: scale(1.04);
}

.home-evento-imagen[b-hstef0dvtq]::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient( to top, rgba(10,10,20,0.28), transparent 55% );
    pointer-events: none;
}

.home-evento-fecha[b-hstef0dvtq] {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 56px;
    color: white;
    background: #c0392b;
    border: 2px solid rgba(255,255,255,0.88);
    border-radius: 11px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.28);
    text-align: center;
}

.home-evento-dia[b-hstef0dvtq] {
    color: white;
    font-size: 1.42rem;
    font-weight: 950;
    line-height: 1;
}

.home-evento-mes[b-hstef0dvtq] {
    margin-top: 0.2rem;
    color: white;
    font-size: 0.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
}

.home-evento-gratis[b-hstef0dvtq] {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 2;
    padding: 0.3rem 0.55rem;
    color: white;
    background: #258d4f;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.17);
    font-size: 0.58rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-evento-body[b-hstef0dvtq] {
    padding: 0.9rem;
}

.home-evento-categoria[b-hstef0dvtq] {
    display: block;
    overflow: hidden;
    color: #c0392b;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-evento h3[b-hstef0dvtq] {
    display: -webkit-box;
    min-height: 2.3rem;
    margin: 0.35rem 0 0;
    overflow: hidden;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

    .home-evento h3 a[b-hstef0dvtq] {
        color: #15152c;
        text-decoration: none;
    }

        .home-evento h3 a:hover[b-hstef0dvtq] {
            color: #c0392b;
        }

.home-evento-detalles[b-hstef0dvtq] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    margin-top: 0.55rem;
    color: #888892;
    font-size: 0.68rem;
}

    .home-evento-detalles span[b-hstef0dvtq] {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.home-evento-ver[b-hstef0dvtq] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.7rem;
    color: #c0392b;
    font-size: 0.69rem;
    font-weight: 900;
    text-decoration: none;
}

    .home-evento-ver:hover[b-hstef0dvtq] {
        color: #922b21;
    }

.home-ver-todos[b-hstef0dvtq] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.1rem;
    padding: 0.75rem 1rem;
    color: #c0392b;
    background: #fff3f1;
    border: 1px solid #efd0cc;
    border-radius: 11px;
    font-size: 0.76rem;
    font-weight: 900;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

    .home-ver-todos:hover[b-hstef0dvtq] {
        color: white;
        background: #c0392b;
    }

/* ========================================================
           CONTACTO CENTRADO
           ======================================================== */

.home-contacto-contenedor[b-hstef0dvtq] {
    max-width: 1280px;
    margin: 2.5rem auto 0;
}

.home-contacto[b-hstef0dvtq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 680px);
    margin: 0 auto;
    padding: 1.75rem 2rem;
    color: white;
    background: radial-gradient( circle at 50% 0, rgba(255,255,255,0.17), transparent 14rem ), linear-gradient(135deg, #202035, #111120);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(17,17,32,0.18);
    text-align: center;
}

.home-contacto-icono[b-hstef0dvtq] {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 0.7rem;
    place-items: center;
    color: white;
    background: #c0392b;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(192,57,43,0.35);
    font-size: 1.25rem;
}

.home-contacto-etiqueta[b-hstef0dvtq] {
    color: #ffb9b1;
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-contacto strong[b-hstef0dvtq] {
    max-width: 440px;
    margin-top: 0.3rem;
    font-size: 1rem;
    line-height: 1.4;
}

.home-contacto-email[b-hstef0dvtq] {
    margin-top: 0.35rem;
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

    .home-contacto-email:hover[b-hstef0dvtq] {
        color: #ffb9b1;
    }

.home-contacto-boton[b-hstef0dvtq] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
    padding: 0.58rem 1.1rem;
    color: white;
    background: #c0392b;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .home-contacto-boton:hover[b-hstef0dvtq] {
        color: white;
        background: #a93226;
        transform: translateY(-2px);
    }

/* ========================================================
           LUGARES
           ======================================================== */

.home-lugares[b-hstef0dvtq] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.home-seccion-cabecera[b-hstef0dvtq] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.9rem;
    border-bottom: 3px solid #c0392b;
}

    .home-seccion-cabecera h2[b-hstef0dvtq] {
        margin: 0;
        color: #15152c;
        font-size: 1.55rem;
        font-weight: 950;
        letter-spacing: -0.04em;
    }

    .home-seccion-cabecera a[b-hstef0dvtq] {
        color: #c0392b;
        font-size: 0.8rem;
        font-weight: 900;
        text-decoration: none;
    }

.home-lugares-grid[b-hstef0dvtq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1rem;
}

.home-lugar[b-hstef0dvtq] {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #22223a;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

    .home-lugar:hover[b-hstef0dvtq] {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    }

    .home-lugar img[b-hstef0dvtq] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
    }

    .home-lugar:hover img[b-hstef0dvtq] {
        transform: scale(1.045);
    }

.home-lugar-placeholder[b-hstef0dvtq] {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    font-size: 2rem;
}

.home-lugar-overlay[b-hstef0dvtq] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient( to top, rgba(18,18,34,0.92), rgba(18,18,34,0.08) 70% );
}

.home-lugar-tipo[b-hstef0dvtq] {
    color: rgba(255,255,255,0.7);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.home-lugar-nombre[b-hstef0dvtq] {
    margin-top: 0.2rem;
    color: white;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.2;
}

.home-lugar-municipio[b-hstef0dvtq] {
    margin-top: 0.25rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.68rem;
}

/* ========================================================
           ESTADOS
           ======================================================== */

.home-vacio[b-hstef0dvtq] {
    display: grid;
    min-height: 220px;
    place-items: center;
    color: #999;
    background: #fafaf8;
    border: 1px dashed #d5d5d5;
    border-radius: 14px;
    text-align: center;
}

.home-cargando[b-hstef0dvtq] {
    min-height: 350px;
    background: linear-gradient( 90deg, #ececeb 25%, #f7f7f5 50%, #ececeb 75% );
    background-size: 200% 100%;
    border-radius: 14px;
    animation: home-shimmer-b-hstef0dvtq 1.5s infinite;
}

@keyframes home-shimmer-b-hstef0dvtq {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

/* ========================================================
           RESPONSIVE
           ======================================================== */

@media (max-width: 1050px) and (min-width: 821px) {
    .home-noticias-lista[b-hstef0dvtq] {
        grid-template-columns: 1fr;
    }

    .home-eventos-grid[b-hstef0dvtq] {
        grid-template-columns: 1fr;
    }

    .home-evento[b-hstef0dvtq] {
        display: grid;
        grid-template-columns: 155px minmax(0, 1fr);
    }

    .home-evento-imagen[b-hstef0dvtq] {
        height: 100%;
        min-height: 165px;
        aspect-ratio: auto;
    }
}

@media (max-width: 820px) {
    .home-actualidad-grid[b-hstef0dvtq] {
        grid-template-columns: 1fr;
    }
    /* Agenda, noticias y lugares en una fila */
    .home-accesos-inner[b-hstef0dvtq] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-acceso[b-hstef0dvtq] {
        justify-content: center;
        padding: 0.9rem 0.5rem;
        border-right: 1px solid #eeeeee;
        border-bottom: 0;
    }

        .home-acceso:nth-child(3)[b-hstef0dvtq] {
            border-right: 0;
        }
    /* Ocultamos la descripción para que quepan mejor */
    .home-acceso-texto > span[b-hstef0dvtq] {
        display: none;
    }
    /* Redes debajo, ocupando las tres columnas */
    .home-acceso-redes[b-hstef0dvtq] {
        grid-column: 1 / -1;
        min-width: 0;
        padding: 0.7rem 1rem;
        border-top: 1px solid #eeeeee;
        border-left: 0;
    }
}

@media (max-width: 600px) {
    .home-hero-imagen[b-hstef0dvtq] {
        aspect-ratio: 16 / 6;
        min-height: 0;
    }

    .home-hero-overlay[b-hstef0dvtq] {
        align-items: flex-end;
        justify-content: center;
        padding: 0 0.75rem 0.8rem;
    }

    .home-hero-etiqueta[b-hstef0dvtq] {
        max-width: calc(100% - 1rem);
        font-size: 0.58rem;
        line-height: 1.3;
    }

    .home-hero-overlay[b-hstef0dvtq] {
        padding: 1rem;
    }

    .home-hero-etiqueta[b-hstef0dvtq] {
        font-size: 0.6rem;
    }

    .home-actualidad[b-hstef0dvtq] {
        padding: 2rem 0.75rem;
    }

    .home-columna[b-hstef0dvtq] {
        border-radius: 15px;
    }

    .home-columna-cabecera[b-hstef0dvtq] {
        min-height: 78px;
        padding: 1rem;
    }

    .home-columna-icono[b-hstef0dvtq] {
        width: 40px;
        height: 40px;
    }

    .home-columna-cabecera h2[b-hstef0dvtq] {
        font-size: 1.25rem;
    }

    .home-columna-contenido[b-hstef0dvtq] {
        padding: 0.9rem;
    }

    .home-noticia-principal-imagen[b-hstef0dvtq] {
        aspect-ratio: 16 / 10;
    }

    .home-noticias-lista[b-hstef0dvtq] {
        grid-template-columns: 1fr;
    }

    .home-eventos-grid[b-hstef0dvtq] {
        grid-template-columns: 1fr;
    }

    .home-evento[b-hstef0dvtq] {
        display: grid;
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .home-evento-imagen[b-hstef0dvtq] {
        height: 100%;
        min-height: 170px;
        aspect-ratio: auto;
    }

    .home-evento-fecha[b-hstef0dvtq] {
        top: 0.5rem;
        left: 0.5rem;
        width: 46px;
        height: 50px;
    }

    .home-evento-dia[b-hstef0dvtq] {
        font-size: 1.25rem;
    }

    .home-evento-gratis[b-hstef0dvtq] {
        top: auto;
        right: auto;
        bottom: 0.5rem;
        left: 0.5rem;
    }

    .home-contacto-contenedor[b-hstef0dvtq] {
        margin-top: 1.5rem;
    }

    .home-contacto[b-hstef0dvtq] {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .home-lugares[b-hstef0dvtq] {
        padding: 2.5rem 1rem;
    }

    .home-lugares-grid[b-hstef0dvtq] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* /Components/Pages/Public/Lugares/Ficha.razor.rz.scp.css */
/* CSS for Ficha component */
/* ==========================================================
   PÁGINA
   ========================================================== */

.lugar-page[b-42ocgfchfz] {
    min-height: 100vh;
    padding: 3rem 0 5rem;
    background: radial-gradient( circle at top left, #f0f4ff 0%, transparent 35% ), radial-gradient( circle at bottom right, #f5f0ff 0%, transparent 30% ), #f8f9fc;
}

.lugar-container[b-42ocgfchfz] {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lugar-volver[b-42ocgfchfz] {
    display: inline-flex;
    margin-bottom: 1.5rem;
    color: var(--color-primario, #c0392b);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

    .lugar-volver:hover[b-42ocgfchfz] {
        color: #922b21;
    }

/* ==========================================================
   ESTADOS
   ========================================================== */

.lugar-estado[b-42ocgfchfz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 2rem;
    color: #777780;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(26,26,46,0.07);
    text-align: center;
}

.lugar-estado-icono[b-42ocgfchfz] {
    font-size: 2.2rem;
}

.lugar-estado h2[b-42ocgfchfz] {
    margin: 0.7rem 0 0.3rem;
    color: #1a1a2e;
}

.lugar-estado p[b-42ocgfchfz] {
    margin: 0.4rem 0;
}

.lugar-estado a[b-42ocgfchfz] {
    margin-top: 0.8rem;
    color: var(--color-primario, #c0392b);
    font-weight: 800;
}

/* ==========================================================
   DISTRIBUCIÓN
   ========================================================== */

.lugar-layout[b-42ocgfchfz] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 2rem;
    align-items: start;
}

.lugar-main[b-42ocgfchfz],
.lugar-sidebar[b-42ocgfchfz] {
    min-width: 0;
}

.lugar-main[b-42ocgfchfz] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lugar-sidebar[b-42ocgfchfz] {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ==========================================================
   PORTADA
   ========================================================== */

.lugar-hero[b-42ocgfchfz] {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    min-height: 220px;
    max-height: 330px;
    overflow: hidden;
    background: #dde2ee;
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.11);
}

    .lugar-hero img[b-42ocgfchfz] {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.lugar-hero-overlay[b-42ocgfchfz],
.lugar-hero-sin-imagen[b-42ocgfchfz] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.lugar-hero-overlay[b-42ocgfchfz] {
    background: linear-gradient( to top, rgba(15,15,28,0.84) 0%, rgba(15,15,28,0.25) 55%, transparent 100% );
}

.lugar-hero-sin-imagen[b-42ocgfchfz] {
    background: linear-gradient( 135deg, #1a1a2e, #34345f );
}

.lugar-hero-info[b-42ocgfchfz] {
    max-width: 90%;
    color: white;
}

.lugar-tipo[b-42ocgfchfz] {
    display: inline-flex;
    margin-bottom: 0.6rem;
    padding: 0.27rem 0.7rem;
    color: white;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.32);
    border-radius: 999px;
    backdrop-filter: blur(4px);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lugar-titulo[b-42ocgfchfz] {
    margin: 0;
    color: white;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.05em;
    text-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

.lugar-municipio[b-42ocgfchfz] {
    margin: 0.5rem 0 0;
    color: rgba(255,255,255,0.84);
    font-size: 0.88rem;
    font-weight: 650;
}

/* ==========================================================
   BLOQUES PRINCIPALES
   ========================================================== */

.lugar-bloque[b-42ocgfchfz] {
    padding: 1.6rem;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    box-shadow: 0 5px 22px rgba(26,26,46,0.06);
}

.lugar-bloque-cabecera[b-42ocgfchfz],
.lugar-eventos-cabecera[b-42ocgfchfz] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primario, #c0392b);
}

.lugar-antetitulo[b-42ocgfchfz] {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--color-primario, #c0392b);
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lugar-bloque h2[b-42ocgfchfz],
.lugar-eventos-cabecera h2[b-42ocgfchfz] {
    margin: 0;
    color: #1a1a2e;
    font-size: 1.3rem;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.lugar-descripcion[b-42ocgfchfz] {
    color: #393941;
    font-size: 0.96rem;
    line-height: 1.8;
}

    .lugar-descripcion :deep(p)[b-42ocgfchfz] {
        margin: 0 0 1rem;
    }

    .lugar-descripcion :deep(p:last-child)[b-42ocgfchfz] {
        margin-bottom: 0;
    }

    .lugar-descripcion :deep(img)[b-42ocgfchfz] {
        max-width: 100%;
        height: auto;
    }

/* ==========================================================
   ACCIONES DE EVENTOS
   ========================================================== */

.lugar-eventos-acciones[b-42ocgfchfz] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.lugar-eventos-boton[b-42ocgfchfz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.5rem 0.85rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .lugar-eventos-boton:hover[b-42ocgfchfz] {
        transform: translateY(-1px);
    }

.lugar-eventos-secundario[b-42ocgfchfz] {
    color: #50505a;
    background: #f2f2ef;
    border-color: #ddddda;
}

    .lugar-eventos-secundario:hover[b-42ocgfchfz] {
        color: #292932;
        background: #e5e5e2;
    }

.lugar-eventos-agenda[b-42ocgfchfz] {
    color: white;
    background: var(--color-primario, #c0392b);
    border-color: var(--color-primario, #c0392b);
}

    .lugar-eventos-agenda:hover[b-42ocgfchfz] {
        color: white;
        background: #9f2f25;
    }

/* ==========================================================
   TARJETAS DE EVENTOS
   ========================================================== */

.lugar-eventos-grid[b-42ocgfchfz] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.lugar-evento-card[b-42ocgfchfz] {
    min-width: 0;
    overflow: hidden;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(26,26,46,0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

    .lugar-evento-card:hover[b-42ocgfchfz] {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(26,26,46,0.13);
    }

.lugar-evento-imagen[b-42ocgfchfz] {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e8e8e8;
}

    .lugar-evento-imagen[b-42ocgfchfz]::after {
        position: absolute;
        inset: 0;
        content: "";
        background: linear-gradient( to top, rgba(15,15,25,0.3), transparent 55% );
        pointer-events: none;
    }

    .lugar-evento-imagen img[b-42ocgfchfz] {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
    }

.lugar-evento-card:hover .lugar-evento-imagen img[b-42ocgfchfz] {
    transform: scale(1.04);
}

.lugar-evento-fecha[b-42ocgfchfz] {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 54px;
    color: white;
    background: var(--color-primario, #c0392b);
    border: 2px solid rgba(255,255,255,0.88);
    border-radius: 11px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.26);
    text-align: center;
}

.lugar-evento-dia[b-42ocgfchfz] {
    color: white;
    font-size: 1.35rem;
    font-weight: 950;
    line-height: 1;
}

.lugar-evento-mes[b-42ocgfchfz] {
    margin-top: 0.17rem;
    color: white;
    font-size: 0.59rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.07em;
}

.lugar-evento-gratuito[b-42ocgfchfz] {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 2;
    padding: 0.27rem 0.55rem;
    color: white;
    background: #23884b;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.16);
    font-size: 0.57rem;
    font-weight: 900;
    text-transform: uppercase;
}

.lugar-evento-contenido[b-42ocgfchfz] {
    padding: 1rem;
}

.lugar-evento-categoria[b-42ocgfchfz] {
    display: block;
    overflow: hidden;
    color: var(--color-primario, #c0392b);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.lugar-evento-contenido h3[b-42ocgfchfz] {
    display: -webkit-box;
    min-height: 2.4rem;
    margin: 0.35rem 0 0;
    overflow: hidden;
    color: #1a1a2e;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

    .lugar-evento-contenido h3 a[b-42ocgfchfz] {
        color: inherit;
        text-decoration: none;
    }

        .lugar-evento-contenido h3 a:hover[b-42ocgfchfz] {
            color: var(--color-primario, #c0392b);
        }

.lugar-evento-datos[b-42ocgfchfz] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.55rem;
    color: #85858f;
    font-size: 0.68rem;
}

.lugar-evento-ver[b-42ocgfchfz] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    color: var(--color-primario, #c0392b);
    font-size: 0.69rem;
    font-weight: 900;
    text-decoration: none;
}

    .lugar-evento-ver:hover[b-42ocgfchfz] {
        color: #982d24;
    }

.lugar-eventos-vacio[b-42ocgfchfz] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 150px;
    padding: 1.5rem;
    color: #87878f;
    background: #fafaf8;
    border: 1px dashed #d8d8d5;
    border-radius: 13px;
}

    .lugar-eventos-vacio > span[b-42ocgfchfz] {
        font-size: 2rem;
    }

    .lugar-eventos-vacio strong[b-42ocgfchfz] {
        display: block;
        color: #41414c;
    }

    .lugar-eventos-vacio p[b-42ocgfchfz] {
        margin: 0.2rem 0 0;
        font-size: 0.8rem;
    }

/* ==========================================================
   BLOQUES LATERALES
   ========================================================== */

.lugar-side-bloque[b-42ocgfchfz] {
    padding: 1.3rem;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 17px;
    box-shadow: 0 5px 20px rgba(26,26,46,0.06);
}

.lugar-side-titulo[b-42ocgfchfz] {
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    color: #1a1a2e;
    border-bottom: 2px solid var(--color-primario, #c0392b);
    font-size: 0.98rem;
    font-weight: 900;
}

.lugar-side-titulo-accion[b-42ocgfchfz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

    .lugar-side-titulo-accion a[b-42ocgfchfz] {
        flex-shrink: 0;
        color: var(--color-primario, #c0392b);
        font-size: 0.64rem;
        font-weight: 850;
        text-decoration: none;
    }

/* ==========================================================
   INFORMACIÓN
   ========================================================== */

.lugar-info-item[b-42ocgfchfz] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eeeeee;
}

    .lugar-info-item:first-of-type[b-42ocgfchfz] {
        padding-top: 0;
    }

    .lugar-info-item:last-child[b-42ocgfchfz] {
        padding-bottom: 0;
        border-bottom: 0;
    }

.lugar-info-label[b-42ocgfchfz] {
    color: #1a1a2e;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lugar-info-valor[b-42ocgfchfz] {
    overflow-wrap: anywhere;
    color: #5d5d67;
    font-size: 0.82rem;
    line-height: 1.45;
}

    .lugar-info-valor a[b-42ocgfchfz] {
        color: var(--color-primario, #c0392b);
        font-weight: 700;
        text-decoration: none;
    }

/* ==========================================================
   MAPA
   ========================================================== */

.lugar-mapa[b-42ocgfchfz] {
    width: 100%;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #eeeeee;
    border: 1px solid #e5e5e5;
    border-radius: 13px;
}

    .lugar-mapa iframe[b-42ocgfchfz] {
        display: block;
        width: 100%;
        height: 230px;
        border: 0;
    }

.lugar-mapa-direccion[b-42ocgfchfz] {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: #666670;
    font-size: 0.79rem;
    line-height: 1.55;
}

.lugar-mapa-pin[b-42ocgfchfz] {
    flex-shrink: 0;
}

.lugar-mapa-boton[b-42ocgfchfz] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    color: white;
    background: var(--color-primario, #c0392b);
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .lugar-mapa-boton:hover[b-42ocgfchfz] {
        color: white;
        background: #9d2f26;
        transform: translateY(-1px);
    }

/* ==========================================================
   NOTICIAS LATERALES
   ========================================================== */

.lugar-side-noticias[b-42ocgfchfz] {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.lugar-side-noticia[b-42ocgfchfz] {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eeeeee;
}

    .lugar-side-noticia:last-child[b-42ocgfchfz] {
        padding-bottom: 0;
        border-bottom: 0;
    }

.lugar-side-noticia-imagen[b-42ocgfchfz] {
    display: grid;
    width: 84px;
    height: 64px;
    overflow: hidden;
    place-items: center;
    color: #888;
    background: #eeeeec;
    border-radius: 9px;
    text-decoration: none;
}

    .lugar-side-noticia-imagen img[b-42ocgfchfz] {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.25s ease;
    }

.lugar-side-noticia:hover .lugar-side-noticia-imagen img[b-42ocgfchfz] {
    transform: scale(1.05);
}

.lugar-side-noticia-contenido[b-42ocgfchfz] {
    min-width: 0;
}

.lugar-side-noticia-categoria[b-42ocgfchfz] {
    display: block;
    overflow: hidden;
    color: var(--color-primario, #c0392b);
    font-size: 0.53rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.lugar-side-noticia h3[b-42ocgfchfz] {
    display: -webkit-box;
    margin: 0.2rem 0;
    overflow: hidden;
    font-size: 0.74rem;
    font-weight: 850;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

    .lugar-side-noticia h3 a[b-42ocgfchfz] {
        color: #1a1a2e;
        text-decoration: none;
    }

        .lugar-side-noticia h3 a:hover[b-42ocgfchfz] {
            color: var(--color-primario, #c0392b);
        }

.lugar-side-noticia time[b-42ocgfchfz] {
    color: #9999a2;
    font-size: 0.61rem;
    text-transform: capitalize;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1000px) {
    .lugar-layout[b-42ocgfchfz] {
        grid-template-columns: 1fr;
    }

    .lugar-sidebar[b-42ocgfchfz] {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .lugar-page[b-42ocgfchfz] {
        padding: 1.5rem 0 3rem;
    }

    .lugar-container[b-42ocgfchfz] {
        padding: 0 0.75rem;
    }

    .lugar-main[b-42ocgfchfz] {
        gap: 1rem;
    }

    .lugar-hero[b-42ocgfchfz] {
        aspect-ratio: 16 / 9;
        min-height: 220px;
        max-height: none;
        border-radius: 16px;
    }

    .lugar-hero-overlay[b-42ocgfchfz],
    .lugar-hero-sin-imagen[b-42ocgfchfz] {
        padding: 1.25rem;
    }

    .lugar-titulo[b-42ocgfchfz] {
        font-size: 1.8rem;
    }

    .lugar-bloque[b-42ocgfchfz] {
        padding: 1.1rem;
        border-radius: 15px;
    }

    .lugar-eventos-cabecera[b-42ocgfchfz] {
        align-items: flex-start;
        flex-direction: column;
    }

    .lugar-eventos-acciones[b-42ocgfchfz] {
        width: 100%;
        justify-content: flex-start;
    }

    .lugar-eventos-grid[b-42ocgfchfz] {
        grid-template-columns: 1fr;
    }

    .lugar-evento-card[b-42ocgfchfz] {
        display: grid;
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .lugar-evento-imagen[b-42ocgfchfz] {
        height: 100%;
        min-height: 180px;
        aspect-ratio: auto;
    }

    .lugar-evento-fecha[b-42ocgfchfz] {
        top: 0.5rem;
        left: 0.5rem;
        width: 45px;
        height: 49px;
    }

    .lugar-evento-dia[b-42ocgfchfz] {
        font-size: 1.22rem;
    }

    .lugar-evento-gratuito[b-42ocgfchfz] {
        top: auto;
        right: auto;
        bottom: 0.5rem;
        left: 0.5rem;
    }

    .lugar-side-bloque[b-42ocgfchfz] {
        padding: 1.1rem;
        border-radius: 15px;
    }

    .lugar-mapa iframe[b-42ocgfchfz] {
        height: 250px;
    }
}
/* /Components/Pages/Public/Noticias/Detalle.razor.rz.scp.css */
/* CSS for Detalle component */
.news-detail-page[b-z64j4r08b8] {
    min-height: 100vh;
    background: radial-gradient(circle at top left, #f8f1e8 0%, transparent 32%), radial-gradient(circle at bottom right, #f1e8dc 0%, transparent 28%), #fcfaf7;
    padding: 4rem 0 5rem;
}

.news-detail-container[b-z64j4r08b8] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.back-link[b-z64j4r08b8] {
    display: inline-flex;
    margin-bottom: 1.5rem;
    color: #8a5a24;
    font-weight: 800;
    text-decoration: none;
}

    .back-link:hover[b-z64j4r08b8] {
        color: #1f1a17;
    }

.news-layout[b-z64j4r08b8] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    align-items: start;
}

.main-article[b-z64j4r08b8] {
    overflow: hidden;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(226, 214, 198, .75);
    border-radius: 34px;
    box-shadow: 0 24px 70px rgba(40, 28, 18, .09);
}

.article-header[b-z64j4r08b8] {
    padding: 2.4rem 2.4rem 1.5rem;
}

.category-badge[b-z64j4r08b8] {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 1rem;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: #f4eadc;
    color: #85551e;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-header h1[b-z64j4r08b8] {
    max-width: 900px;
    margin: 0;
    color: #171310;
    font-size: clamp(1.85rem, 3.2vw, 3.15rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 850;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

@media (max-width: 600px) {
    .article-header[b-z64j4r08b8] {
        padding: 1.6rem 1.25rem 1.2rem;
    }

        .article-header h1[b-z64j4r08b8] {
            font-size: clamp(1.65rem, 8vw, 2.2rem);
            line-height: 1.14;
            letter-spacing: -0.025em;
        }
}

.lead[b-z64j4r08b8] {
    max-width: 820px;
    margin: 1.25rem 0 0;
    color: #655d56;
    font-size: 1.18rem;
    line-height: 1.75;
}

.article-meta[b-z64j4r08b8] {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    color: #83786e;
    font-size: .95rem;
}

    .article-meta span[b-z64j4r08b8]::before {
        content: "•";
        margin-right: .55rem;
    }

    .article-meta a[b-z64j4r08b8] {
        color: #8a5a24;
        font-weight: 700;
        text-decoration: none;
    }

        .article-meta a:hover[b-z64j4r08b8] {
            color: #1f1a17;
        }

.hero-image[b-z64j4r08b8] {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #ece4d8;
    overflow: hidden;
}

    .hero-image img[b-z64j4r08b8] {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.article-content[b-z64j4r08b8] {
    padding: 2.2rem 2.4rem;
    color: #2d2823;
    font-size: 1.08rem;
    line-height: 1.85;
}

    .article-content :deep(h2)[b-z64j4r08b8],
    .article-content h2[b-z64j4r08b8] {
        margin-top: 2rem;
        color: #1f1a17;
        font-size: 1.8rem;
        line-height: 1.15;
        letter-spacing: -.04em;
    }

    .article-content :deep(h3)[b-z64j4r08b8],
    .article-content h3[b-z64j4r08b8] {
        margin-top: 1.7rem;
        color: #1f1a17;
    }

    .article-content :deep(p)[b-z64j4r08b8],
    .article-content p[b-z64j4r08b8] {
        margin: 0 0 1.2rem;
    }

    .article-content :deep(a)[b-z64j4r08b8],
    .article-content a[b-z64j4r08b8] {
        color: #8a5a24;
        font-weight: 700;
    }

.tags[b-z64j4r08b8] {
    padding: 0 2.4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.tag[b-z64j4r08b8] {
    padding: .5rem .8rem;
    border-radius: 999px;
    background: #fff7eb;
    border: 1px solid #eadfce;
    color: #85551e;
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
}

    .tag:hover[b-z64j4r08b8] {
        background: #1f1a17;
        border-color: #1f1a17;
        color: white;
    }

.collection-box[b-z64j4r08b8] {
    margin: 0 2.4rem 2.4rem;
    padding: 1.2rem 1.4rem;
    border-radius: 22px;
    background: #1f1a17;
    color: #fffaf3;
}

    .collection-box span[b-z64j4r08b8] {
        display: block;
        margin-bottom: .35rem;
        color: #d7c6b1;
        font-size: .85rem;
    }

    .collection-box a[b-z64j4r08b8] {
        color: white;
        font-size: 1.1rem;
        font-weight: 900;
        text-decoration: none;
    }

.sidebar[b-z64j4r08b8] {
    position: sticky;
    top: 1.5rem;
}

.latest-box[b-z64j4r08b8] {
    padding: 1.1rem;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(226, 214, 198, .75);
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(40, 28, 18, .08);
}

.latest-title[b-z64j4r08b8] {
    margin: .3rem .3rem 1rem;
    color: #1f1a17;
    font-size: 1.2rem;
    font-weight: 950;
    letter-spacing: -.04em;
}

.latest-list[b-z64j4r08b8] {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.latest-card[b-z64j4r08b8] {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: .8rem;
    padding: .65rem;
    border-radius: 20px;
    color: inherit;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

    .latest-card:hover[b-z64j4r08b8] {
        background: #fff7eb;
        transform: translateY(-2px);
    }

.latest-image[b-z64j4r08b8] {
    width: 92px;
    height: 74px;
    overflow: hidden;
    border-radius: 16px;
    background: #ece4d8;
}

    .latest-image img[b-z64j4r08b8] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.latest-placeholder[b-z64j4r08b8] {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #9f6a2d;
    font-size: .7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.latest-meta[b-z64j4r08b8] {
    margin-bottom: .25rem;
    color: #9a6a2f;
    font-size: .75rem;
    font-weight: 800;
}

.latest-card h3[b-z64j4r08b8] {
    margin: 0;
    color: #1f1a17;
    font-size: .98rem;
    line-height: 1.22;
    letter-spacing: -.03em;
}

.state-box[b-z64j4r08b8] {
    max-width: 760px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(255,255,255,.84);
    border: 1px solid #eadfce;
    border-radius: 28px;
    color: #655d56;
}

    .state-box h2[b-z64j4r08b8] {
        margin-top: 0;
        color: #1f1a17;
    }

@media (max-width: 1050px) {
    .news-layout[b-z64j4r08b8] {
        grid-template-columns: 1fr;
    }

    .sidebar[b-z64j4r08b8] {
        position: static;
    }

    .latest-list[b-z64j4r08b8] {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .news-detail-page[b-z64j4r08b8] {
        padding-top: 2rem;
    }

    .main-article[b-z64j4r08b8] {
        border-radius: 26px;
    }

    .article-header[b-z64j4r08b8],
    .article-content[b-z64j4r08b8] {
        padding-inline: 1.3rem;
    }

    .tags[b-z64j4r08b8] {
        padding-inline: 1.3rem;
    }

    .collection-box[b-z64j4r08b8] {
        margin-inline: 1.3rem;
    }

    .latest-list[b-z64j4r08b8] {
        grid-template-columns: 1fr;
    }

    .latest-card[b-z64j4r08b8] {
        grid-template-columns: 86px 1fr;
    }

    .latest-image[b-z64j4r08b8] {
        width: 86px;
        height: 70px;
    }
}
