/* ===============================
   ESTILOS ESPECÍFICOS MULTIMEDIA
   Página 4 - audio y vídeo
   =============================== */

/* Capa interna multimedia */
#capa-multimedia {
    margin-top: 20px;
    padding: 15px;
    border: 2px solid #267ba3;
    border-radius: 10px;
    background-color: #f9f9f9;
}

/* Títulos dentro de multimedia */
#capa-multimedia h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #15516c;
    border-bottom: 2px solid #267ba3;
    padding-bottom: 5px;
}

#capa-multimedia h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #267ba3;
}

/* Listas de enlaces */
#multimedia-enlaces ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

#multimedia-enlaces li {
    margin-bottom: 6px;
}

/* Bloque de audios */
.bloque-audios {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    margin-bottom: 25px;
}

.audio-item {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    width: 250px;
    text-align: center;
}

/* Bloque de vídeos */
.bloque-videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.video-item {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    width: 340px;
    text-align: center;
}

/* Vídeos */
.video-item video {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid #aaa;
}

/* Audios */
.audio-item audio {
    width: 100%;
}

/* Pequeña mejora visual de los enlaces */
#multimedia-enlaces a {
    color: #15516c;
    font-weight: bold;
    text-decoration: none;
}

#multimedia-enlaces a:hover {
    text-decoration: underline;
}
