/* Sección principal */
.more-about-us-section {
    background-color: #f5f5f5; /* Color de fondo */
    padding: 80px 5%;
    font-family: 'Arial', sans-serif;
}

/* Título y subtítulo */
.more-about-us-header {
    text-align: center;
    margin-bottom: 40px;
}

.more-about-us-subtitle {
    color: #888;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
}

.more-about-us-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111;
    margin-top: 10px;
}

/* Contenido con tarjetas */
.more-about-us-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom:100px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

/* Tarjetas individuales */
.more-about-card {
    flex: 1;
    background-color: #fcfcfc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/* Titulos dentro de las tarjetas */
.more-about-card h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111;
    text-align: center;
}

/* Párrafo */
.more-about-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    justify-content: left;
}

/* Enlace de escuchar episodio */
.listen-link {
    text-decoration: none;
    font-weight: bold;
    color: #0052ff;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

.listen-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .more-about-us-content {
        flex-direction: column;
        margin: 10px;
    }

    .about-card {
        width: 90%;
    }
}