:root {
    --title-font-desktop: clamp(1.6rem, 4vw, 2.6rem);
    --title-font-mobile: clamp(1.2rem, 5vw, 1.8rem);
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.bcr-banner-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /* La imagen de fondo ahora se aplica directamente en el HTML */
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.bcr-banner-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    width: 90%;
    max-width: 800px;
}

.post-title {
    font-size: var(--title-font-desktop);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.25;
    margin: 0;
    transition: font-size 0.1s ease-out;
}

.cta-button {
    background-color: #ffffff;
    color: #111111;
    padding: 12px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 1.5rem;
    flex-shrink: 0;
}

.firm-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.hover-content {
    display: none !important;
    /* La descripción no se muestra */
}

/* --- AJUSTES PARA MÓVILES --- */
@media (max-width: 768px) {
    .banner-content {
        padding: 15px;
    }

    .post-title {
        font-size: var(--title-font-mobile);
    }

    .cta-button {
        font-size: 0.8rem;
        padding: 8px 18px;
        margin-top: 1rem;
    }

    .firm-logo {
        max-width: 110px;
        margin-top: 1rem;
        padding-top: 0.8rem;
    }
}