.bq-35b57de2-card {
    display: flex;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #0f172a 0%, #1b2a4a 100%);
}

.bq-35b57de2-card.bq-35b57de2-reverse {
    flex-direction: row-reverse;
}

.bq-35b57de2-photo-container {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.bq-35b57de2-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Elegante overlay degradado para integrar la foto con el fondo de la tarjeta */
.bq-35b57de2-photo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bq-35b57de2-card:not(.bq-35b57de2-reverse) .bq-35b57de2-photo-container::after {
    background: linear-gradient(90deg, transparent 60%, rgba(15, 23, 42, 0.95) 100%);
}

.bq-35b57de2-card.bq-35b57de2-reverse .bq-35b57de2-photo-container::after {
    background: linear-gradient(-90deg, transparent 60%, rgba(27, 42, 74, 0.95) 100%);
}

.bq-35b57de2-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.bq-35b57de2-quote-icon {
    font-family: serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(56, 189, 248, 0.15);
    position: absolute;
    top: 15px;
    left: 25px;
    pointer-events: none;
}

.bq-35b57de2-text {
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.bq-35b57de2-meta {
    margin-top: auto;
}

.bq-35b57de2-author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 4px;
}

.bq-35b57de2-author-job {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividad para móviles */
@media (max-width: 767px) {
    .bq-35b57de2-card,
    .bq-35b57de2-card.bq-35b57de2-reverse {
        flex-direction: column;
    }
    
    .bq-35b57de2-photo-container {
        flex: 0 0 250px;
        height: 250px;
    }

    .bq-35b57de2-photo-container::after {
        background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.95) 100%) !important;
    }
}
