/**
 * REVISTAGALA Magazine Layout Styles - MOBILE FIRST
 *
 * IMPORTANT: All styles scoped to body.home .rg-home
 * NO regressions on single posts, archives, search, etc.
 *
 * @package REVISTAGALA
 * @since 2.0.0
 */

/* ===================================
   CSS Custom Properties - Magazine Design System
   =================================== */
body.home .rg-home {
    /* Colors - Magazine palette */
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #4a4a4a;
    --color-text-meta: #888888;
    --color-border: #e5e5e5;
    --color-border-subtle: #f5f5f5;
    --color-accent: #c9a961;
    --color-link-hover: #2c2c2c;
    /* IMPROVED: Stronger overlay gradient for better contrast */
    --color-overlay: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 80%, transparent 100%);

    /* Typography - Magazine fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes - Fluid Typography with clamp() */
    --text-hero-title: clamp(2rem, 5vw, 3rem);
    --text-hero-excerpt: clamp(1rem, 2.5vw, 1.25rem);
    --text-secondary-title: clamp(1.125rem, 3vw, 1.5rem);
    --text-section-title: clamp(1.375rem, 3.5vw, 1.75rem);
    --text-card-title: clamp(1rem, 2vw, 1.125rem);
    --text-body: clamp(0.9375rem, 2vw, 1rem);
    --text-meta: clamp(0.8125rem, 1.5vw, 0.875rem);
    --text-small: clamp(0.75rem, 1.5vw, 0.8125rem);

    /* Spacing - Fluid Spacing */
    --space-xs: clamp(0.375rem, 1vw, 0.5rem);
    --space-sm: clamp(0.75rem, 2vw, 1rem);
    --space-md: clamp(1rem, 2.5vw, 1.5rem);
    --space-lg: clamp(1.25rem, 3vw, 2rem);
    --space-xl: clamp(1.5rem, 4vw, 3rem);
    --space-2xl: clamp(2rem, 5vw, 4rem);
    --space-3xl: clamp(2.5rem, 6vw, 6rem);

    /* Layout */
    --max-width: 1280px;
    --sidebar-width: 340px;
    --content-padding: clamp(1rem, 3vw, 1.5rem);

    /* Effects */
    --border-radius: 8px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   Base & Reset - Mobile First
   =================================== */
body.home .rg-home {
    font-family: var(--font-sans);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

body.home .rg-home a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color var(--transition);
}

body.home .rg-home a:hover {
    color: var(--color-link-hover);
}
/* ===================================
   Home Layout - Spacing from global header
   =================================== */
/* Spacing entre header global (nav) y contenido de homepage */
body.home .rg-home {
    padding-top: clamp(18px, 3vw, 32px);
}

/* Ajuste para admin bar (WordPress logged-in users) */
/* NO necesario en este theme ya que header no es fixed/sticky */
/* Se incluye solo como documentación para futuras modificaciones */
@media (min-width: 783px) {
    body.admin-bar.home .rg-home {
        /* padding-top: calc(clamp(18px, 3vw, 32px) + 32px); */
        /* Descomentar solo si header se vuelve sticky */
    }
}


/* ===================================
   Masthead - Site Branding (NOT H1 semantically anymore)
   =================================== */
body.home .rg-home .revistagala-masthead {
    text-align: center;
    padding: var(--space-lg) var(--content-padding);
    border-bottom: 3px double var(--color-border);
    margin-bottom: var(--space-xl);
}

body.home .rg-home .revistagala-masthead__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0 0 var(--space-xs) 0;
    text-transform: uppercase;
}

body.home .rg-home .revistagala-masthead__title a {
    color: var(--color-text-primary);
    text-decoration: none;
}

/* Custom Logo Support */
body.home .rg-home .revistagala-masthead__logo {
    margin: 0 0 var(--space-sm) 0;
}

body.home .rg-home .revistagala-masthead__logo .custom-logo-link {
    display: inline-block;
}

body.home .rg-home .revistagala-masthead__logo .custom-logo {
    max-height: clamp(50px, 10vw, 100px);
    width: auto;
    height: auto;
}

body.home .rg-home .revistagala-masthead__tagline {
    font-size: var(--text-small);
    color: var(--color-text-meta);
    margin: 0 0 var(--space-sm) 0;
    font-style: italic;
}

body.home .rg-home .revistagala-masthead__date {
    font-size: var(--text-small);
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ===================================
   Utility Classes
   =================================== */
body.home .rg-home .rg-line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.home .rg-home .rg-line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.home .rg-home .rg-kicker {
    font-size: var(--text-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===================================
   Hero Section - Mobile First (375px+)
   =================================== */
body.home .rg-home .revistagala-hero-section {
    max-width: var(--max-width);
    margin: 0 auto var(--space-2xl) auto;
    padding: 0 var(--content-padding);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Hero Main */
body.home .rg-home .revistagala-hero-main {
    position: relative;
    width: 100%;
}

body.home .rg-home .revistagala-hero-main__image-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: var(--space-sm);
}

body.home .rg-home .revistagala-hero-main__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

body.home .rg-home .revistagala-hero-main__image-wrapper:hover .revistagala-hero-main__image {
    transform: scale(1.03);
}

/* REMOVED: overlay no longer needed */
body.home .rg-home .revistagala-hero-main__overlay {
    display: none;
}

/* CHANGED: content now below image (not overlaid) */
body.home .rg-home .revistagala-hero-main__content {
    position: relative;
    padding: 0;
    color: var(--color-text-primary);
}

body.home .rg-home .revistagala-hero-main__category {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: var(--text-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

/* CRITICAL: Solo UN H1 en toda la página (el del hero principal) */
body.home .rg-home .revistagala-hero-main__title {
    font-family: var(--font-serif);
    font-size: var(--text-hero-title);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--space-sm) 0;
}

body.home .rg-home .revistagala-hero-main__title a {
    color: var(--color-text-primary);
    text-decoration: none;
}

body.home .rg-home .revistagala-hero-main__title a:hover {
    color: var(--color-link-hover);
}

body.home .rg-home .revistagala-hero-main__excerpt {
    font-family: var(--font-sans);
    font-size: var(--text-hero-excerpt);
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.home .rg-home .revistagala-hero-main__meta {
    font-size: var(--text-small);
    color: var(--color-text-meta);
}

/* Hero Secondary - Mobile: Stack */
body.home .rg-home .revistagala-hero-secondary {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

body.home .rg-home .revistagala-hero-secondary__item {
    display: flex;
    flex-direction: column;
}

body.home .rg-home .revistagala-hero-secondary__image-wrapper {
    display: block;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: var(--space-sm);
    aspect-ratio: 16 / 9;
}

body.home .rg-home .revistagala-hero-secondary__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

body.home .rg-home .revistagala-hero-secondary__image-wrapper:hover .revistagala-hero-secondary__image {
    transform: scale(1.03);
}

body.home .rg-home .revistagala-hero-secondary__category {
    display: inline-block;
    font-size: var(--text-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

body.home .rg-home .revistagala-hero-secondary__title {
    font-family: var(--font-serif);
    font-size: var(--text-secondary-title);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--space-xs) 0;
}

body.home .rg-home .revistagala-hero-secondary__title a {
    color: var(--color-text-primary);
}

body.home .rg-home .revistagala-hero-secondary__date {
    font-size: var(--text-small);
    color: var(--color-text-meta);
}

/* ===================================
   Main Layout - Mobile First (Content + Sidebar)
   =================================== */
body.home .rg-home .revistagala-magazine-layout {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

/* Content primary - Order 1 on mobile */
body.home .rg-home .revistagala-content-primary {
    order: 1;
}

/* Sidebar - Order 2 on mobile (appears AFTER content) */
body.home .rg-home .revistagala-sidebar {
    order: 2;
}

/* ===================================
   Featured Cards - Mobile First
   =================================== */
body.home .rg-home .revistagala-featured-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

body.home .rg-home .revistagala-magazine-card {
    display: flex;
    flex-direction: column;
}

body.home .rg-home .revistagala-magazine-card__image-wrapper {
    display: block;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: var(--space-sm);
    box-shadow: var(--box-shadow);
    aspect-ratio: 16 / 9;
}

body.home .rg-home .revistagala-magazine-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

body.home .rg-home .revistagala-magazine-card__image-wrapper:hover .revistagala-magazine-card__image {
    transform: scale(1.03);
}

body.home .rg-home .revistagala-magazine-card__category {
    display: inline-block;
    font-size: var(--text-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

body.home .rg-home .revistagala-magazine-card__title {
    font-family: var(--font-serif);
    font-size: var(--text-card-title);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 var(--space-xs) 0;
}

body.home .rg-home .revistagala-magazine-card__title a {
    color: var(--color-text-primary);
}

body.home .rg-home .revistagala-magazine-card__excerpt {
    font-size: var(--text-body);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-xs);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.home .rg-home .revistagala-magazine-card__date {
    font-size: var(--text-small);
    color: var(--color-text-meta);
}

/* ===================================
   Sidebar - Mobile First
   =================================== */
body.home .rg-home .revistagala-sidebar__module {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

body.home .rg-home .revistagala-sidebar__module:last-child {
    border-bottom: none;
}

body.home .rg-home .revistagala-sidebar__title {
    font-family: var(--font-serif);
    font-size: var(--text-section-title);
    font-weight: 700;
    margin: 0 0 var(--space-md) 0;
    color: var(--color-text-primary);
}

/* Most Read */
body.home .rg-home .revistagala-most-read__list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: most-read;
}

body.home .rg-home .revistagala-most-read__item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border-subtle);
    counter-increment: most-read;
}

body.home .rg-home .revistagala-most-read__item:last-child {
    border-bottom: none;
}

body.home .rg-home .revistagala-most-read__number {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-border);
    line-height: 1;
    flex-shrink: 0;
    width: clamp(32px, 8vw, 40px);
}

body.home .rg-home .revistagala-most-read__number::before {
    content: "0" counter(most-read);
}

body.home .rg-home .revistagala-most-read__thumb {
    flex-shrink: 0;
    width: clamp(56px, 15vw, 60px);
    height: clamp(56px, 15vw, 60px);
    border-radius: 4px;
    overflow: hidden;
}

body.home .rg-home .revistagala-most-read__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.home .rg-home .revistagala-most-read__content {
    flex: 1;
    min-width: 0;
}

body.home .rg-home .revistagala-most-read__title {
    font-family: var(--font-sans);
    font-size: var(--text-meta);
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.home .rg-home .revistagala-most-read__title a {
    color: var(--color-text-primary);
}

body.home .rg-home .revistagala-most-read__title a:hover {
    text-decoration: underline;
}

body.home .rg-home .revistagala-most-read__item time {
    font-size: var(--text-small);
    color: var(--color-text-meta);
}

/* Sidebar Lists (Opinion, Editor Picks) */
body.home .rg-home .revistagala-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.home .rg-home .revistagala-sidebar__list-item {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border-subtle);
}

body.home .rg-home .revistagala-sidebar__list-item:last-child {
    border-bottom: none;
}

body.home .rg-home .revistagala-sidebar__list-thumb {
    margin-bottom: var(--space-xs);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
}

body.home .rg-home .revistagala-sidebar__list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.home .rg-home .revistagala-sidebar__list-title {
    font-family: var(--font-sans);
    font-size: var(--text-meta);
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.home .rg-home .revistagala-sidebar__list-title a {
    color: var(--color-text-primary);
}

body.home .rg-home .revistagala-sidebar__list-meta {
    font-size: var(--text-small);
    color: var(--color-text-meta);
}

body.home .rg-home .revistagala-sidebar__author {
    margin-right: var(--space-xs);
}

/* ===================================
   Magazine Sections - Mobile First
   =================================== */
body.home .rg-home .revistagala-magazine-section {
    margin-bottom: var(--space-2xl);
}

body.home .rg-home .revistagala-magazine-section__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    border-bottom: 2px solid var(--color-text-primary);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-lg);
}

body.home .rg-home .revistagala-magazine-section__title {
    font-family: var(--font-serif);
    font-size: var(--text-section-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--color-text-primary);
}

body.home .rg-home .revistagala-magazine-section__link {
    font-size: var(--text-meta);
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    align-self: flex-start;
}

body.home .rg-home .revistagala-magazine-section__link:hover {
    color: var(--color-link-hover);
    text-decoration: underline;
}

/* Section Content - Mobile: Stack */
body.home .rg-home .revistagala-magazine-section__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Featured Article */
body.home .rg-home .revistagala-magazine-section__featured-link {
    display: block;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: var(--space-sm);
    aspect-ratio: 16 / 9;
}

body.home .rg-home .revistagala-magazine-section__featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

body.home .rg-home .revistagala-magazine-section__featured-link:hover .revistagala-magazine-section__featured-image {
    transform: scale(1.03);
}

body.home .rg-home .revistagala-magazine-section__featured-title {
    font-family: var(--font-serif);
    font-size: var(--text-secondary-title);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--space-sm) 0;
}

body.home .rg-home .revistagala-magazine-section__featured-title a {
    color: var(--color-text-primary);
}

body.home .rg-home .revistagala-magazine-section__featured-excerpt {
    font-size: var(--text-body);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.home .rg-home .revistagala-magazine-section__featured-date {
    font-size: var(--text-small);
    color: var(--color-text-meta);
}

/* Magazine List */
body.home .rg-home .revistagala-magazine-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.home .rg-home .revistagala-magazine-list__item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

body.home .rg-home .revistagala-magazine-list__item:last-child {
    border-bottom: none;
}

body.home .rg-home .revistagala-magazine-list__thumb {
    flex-shrink: 0;
    width: clamp(70px, 20vw, 100px);
    height: clamp(70px, 20vw, 100px);
    overflow: hidden;
    border-radius: 4px;
}

body.home .rg-home .revistagala-magazine-list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.home .rg-home .revistagala-magazine-list__content {
    flex: 1;
    min-width: 0;
}

body.home .rg-home .revistagala-magazine-list__title {
    font-family: var(--font-sans);
    font-size: var(--text-body);
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.home .rg-home .revistagala-magazine-list__title a {
    color: var(--color-text-primary);
}

body.home .rg-home .revistagala-magazine-list__date {
    font-size: var(--text-small);
    color: var(--color-text-meta);
}

/* ===================================
   Accessibility
   =================================== */
body.home .rg-home a:focus,
body.home .rg-home button:focus {
    outline: 2px solid var(--color-link-hover);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    body.home .rg-home * {
        transition: none !important;
        animation: none !important;
    }
}

/* ===================================
   TABLET: 480px+ (Small Tablet)
   =================================== */
@media (min-width: 480px) {
    /* Hero main - taller on small tablets */
    body.home .rg-home .revistagala-hero-main__image-wrapper {
        aspect-ratio: 3 / 2;
    }

    /* Featured cards - 2 columns */
    body.home .rg-home .revistagala-featured-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    /* Magazine sections header - row on tablet */
    body.home .rg-home .revistagala-magazine-section__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }
}

/* ===================================
   TABLET: 768px+ (Standard Tablet)
   =================================== */
@media (min-width: 768px) {
    /* Hero section - 12-column grid on tablet */
    body.home .rg-home .revistagala-hero-section {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: var(--space-xl);
        margin-bottom: var(--space-3xl);
    }

    /* CHANGED: hero-main takes 7 columns (instead of 8) for better balance */
    body.home .rg-home .revistagala-hero-main {
        grid-column: 1 / 8;
    }

    body.home .rg-home .revistagala-hero-main__image-wrapper {
        aspect-ratio: 16 / 9;
    }

    /* hero-secondary takes 5 columns (instead of 4) for better balance */
    body.home .rg-home .revistagala-hero-secondary {
        grid-column: 8 / 13;
        flex-direction: column;
    }

    /* Magazine sections - 2 columns on tablet */
    body.home .rg-home .revistagala-magazine-section__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    /* Even sections - Featured left */
    body.home .rg-home .revistagala-magazine-section--even .revistagala-magazine-section__featured {
        order: 1;
    }

    body.home .rg-home .revistagala-magazine-section--even .revistagala-magazine-section__list {
        order: 2;
    }

    /* Odd sections - Featured right */
    body.home .rg-home .revistagala-magazine-section--odd .revistagala-magazine-section__featured {
        order: 2;
    }

    body.home .rg-home .revistagala-magazine-section--odd .revistagala-magazine-section__list {
        order: 1;
    }

    body.home .rg-home .revistagala-magazine-section__featured-link {
        aspect-ratio: 4 / 3;
    }
}

/* ===================================
   DESKTOP: 1024px+ (Desktop)
   =================================== */
@media (min-width: 1024px) {
    /* Main layout - sidebar appears on right */
    body.home .rg-home .revistagala-magazine-layout {
        display: grid;
        grid-template-columns: 1fr var(--sidebar-width);
        gap: var(--space-2xl);
    }

    /* Content primary - Order 1 */
    body.home .rg-home .revistagala-content-primary {
        order: 1;
    }

    /* Sidebar - Order 2, sticky */
    body.home .rg-home .revistagala-sidebar {
        order: 2;
        position: sticky;
        top: var(--space-lg);
        align-self: start;
    }

    /* Featured cards - 4 columns */
    body.home .rg-home .revistagala-featured-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Magazine sections - wider featured on desktop */
    body.home .rg-home .revistagala-magazine-section__content {
        grid-template-columns: 2fr 3fr;
    }

    /* Odd sections - swap column widths */
    body.home .rg-home .revistagala-magazine-section--odd .revistagala-magazine-section__content {
        grid-template-columns: 3fr 2fr;
    }
}

/* ===================================
   LARGE DESKTOP: 1280px+
   =================================== */
@media (min-width: 1280px) {
    /* Hero main - cinematic ratio */
    body.home .rg-home .revistagala-hero-main__image-wrapper {
        aspect-ratio: 21 / 9;
    }

    /* Magazine list items - larger thumbnails */
    body.home .rg-home .revistagala-magazine-list__thumb {
        width: 120px;
        height: 120px;
    }

    /* Most read - larger thumbnails */
    body.home .rg-home .revistagala-most-read__thumb {
        width: 70px;
        height: 70px;
    }

    body.home .rg-home .revistagala-most-read__number {
        width: 48px;
    }
}
