<style>
        /* Variables y Base */
        :root {
            --color-bg-light: #F8F0E5; /* Crema/Pergamino */
            --color-primary-dark: #4F453B; /* Marrón Oscuro */
            --color-accent-brown: #8D6E63; /* Marrón Cobre */
            --color-text-dark: #3E3832;
            --color-bg-card: #E8E0D5;
            --max-width: 1280px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-bg-light);
            color: var(--color-text-dark);
            min-height: 100vh;
            margin: 0;
            line-height: 1.6;
        }

        
        /* Sección Hero */
        .hero-section {
            background-image: url('https://placehold.co/1200x500/A0917A/fff?text=Ruinas+y+Estrellas+Cl%C3%A1sicas');
            background-size: cover;
            background-position: center;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); /* shadow-xl */
            overflow: hidden;
            padding: 2.5rem; /* p-10 */
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Media Query para Hero (md:p-20) */
        @media (min-width: 768px) {
            .hero-section {
                padding: 5rem;
            }
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: black;
            opacity: 0.3;
        }
        .hero-content {
            position: relative;
            max-width: 56rem; /* max-w-4xl */
            text-align: center;
            z-index: 10;
            padding: 1rem;
        }
        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            letter-spacing: 0.1em;
            line-height: 1.1;
            font-size: 2.25rem; /* text-4xl */
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        /* Media Queries para Título */
        @media (min-width: 640px) {
            .hero-title {
                font-size: 3rem; /* sm:text-5xl */
            }
        }
        @media (min-width: 1024px) {
            .hero-title {
                font-size: 4.5rem; /* lg:text-7xl */
            }
        }
        .hero-subtitle {
            font-size: 1.125rem; /* text-lg */
            color: white;
            margin-bottom: 2rem;
            font-weight: 300;
            max-width: 42rem; /* max-w-2xl */
            margin-left: auto;
            margin-right: auto;
        }
        .hero-button {
            display: inline-block;
            padding: 0.75rem 2rem;
            font-size: 1.125rem; /* text-lg */
            font-weight: 600;
            border-radius: 9999px; /* rounded-full */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-lg */
            transition: all 0.3s ease-in-out;
            text-decoration: none;
        }
        .hero-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        /* Secciones Comunes */
        .section-padding {
            margin-top: 4rem; /* mt-16 */
            margin-bottom: 4rem; /* mb-16 */
        }
        .section-title {
            font-size: 1.5rem; /* text-2xl */
            font-weight: 600;
            text-align: center;
            margin-bottom: 2.5rem; /* mb-10 */
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-primary-dark);
        }
        
        /* Grid de Artículos/Categorías */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* grid-cols-2 */
            gap: 2rem; /* gap-8 */
        }
        /* Media Query para Desktop (md:grid-cols-4) */
        @media (min-width: 768px) {
            .grid-container {
                grid-template-columns: repeat(4, 1fr);
            }
            .post-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        /* Media Query para Mobile (grid-cols-1) */
        @media (max-width: 639px) {
            .post-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }

        /* Bloques de Categoría/Post */
        .card-block {
            text-align: center;
            padding: 1.5rem; /* p-6 */
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
            background-color: var(--color-bg-card);
        }
        .card-icon {
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
        }
        .card-icon svg {
            width: 2.5rem; /* h-10 w-10 */
            height: 2.5rem;
            color: var(--color-accent-brown);
            stroke: currentColor;
            fill: none;
        }
        .card-title {
            font-size: 1.125rem; /* text-lg */
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: var(--color-primary-dark);
        }
        .card-description {
            font-size: 0.875rem; /* text-sm */
            color: #4B5563; /* gray-700 */
        }

        /* Bloques de Posts Dinámicos */
        .post-grid {
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }
        .post-link {
            display: block;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-in-out;
            background-color: var(--color-bg-card);
            text-decoration: none;
        }
        .post-link:hover {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            transform: scale(1.01);
        }
        .post-image-container {
            height: 10rem; /* h-40 */
            background-color: #D1D5DB; /* gray-300 */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .post-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease-in-out;
        }
        .post-link:hover .post-image {
            opacity: 0.9;
        }
        .post-content {
            padding: 1rem; /* p-4 */
        }
        .post-category {
            font-size: 0.75rem; /* text-xs */
            font-weight: 500;
            text-transform: uppercase;
            color: var(--color-accent-brown); /* text-accent */
        }
        .post-title {
            margin-top: 0.25rem; /* mt-1 */
            font-size: 1.125rem; /* text-lg */
            font-weight: 600;
            line-height: 1.375; /* leading-snug */
            color: var(--color-primary-dark);
        }
        .post-excerpt {
            margin-top: 0.5rem; /* mt-2 */
            font-size: 0.875rem; /* text-sm */
            color: #4B5563; /* text-gray-700 */
            /* Simulación de line-clamp-2 */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .post-date {
            margin-top: 0.75rem; /* mt-3 */
            font-size: 0.75rem; /* text-xs */
            color: #6B7280; /* text-gray-500 */
        }
        
        /* Mensajes de Carga/Error */
        .message-container {
            grid-column: 1 / -1; /* col-span-4 */
            text-align: center;
            font-size: 1.125rem; /* text-lg */
            padding: 2.5rem 0; /* py-10 */
        }
        .loading-message {
            color: var(--color-accent-brown);
        }

        /* Footer */
        .blog-footer {
            margin-top: 3rem; /* mt-12 */
            padding: 2.5rem 0; /* py-10 */
            border-top: 1px solid #D3C4B3;
            background-color: var(--color-bg-card);
        }
        .blog-footer-content {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
            font-size: 0.875rem; /* text-sm */
            color: #4B5563; /* text-gray-700 */
        }
        .footer-links {
            margin-top: 1rem; /* mt-4 */
            display: flex;
            justify-content: center;
            gap: 1rem; /* space-x-4 */
        }
        .footer-links a {
            color: #4B5563;
            text-decoration: none;
            transition: color 0.15s ease-in-out;
        }
        .footer-links a:hover {
            color: var(--color-accent-brown);
        }
        .footer-separator {
            color: #9CA3AF; /* gray-400 */
        }
    </style>