
        @font-face {
            font-family: 'Daily';
            src: url("src/fuentes/ds-fette-gotisch/DSFetteGotisch.ttf") format('truetype');
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        a{
            color: #333;
        }
        body {
            font-family: 'Georgia';
            background: #f5f5f0;
            color: #1a1a1a;
            line-height: 1.6;
        }

        /* Header estilo periódico */
        .newspaper-header {
            font-family: 'Daily';
            background: #fff;
            border-bottom: 4px solid #000;
            padding: 30px 20px 20px 20px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .logo-image {
            margin-bottom: -40px;
        }

        .tagline {
            font-family: 'Georgia', serif;
            font-style: italic;
            font-size: 1.1em;
            color: #666;
            margin-bottom: 5px;
        }

        .header-date {
            font-size: 0.9em;
            color: #999;
            font-family: 'Courier New', monospace;
        }

        /* Contenedor principal */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            background: #fff;
        }

        /* Página activa/inactiva */
        .page {
            display: none;
        }

        .page.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* ========================================
           ESTILOS EDITABLES DE CONTENIDO
        ======================================== */

        /* Secciones de contenido personalizable */
        .content-section {
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 2px solid #ddd;
        }

        .content-section:last-child {
            border-bottom: none;
        }

        /* Títulos de sección */
        .section-heading {
            font-family: 'Times New Roman', serif;
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #000;
            text-transform: uppercase;
            letter-spacing: 1px;
            justify-content: center;
        }

        .section-subheading {
            font-size: 1.3em;
            color: #666;
            font-style: italic;
            margin-bottom: 25px;
        }

        /* Layouts tipo periódico */
        .newspaper-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        /* Artículo individual */
        .article {
            break-inside: avoid;
            margin-bottom: 30px;
        }

        .article-image {
            width: 100%;
            height: auto;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .article-image:hover {
            opacity: 0.8;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .article-title {
            font-family: 'Times New Roman', serif;
            font-size: 1.8em;
            font-weight: bold;
            margin-bottom: 8px;
            line-height: 1.2;
            color: #000;
        }

        .article-meta {
            font-size: 0.85em;
            color: #999;
            margin-bottom: 12px;
            font-family: 'Courier New', monospace;
        }

        .article-excerpt {
            font-size: 1em;
            line-height: 1.6;
            color: #333;
            margin-bottom: 10px;
        }

        .read-more {
            color: #c00;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            font-size: 0.9em;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        /* Layout de columnas */
        .columns-2 {
            column-count: 2;
            column-gap: 40px;
            column-rule: 1px solid #ddd;
        }

        .columns-3 {
            column-count: 3;
            column-gap: 30px;
            column-rule: 1px solid #ddd;
        }

        @media (max-width: 900px) {
            .columns-2, .columns-3 {
                column-count: 1;
                column-rule: none;
            }
        }

        /* Imagen destacada grande */
        .featured-image {
            width: 100%;
            max-height: 1400px;
            object-fit: cover;
            margin-bottom: 20px;
            border: 1px solid #000;
        }

        /* Imagen flotante */
        .float-image {
            max-width: 300px;
            margin: 0 20px 20px 0;
            float: left;
            border: 1px solid #ddd;
        }

        .float-image.right {
            float: right;
            margin: 0 0 20px 20px;
        }

        /* Citas destacadas */
        .pullquote {
            font-size: 1.5em;
            font-style: italic;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid rgb(3, 107, 163);
            background: #f9f9f9;
            color: #333;
        }

        /* Divisor de sección */
        .section-divider {
            text-align: center;
            margin: 40px 0;
            font-size: 1.5em;
            color: rgb(15, 8, 8);
        }

        /* Modal para leer completo */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            overflow-y: auto;
        }

        .modal.active {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 40px 20px;
        }

        .modal-content {
            background: #fff;
            max-width: 900px;
            width: 100%;
            padding: 50px;
            position: relative;
            box-shadow: 0 10px 50px rgba(0,0,0,0.5);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2em;
            cursor: pointer;
            color: #c00;
            background: none;
            border: none;
            font-weight: bold;
        }

        .modal-close:hover {
            color: #000;
        }

        .modal-article-title {
            font-family: 'Times New Roman', serif;
            font-size: 3em;
            font-weight: bold;
            margin-bottom: 15px;
            line-height: 1.2;
            border-bottom: 3px solid #000;
            padding-bottom: 15px;
        }

        .modal-article-meta {
            font-size: 1em;
            color: #999;
            margin-bottom: 30px;
            font-family: 'Courier New', monospace;
        }

        .modal-article-content {
            font-size: 1.1em;
            line-height: 1.8;
            color: #333;
        }

        .modal-article-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            margin-bottom: 30px;
            border: 1px solid #000;
        }

        /* Botón de regreso al inicio */
        .back-home {
            display: inline-block;
            margin: 30px 0;
            padding: 12px 30px;
            background: #000;
            color: #fff;
            text-decoration: none;
            font-family: 'Times New Roman', serif;
            font-weight: bold;
            font-size: 1.1em;
            border: 2px solid #000;
            transition: all 0.3s;
        }

        .back-home:hover {
            background: #fff;
            color: #000;
        }

        /* Enlaces de navegación por imágenes */
        .nav-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .nav-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid #000;
            transition: all 0.3s;
            aspect-ratio: 4/3;
        }

        .nav-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .nav-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .nav-card:hover .nav-card-image {
            transform: scale(1.1);
        }

        .nav-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            padding: 30px 20px 20px 20px;
            color: #fff;
        }

        .nav-card-title {
            font-family: 'Times New Roman', serif;
            font-size: 1.8em;
            font-weight: bold;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            .masthead {
                font-size: 2.5em;
            }

            .section-heading {
                font-size: 2em;
            }

            .modal-content {
                padding: 30px 20px;
            }

            .modal-article-title {
                font-size: 2em;
            }

            .float-image {
                float: none;
                max-width: 100%;
                margin: 20px 0;
            }
        }
