/* ==========================================================================
   BLOCK, WIDGET & ELEMENTOR: REQUISITOS Y DESTINATARIOS (EXF - CAJÓN DESASTRE)
   ========================================================================== */

.exf-course-requirements-block {
    font-family: inherit;
    box-sizing: border-box;
    background: transparent;
    padding: 0;
    border: none;
}

/* Grid de tarjetas */
.exf-req-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.exf-req-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.2s ease;
}

.exf-req-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.exf-req-label {
    width: 200px;
    flex-shrink: 0;
    font-size: 0.7em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
    color: inherit;
}

.exf-req-value {
    font-size: inherit;
    color: inherit;
    font-weight: 600;
    line-height: 1.5;
}

/* Texto inferior de nota */
.exf-req-notice {
    font-size: inherit;
    color: inherit;
    opacity: 0.75;
    line-height: 1.6;
    margin-top: 14px;
}

@media (max-width: 600px) {
    .exf-req-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 16px;
    }
    .exf-req-label {
        width: 100%;
    }
}
