/* --- ESTILOS GENERALES DEL OVERLAY --- */
.text-left{
   margin-bottom: 130px;
}

.editorial-block {
    width: 100%;
    padding: 0;
    background-color: #0e0e0e;
}

.editorial-image {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.editorial-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 80px 5%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; 
    gap: 60px;
    align-items: flex-end;
}

/* --- ESTILO Y ANIMACIÓN DE "(POP)" --- */
.pop-highlight {
    display: inline-block;
    color: #e43e01;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: pop-pulse 2s infinite ease-in-out;
}

@keyframes pop-pulse {
    0% { transform: scale(1); filter: brightness(1); }
    10% { transform: scale(1.2); filter: brightness(1.5); text-shadow: 0 0 20px rgba(255, 0, 0, 0.8); }
    20% { transform: scale(1); filter: brightness(1); }
    100% { transform: scale(1); }
}

/* Resto de estilos descriptivos */
.block-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 0.9;
    margin: 0;
	letter-spacing: -7px;
}

.block-desc {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .editorial-text-overlay {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    .editorial-image { height: 75vh; }
	
	.text-left{
   margin-bottom: 0px;
}
}