        /* Estilos generales */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            margin: 0;
            padding: 0;
        }
        
        /* Contenedor principal */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 1.5rem;
            background-color: #fff;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border-radius: 16px;
        }

        /* Estilos para artículos */
        .article-container {
            padding: 2rem;
            background-color: #fff;
            border-radius: 12px;
        }

        /* Metadatos y título */
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eaeaea;
        }

        .meta-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 600;
            color: #333;
            font-size: 1.1rem;
        }

        .publish-date {
            color: #666;
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }

        .category {
            display: inline-block;
            padding: 0.4rem 1rem;
            background-color: #ff0015;
            color: white;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .article-title {
            font-size: 2.5rem;
            line-height: 1.2;
            margin: 0.5rem 0;
            color: #222;
            font-weight: 700;
        }

        .article-subtitle {
            font-size: 1.4rem;
            color: #555;
            margin-top: 0;
            margin-bottom: 2rem;
            font-weight: 400;
            line-height: 1.4;
        }

        /* Medios */
        .article-media {
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }

        .article-media:hover {
            transform: translateY(-5px);
        }

        .media-primary {
            min-height: 450px;
        }

        .media-secondary {
            min-height: 300px;
            margin-top: 3rem;
        }

        .media-content {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .media-file {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }

        .video-embed {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            background-color: #000;
        }

        .video-embed iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            border: none;
        }

        .media-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
            color: white;
            padding: 1.5rem 1rem 1rem;
            font-size: 0.95rem;
        }

        /* Contenido del artículo */
        .content-section {
            max-width: 800px;
            margin: 2.5rem auto;
            line-height: 1.8;
            font-size: 1.15rem;
            color: #444;
            padding: 0 1rem;
        }

        .content-section p {
            margin-bottom: 1.5rem;
        }

        .content-section h2, 
        .content-section h3 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .content-section a {
            color: #cc0011b6;
            text-decoration: none;
            border-bottom: 1px solid #cc0030;
            transition: all 0.2s ease;
        }

        .content-section a:hover {
            color: #99001c;
            border-bottom-color: #990024;
        }

        /* Artículos relacionados */
        .related-articles {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
            border-left: 4px solid #ff0000;
        }

        .related-title {
            margin-top: 0;
            color: #333;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }

        .related-article-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .related-article-list li {
            margin-bottom: 1rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .related-article-list li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #007bff;
            font-weight: bold;
        }

        .related-article-list a {
            color: #444;
            text-decoration: none;
            transition: color 0.2s;
            font-size: 1.05rem;
        }

        .related-article-list a:hover {
            color: #007bff;
        }

        /* URL Link Container */
        .url-container {
            padding: 20px;
            text-align: center;
            background: #f8f9fa;
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
        }

        .url-link {
            color: #cc0011;
            font-size: 1.2rem;
            text-decoration: none;
            padding: 10px 20px;
            border: 2px solid #cc0011;
            border-radius: 8px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .url-link:hover {
            background-color: #cc0011;
            color: white;
            transform: scale(1.05);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
            
            .article-container {
                padding: 1.5rem;
            }
            
            .article-title {
                font-size: 2rem;
            }
            
            .article-subtitle {
                font-size: 1.2rem;
            }
            
            .media-primary {
                min-height: 350px;
            }
            
            .media-secondary {
                min-height: 250px;
            }
            
            .content-section {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 480px) {
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .category {
                margin-top: 1rem;
            }
            
            .article-title {
                font-size: 1.8rem;
            }
            
            .media-primary, 
            .media-secondary {
                min-height: auto;
            }
        }