/* ================================
   SECCIÓN CURSOS
================================ */

.seccion_curso {
    display: flex; /* Imagen + contenido en columnas */
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Permite adaptación */
}

/* Imágenes de curso */
.imagen_curso1 {
    flex: 1;
    max-width: 50%;
    background-color: #ccc;
}

.imagen_curso2 {
    flex: 1;
    max-width: 50%;
    background-color: #ccc;
}

/* Contenido textual */
.contenido_curso {
    flex: 1;
}

.contenido_curso h2 {
    font-size: xx-large;
}

/* Espaciado general de párrafos */
p {
    padding-top: 2%;
    padding-bottom: 2%;
}

/* Botón leer más */
.boton_leer {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #d9d4cc;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.boton_leer:hover {
    background-color: #f7941d;
    color: white;
}

/* Adaptabilidad mínima */
.imagen_curso,
.contenido_curso {
    min-width: 300px;
}