body {
    font-family: 'Tinos', serif;
    margin: 0;
    line-height: 1.6;
}

.header {
    background-color: #f8f8f8;
    padding: 10px 20px;
    text-align: center;
    margin: 0;
    border-bottom: 1px solid #ccc;
    width: 100%;
}

.site-title {
    display: inline-block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.5em;
    color: #808080;
}

.main-content {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column; /* Cambiado a columna para apilar elementos */
}

.article {
    width: 80%;
    max-width: 900px;
    margin: 20px 0;
    padding: 20px;
}

.article-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.hero-image {
    width: 100%; /* El contenedor de la imagen ocupa el 100% */
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content .intro {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.video-container {
    width: 100%;
    margin-bottom: 20px;
}

.video-container video {
    width: 100%;
    height: auto;
}

/* Responsividad */
@media (max-width: 768px) {
    .article {
        width: 95%;
    }
    .article-header h1 {
        font-size: 2em;
        line-height: 1.2;
    }
    .article-content .intro {
        font-size: 1em;
    }
}