   body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        header {
            background: #333;
            color: #fff;
            padding: 1em;
            text-align: center;
        }
        nav {
            background: #444;
            color: #fff;
            padding: 1em;
            text-align: center;
        }
        nav a {
            color: #fff;
            margin: 0 10px;
            text-decoration: none;
        }
        section {
            display: flex;
            padding: 20px;
        }
        article {
            flex: 3;
            padding: 20px;
            background: #f4f4f4;
            margin-right: 20px;
        }
        aside {
            flex: 1;
            padding: 20px;
            background: #e4e4e4;
        }
        footer {
            background: #333;
            color: #fff;
            text-align: center;
            padding: 1em;
            margin-top: 20px;
        }
     .noticias-aside {
            width: 300px; /* Ajusta el ancho del aside */
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: #f9f9f9;
            font-size: 0.9em; /* Tamaño de fuente más pequeño */
        }
        .noticias-aside h3 {
            font-size: 1.2em;
            margin-bottom: 10px;
        }
        .noticias-aside p {
            margin: 10px 0;
        }
        .video-container {
            width: 100%; /* Asegura que el iframe ocupe el ancho completo del aside */
            position: relative;
            padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
            height: 0;
            overflow: hidden;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
.twitter-iframe {
            width: 100%;
            max-width: 500px; /* Ajusta el ancho según tus necesidades */
            height: 600px; /* Ajusta la altura según tus necesidades */
            border: none;
            overflow: hidden;
        }