/* CapitalPress - Original Theme CSS */
:root {
            --bg-bone: #FAF9F6;
            --text-dark: #2C2C2C;
            --text-light: #7A7A7A;
            --accent-earth: #A89F91;
            --image-placeholder: #EAE7E0;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: var(--bg-bone);
            color: var(--text-dark);
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }

        /* Contenedor central muy estrecho para lectura enfocada */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* HEADER — injected by components.js */
        header {
            padding: 0;
        }

        /* Main content spacing below sticky header */
        main, .container > section:first-child, .focus-section {
            margin-top: 40px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 40px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            transition: color 0.4s ease;
        }

        nav a:hover {
            color: var(--text-dark);
        }

        /* TOP SECTION: FOCO ÚNICO */
        .focus-section {
            margin-bottom: 120px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-image {
            width: 100%;
            aspect-ratio: 16/9;
            background-color: var(--image-placeholder);
            margin-bottom: 40px;
            border-radius: 2px;
        }

        .category-label {
            color: var(--accent-earth);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            display: block;
        }

        .focus-section h1 {
            font-size: 2.8rem;
            font-weight: 300;
            line-height: 1.2;
            max-width: 800px;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .focus-section p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* GRID SECTION: 2 COLUMNAS MÁXIMO */
        .minimal-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 80px;
            margin-bottom: 120px;
        }

        .minimal-card {
            display: flex;
            flex-direction: column;
        }

        .card-image {
            width: 100%;
            aspect-ratio: 4/5; /* Formato retrato para contraste */
            background-color: var(--image-placeholder);
            margin-bottom: 30px;
            border-radius: 2px;
        }

        .minimal-card h2 {
            font-size: 1.6rem;
            font-weight: 400;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .minimal-card p {
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .read-link {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-bottom: 1px solid var(--accent-earth);
            padding-bottom: 4px;
            align-self: flex-start;
            transition: border-color 0.3s ease;
        }

        .read-link:hover {
            border-color: var(--text-dark);
        }

        /* FOOTER LIGERO */
        footer {
            text-align: center;
            padding: 80px 0 60px 0;
            border-top: 1px solid #EAE7E0;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.8rem;
            letter-spacing: 1px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--text-dark);
        }

        /* RESPONSIVE */
        @media (max-width: 800px) {
            .minimal-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .focus-section h1 {
                font-size: 2.2rem;
            }
            nav ul {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
        }