/* ==========================================================================
   PERFIL BUSINESS — THEME STYLESHEET
   All layout and component styles. Enqueued after style.css (variables).
   ==========================================================================

   TABLE OF CONTENTS
   --------------------------------------------------------------------------
   1.  Reset & Base
   2.  Layout
   3.  Top Bar
   4.  Header & Navigation
   5.  Search Overlay
   6.  Section Headers
   7.  Cards
   8.  Hero News
   9.  Magazine Cover
   10. Editions Carousel
   11. Featured Grid
   12. Recent News
   13. Columnists
   14. Sidebar
   15. Ad Placements
   16. Footer ★
   17. Single Post
   18. Archive & Search
   19. 404
   20. Buttons & CTAs
   21. Animations & Keyframes
   22. Utilities
   23. Responsive
   ========================================================================== */


/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
}

html {
       scroll-behavior: smooth;
       -webkit-text-size-adjust: 100%;
}

body {
       line-height: 1.6;
       min-height: 100vh;
}

img {
       display: block;
       max-width: 100%;
       height: auto;
}

a {
       color: var(--text-light);
       text-decoration: none;
       transition: color var(--duration-fast, 200ms) ease;
}

a:hover {
       color: var(--gold);
}

ul,
ol {
       list-style: none;
}

button {
       font-family: inherit;
       cursor: pointer;
}

.visually-hidden {
       position: absolute;
       width: 1px;
       height: 1px;
       overflow: hidden;
       clip: rect(0, 0, 0, 0);
       white-space: nowrap;
       border: 0;
}


/* ==========================================================================
   2. LAYOUT
   ========================================================================== */
.site-container {
       max-width: var(--max-w);
       margin: 0 auto;
       padding: 0 var(--px);
}

.site-main {
       max-width: var(--max-w);
       margin: 0 auto;
}

.site-main__inner {
       padding: 0 var(--px);
}

.site-main__inner .content-sidebar-wrap {
       padding-left: 0;
       padding-right: 0;
}

.content-sidebar-wrap {
       display: grid;
       grid-template-columns: 1fr;
       gap: var(--s8);
       max-width: var(--max-w);
       margin: 0 auto;
       padding: 0 var(--px);
}

@media (min-width: 1024px) {
       .content-sidebar-wrap {
              grid-template-columns: 1fr 340px;
       }
}


/* ==========================================================================
   3. TOP BAR
   ========================================================================== */
.top-bar {
       background-color: var(--black);
       border-bottom: 1px solid rgba(255, 255, 255, 0.06);
       font-size: 11px;
       font-weight: 600;
       text-transform: uppercase;
       letter-spacing: 0.08em;
}

.top-bar-inner {
       max-width: var(--max-w);
       margin: 0 auto;
       padding: 8px var(--px);
       display: flex;
       justify-content: space-between;
       align-items: center;
}

.top-bar-left {
       color: var(--text-muted);
}

.top-bar-right {
       display: flex;
       gap: var(--s3);
}

.top-bar-right a {
       color: var(--text-muted);
       font-size: 10px;
       letter-spacing: 0.12em;
}

.top-bar-right a:hover {
       color: var(--gold);
}


/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
       background-color: var(--charcoal);
       border-bottom: 1px solid rgba(255, 255, 255, 0.05);
       position: relative;
       z-index: 100;
}

.site-header-inner {
       max-width: var(--max-w);
       margin: 0 auto;
       padding: var(--s3) var(--px);
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: var(--s4);
}

.site-branding {
       display: flex;
       align-items: center;
       gap: var(--s3);
       flex-shrink: 0;
}

.site-logo-link {
       display: flex;
       align-items: center;
       gap: var(--s2);
       text-decoration: none;
}

.site-logo-mark {
       width: 40px;
       height: 40px;
       background: var(--gold);
       border-radius: 4px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--charcoal);
}

.site-logo-mark .material-symbols-outlined {
       font-size: 22px;
}

.site-logo-img {
       height: 44px;
       width: auto;
       filter: brightness(0) invert(1);
}

.site-title {
       font-family: var(--font-display);
       font-size: 1.5rem;
       font-weight: 700;
       color: var(--white);
       margin: 0;
       line-height: 1;
       letter-spacing: -0.02em;
}

.gold {
       color: var(--gold);
}

.site-description {
       font-size: 10px;
       font-weight: 600;
       letter-spacing: 0.15em;
       text-transform: uppercase;
       color: var(--text-muted);
       margin: 0;
       display: none;
}

@media (min-width: 768px) {
       .site-description {
              display: block;
       }
}

/* Primary Navigation */
.primary-nav {
       flex: 1;
       display: flex;
       justify-content: flex-end;
}

.primary-nav ul {
       display: flex;
       align-items: center;
       gap: var(--s3);
}

.primary-nav li a {
       font-size: 11px;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 0.1em;
       color: var(--text-light);
       padding: var(--s1) 0;
       position: relative;
}

.primary-nav li a::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 0;
       height: 1px;
       background: var(--gold);
       transition: width 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-nav li a:hover::after,
.primary-nav li.current-menu-item a::after {
       width: 100%;
}

.primary-nav li.current-menu-item a {
       color: var(--white);
}

.nav-search button {
       background: none;
       border: none;
       color: var(--text-light);
       font-size: 20px;
       padding: 4px;
       transition: color 200ms;
}

.nav-search button:hover {
       color: var(--gold);
}

@media (max-width: 1023px) {
       .primary-nav ul {
              display: none;
       }
}


/* ==========================================================================
   5. SEARCH OVERLAY
   ========================================================================== */
.search-overlay {
       position: fixed;
       inset: 0;
       background: rgba(0, 0, 0, 0.92);
       backdrop-filter: blur(20px);
       z-index: 9999;
       display: flex;
       align-items: center;
       justify-content: center;
       opacity: 0;
       visibility: hidden;
       transition: opacity 400ms ease, visibility 400ms ease;
}

.search-overlay.is-open {
       opacity: 1;
       visibility: visible;
}

.search-overlay-close {
       position: absolute;
       top: var(--s4);
       right: var(--s4);
       background: none;
       border: none;
       color: var(--white);
       font-size: 28px;
       cursor: pointer;
}

.search-overlay-inner {
       width: 100%;
       max-width: 600px;
       padding: 0 var(--px);
}

.search-form {
       display: flex;
       border-bottom: 2px solid var(--gold);
}

.search-field {
       flex: 1;
       background: transparent;
       border: none;
       color: var(--white);
       font-family: var(--font-display);
       font-size: clamp(1.5rem, 4vw, 2.5rem);
       padding: var(--s2) 0;
       outline: none;
}

.search-field::placeholder {
       color: var(--text-muted);
}

.search-submit {
       background: none;
       border: none;
       color: var(--gold);
       font-size: 28px;
       cursor: pointer;
}


/* ==========================================================================
   6. SECTION HEADERS
   ========================================================================== */
.section-header-center {
       text-align: center;
       margin-bottom: var(--s6);
}

.section-kicker {
       font-size: 10px;
       font-weight: 900;
       text-transform: uppercase;
       letter-spacing: 0.25em;
       color: var(--gold);
       display: block;
       margin-bottom: var(--s1);
}

.section-sub {
       font-family: var(--font-display);
       font-size: clamp(1.25rem, 3vw, 1.75rem);
       font-weight: 700;
       color: var(--white);
       margin: 0;
       letter-spacing: -0.01em;
}


/* ==========================================================================
   7. CARDS
   ========================================================================== */
.entry-card {
       background: var(--grey-sec);
       border: 1px solid rgba(255, 255, 255, 0.05);
       border-radius: 4px;
       overflow: hidden;
       transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.entry-card a {
       display: block;
       height: 100%;
       text-decoration: none;
}

.featured-entry-card:hover {
       transform: translateY(-4px);
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image-wrap {
       aspect-ratio: 16/9;
       overflow: hidden;
       position: relative;
}

.card-image-wrap img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 500ms ease;
}

.featured-entry-card:hover .card-image-wrap img {
       transform: scale(1.05);
}

.card-content-wrap {
       padding: var(--s3);
}

.card-title {
       font-family: var(--font-display);
       font-size: 1.125rem;
       font-weight: 700;
       color: var(--white);
       line-height: 1.3;
       margin: 0 0 var(--s1);
       transition: color 200ms ease;
}

.featured-entry-card:hover .card-title {
       color: var(--gold);
}

.card-excerpt {
       font-size: 0.875rem;
       color: var(--text-light);
       margin-top: var(--s2);
       line-height: 1.5;
}

/* Category Labels */
.pb-category-label {
       font-size: 9px;
       font-weight: 900;
       text-transform: uppercase;
       letter-spacing: 0.15em;
       color: var(--cyan);
       display: inline-block;
       margin-bottom: var(--s1);
}


/* ==========================================================================
   8. HERO NEWS
   ========================================================================== */
.hero-news-section {
       margin-bottom: var(--s10);
}

.hero-news-inner {
       display: block;
       position: relative;
       border: 1px solid rgba(255, 255, 255, 0.05);
       overflow: hidden;
       border-radius: 4px;
       text-decoration: none;
}

.hero-news-image-wrap {
       aspect-ratio: 21/9;
       overflow: hidden;
}

.hero-news-image-wrap img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 1000ms ease;
}

.hero-news-inner:hover .hero-news-image-wrap img {
       transform: scale(1.03);
}

.hero-gradient {
       position: absolute;
       inset: 0;
       background: linear-gradient(0deg, var(--charcoal) 0%, rgba(18, 18, 18, 0.6) 40%, transparent 100%);
       pointer-events: none;
}

.hero-news-text-overlay {
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       padding: var(--s6) var(--s4);
       text-align: center;
       background: linear-gradient(0deg, var(--charcoal) 0%, rgba(18, 18, 18, 0.8) 50%, transparent 100%);
       z-index: 2;
}

.hero-news-title {
       font-family: var(--font-display);
       font-size: clamp(1.5rem, 4vw, 2.5rem);
       font-weight: 700;
       color: var(--white);
       margin-bottom: var(--s2);
       max-width: 800px;
       margin-left: auto;
       margin-right: auto;
       line-height: 1.2;
       letter-spacing: -0.02em;
}

.hero-news-excerpt {
       font-size: 0.9375rem;
       color: var(--text-light);
       max-width: 600px;
       margin: 0 auto;
       line-height: 1.5;
}


/* ==========================================================================
   9. MAGAZINE COVER
   ========================================================================== */
.magazine-cover-section {
       margin-bottom: var(--s10);
       padding: var(--s8) 0;
}

.magazine-cover-inner {
       display: grid;
       grid-template-columns: 1fr;
       gap: var(--s6);
       align-items: center;
}

@media (min-width: 768px) {
       .magazine-cover-inner {
              grid-template-columns: 280px 1fr;
       }
}

.magazine-cover-image-wrap {
       position: relative;
}

.magazine-cover-image {
       display: block;
       position: relative;
       overflow: hidden;
       box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.magazine-cover-image img {
       width: 100%;
       aspect-ratio: 3/4;
       object-fit: cover;
}

.magazine-cover-image-overlay {
       position: absolute;
       inset: 0;
       background: rgba(0, 0, 0, 0.3);
       display: flex;
       align-items: center;
       justify-content: center;
       opacity: 0;
       transition: opacity 400ms ease;
}

.magazine-cover-image:hover .magazine-cover-image-overlay {
       opacity: 1;
}

.magazine-cover-image-overlay .material-symbols-outlined {
       color: var(--white);
       font-size: 48px;
}

.magazine-cover-content {
       display: flex;
       flex-direction: column;
       gap: var(--s2);
}

.magazine-cover-edition {
       font-size: 10px;
       font-weight: 900;
       text-transform: uppercase;
       letter-spacing: 0.2em;
       color: var(--gold);
}

.magazine-cover-title {
       font-family: var(--font-display);
       font-size: clamp(1.5rem, 3vw, 2rem);
       font-weight: 700;
       color: var(--white);
       line-height: 1.2;
       margin: 0;
}

.magazine-cover-excerpt {
       font-size: 0.9375rem;
       color: var(--text-light);
       line-height: 1.6;
       margin: 0;
}

.magazine-cover-cta {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       margin-top: var(--s2);
}


/* ==========================================================================
   10. EDITIONS CAROUSEL
   ========================================================================== */
.editions-carousel-section {
       margin-bottom: var(--s10);
       overflow: hidden;
}

.editions-carousel-header {
       display: flex;
       align-items: flex-end;
       justify-content: space-between;
       margin-bottom: var(--s4);
       padding-bottom: var(--s2);
       border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.editions-carousel-title-wrap {
       display: flex;
       flex-direction: column;
       gap: 4px;
}

.editions-carousel-title-wrap .section-kicker {
       margin-bottom: 0;
}

.editions-carousel-title-wrap .material-symbols-outlined {
       color: var(--gold);
       font-size: 16px;
}

.editions-carousel-title {
       font-family: var(--font-display);
       font-size: clamp(1.25rem, 3vw, 1.5rem);
       color: var(--white);
       font-weight: 700;
       margin: 0;
}

.editions-carousel-desc {
       font-size: 0.8125rem;
       color: var(--text-muted);
       margin: 0;
}

.editions-carousel-link {
       font-size: 10px;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 0.15em;
       color: var(--gold);
       display: flex;
       align-items: center;
       gap: 4px;
       flex-shrink: 0;
}

.editions-carousel-link .material-symbols-outlined {
       font-size: 14px;
}

.editions-carousel-track-wrap {
       overflow: hidden;
}

.carousel-track {
       display: flex;
       animation: carouselScroll 30s linear infinite;
}

.editions-carousel-track {
       display: flex;
       gap: var(--s4);
       flex-shrink: 0;
}

.edition-card {
       flex: 0 0 220px;
       cursor: pointer;
}

.edition-card-image {
       position: relative;
       overflow: hidden;
       border-radius: 4px;
       aspect-ratio: 3/4;
       margin-bottom: var(--s2);
}

.edition-card-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 500ms ease;
}

.edition-card:hover .edition-card-image img {
       transform: scale(1.05);
}

.edition-card-overlay {
       position: absolute;
       inset: 0;
       background: rgba(0, 0, 0, 0.5);
       display: flex;
       align-items: center;
       justify-content: center;
       opacity: 0;
       transition: opacity 400ms ease;
}

.edition-card:hover .edition-card-overlay {
       opacity: 1;
}

.edition-card-meta {
       display: flex;
       align-items: center;
       gap: 8px;
       margin-bottom: 4px;
}

.edition-card-date {
       font-size: 10px;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 0.1em;
       color: var(--text-muted);
       margin: 0;
}

.edition-card-badge {
       width: 4px;
       height: 4px;
       border-radius: 50%;
       background: var(--gold);
}

.edition-card-label {
       font-size: 9px;
       font-weight: 800;
       text-transform: uppercase;
       letter-spacing: 0.15em;
       color: var(--gold);
}

.edition-card-title {
       font-family: var(--font-display);
       font-size: 0.9375rem;
       font-weight: 700;
       color: var(--white);
       line-height: 1.3;
       margin: 0;
}


/* ==========================================================================
   11. FEATURED GRID
   ========================================================================== */
.section-featured {
       padding: var(--s10) 0;
       margin-bottom: var(--s8);
}

.section-title-lg {
       font-family: var(--font-display);
       color: var(--white);
       font-size: clamp(2rem, 4vw, 2.5rem);
       margin: var(--s2) 0;
       font-weight: 700;
}

.section-desc {
       color: rgba(255, 255, 255, 0.7);
       font-size: 1.125rem;
       max-width: 600px;
       margin: 0 auto var(--s6);
       line-height: 1.6;
}

.featured-3col {
       display: grid;
       grid-template-columns: 1fr;
       gap: var(--s4);
}

@media (min-width: 768px) {
       .featured-3col {
              grid-template-columns: repeat(2, 1fr);
       }
}

@media (min-width: 1024px) {
       .featured-3col {
              grid-template-columns: repeat(3, 1fr);
       }
}


/* ==========================================================================
   12. RECENT NEWS
   ========================================================================== */
.recent-news-section {
       margin-bottom: var(--s8);
}

.recent-news-header {
       display: flex;
       justify-content: space-between;
       align-items: flex-end;
       border-bottom: 2px solid rgba(255, 255, 255, 0.05);
       padding-bottom: var(--s2);
       margin-bottom: var(--s4);
}

.recent-news-header>div {
       flex: 1;
}

.recent-news-header h3 {
       font-family: var(--font-display);
       font-size: clamp(1.5rem, 3vw, 2rem);
       color: var(--white);
       margin: var(--s1) 0 0;
       display: flex;
       align-items: center;
       gap: var(--s2);
}

.recent-news-ver-tudo {
       font-size: 10px;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 0.15em;
       color: var(--text-light);
       transition: color 200ms;
       flex-shrink: 0;
}

.recent-news-ver-tudo:hover {
       color: var(--gold);
}

.recent-news-grid {
       display: grid;
       grid-template-columns: 1fr;
       gap: var(--s4);
}

@media (min-width: 768px) {
       .recent-news-grid {
              grid-template-columns: 1fr 1fr;
       }
}

.recent-news-mini-list {
       display: flex;
       flex-direction: column;
       gap: var(--s4);
}

/* Mini cards */
.entry-mini-card {
       display: flex;
       gap: var(--s3);
       align-items: flex-start;
}

.mini-card-image-wrap {
       flex: 0 0 100px;
       aspect-ratio: 1/1;
       position: relative;
       overflow: hidden;
       border: 1px solid rgba(255, 255, 255, 0.05);
       border-radius: 4px;
       display: block;
}

.mini-card-image-wrap img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 300ms ease;
}

.entry-mini-card:hover .mini-card-image-wrap img {
       transform: scale(1.05);
}

.mini-card-content {
       flex: 1;
}

.card-time {
       font-size: 10px;
       font-weight: 700;
       text-transform: uppercase;
       color: var(--text-muted);
       display: block;
       margin-top: 4px;
}

.card-thumb {
       flex: 0 0 80px;
       width: 80px;
       height: 80px;
       overflow: hidden;
       border-radius: 4px;
       border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-thumb img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 300ms ease;
}


/* ==========================================================================
   13. COLUMNISTS
   ========================================================================== */
.section-columnists {
       margin-top: var(--s8);
       margin-bottom: var(--s8);
       overflow: hidden;
}

.columnists-carousel::-webkit-scrollbar {
       display: none;
}

.columnists-controls button {
       background: transparent;
       border: 1px solid rgba(255, 255, 255, 0.2);
       color: var(--white);
       width: 40px;
       height: 40px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       cursor: pointer;
       transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.columnists-controls button:hover {
       background: var(--white);
       color: var(--black);
       transform: scale(1.05);
}

.columnist-premium-card {
       flex: 0 0 calc(50% - (var(--s4) / 2));
       max-width: calc(50% - (var(--s4) / 2));
       scroll-snap-align: start;
       position: relative;
       aspect-ratio: 3/4;
       border-radius: 2px;
       overflow: hidden;
       background: #0a0a0a;
       border: 1px solid rgba(255, 255, 255, 0.03);
       box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
       animation: revealCard 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
       opacity: 0;
}

@media (max-width: 640px) {
       .columnist-premium-card {
              flex: 0 0 100%;
              max-width: 100%;
       }
}

.col-link {
       display: block;
       width: 100%;
       height: 100%;
       text-decoration: none;
       position: relative;
}

.col-image-wrap {
       position: absolute;
       inset: 0;
       margin: 0;
       overflow: hidden;
}

.col-image-wrap img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       object-position: top center;
       filter: grayscale(100%) contrast(1.1) brightness(0.7);
       transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
       transform: scale(1.02);
}

.col-overlay {
       position: absolute;
       inset: 0;
       background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.95) 100%);
       transition: opacity 0.8s ease;
       opacity: 0.9;
}

.col-content {
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       padding: var(--s6) var(--s4);
       z-index: 2;
       display: flex;
       flex-direction: column;
       justify-content: flex-end;
}

.col-role-wrap {
       overflow: hidden;
       margin-bottom: 6px;
}

.col-role {
       display: inline-block;
       color: var(--magenta);
       font-size: 10px;
       font-weight: 800;
       text-transform: uppercase;
       letter-spacing: 0.25em;
       transform: translateY(100%);
       opacity: 0;
       transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.col-name {
       color: var(--white);
       font-size: clamp(1.25rem, 2vw, 1.75rem);
       margin: 0 0 12px;
       line-height: 1.15;
       font-weight: 400;
       letter-spacing: -0.01em;
       word-break: break-word;
       transform: translateY(12px);
       transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
       text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.col-divider {
       width: 24px;
       height: 2px;
       background: var(--gold);
       transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.columnist-premium-card:hover .col-image-wrap img {
       transform: scale(1.06);
       filter: grayscale(0%) contrast(1.05) brightness(0.9);
}

.columnist-premium-card:hover .col-overlay {
       opacity: 1;
       background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.columnist-premium-card:hover .col-role {
       transform: translateY(0);
       opacity: 1;
}

.columnist-premium-card:hover .col-name {
       transform: translateY(0);
       color: var(--white);
}

.columnist-premium-card:hover .col-divider {
       width: 60px;
       background: var(--magenta);
}


/* ==========================================================================
   14. SIDEBAR
   ========================================================================== */
.sidebar {
       display: flex;
       flex-direction: column;
       gap: var(--s8);
}

.sidebar-sticky {
       position: sticky;
       top: var(--s4);
       display: flex;
       flex-direction: column;
       gap: var(--s6);
}

.sidebar-box,
.sidebar-mais-lidas {
       background-color: var(--grey-sec);
       padding: var(--s4);
       border-radius: 4px;
       border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-title {
       font-size: 1.25rem;
       color: var(--white);
       margin: 0 0 var(--s4);
       padding-bottom: var(--s2);
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
       display: flex;
       align-items: center;
       justify-content: space-between;
}

.sidebar-title .material-symbols-outlined {
       color: var(--gold);
}

.sidebar-popular-list {
       display: flex;
       flex-direction: column;
       gap: var(--s4);
}

.sidebar-popular-item {
       display: flex;
       gap: var(--s3);
       text-decoration: none;
}

.sidebar-popular-num {
       font-size: 2.25rem;
       font-weight: 900;
       color: rgba(255, 255, 255, 0.1);
       line-height: 1;
       transition: color 200ms;
       flex-shrink: 0;
}

.sidebar-popular-item:hover .sidebar-popular-num {
       color: var(--gold);
}

.sidebar-popular-item .card-title {
       font-size: 0.875rem;
       font-family: var(--font-body);
}

.sidebar-popular-item:hover .card-title {
       color: var(--gold);
}

/* Revista banner */
.sidebar-box-navy {
       background-color: var(--navy-dark);
       padding: var(--s4);
       border-radius: 4px;
       border: 1px solid rgba(212, 165, 116, 0.2);
}

.sidebar-revista-head {
       display: flex;
       align-items: center;
       gap: 8px;
       margin-bottom: var(--s3);
}

.sidebar-revista-head .section-kicker {
       margin: 0;
}

.sidebar-revista-img {
       width: 100%;
       aspect-ratio: 3/4;
       object-fit: cover;
       margin-bottom: var(--s4);
       border: 1px solid rgba(212, 165, 116, 0.2);
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sidebar-revista-text {
       font-size: 12px;
       color: var(--text-light);
       margin-bottom: var(--s4);
       line-height: 1.5;
}

.sidebar-revista-cta {
       width: 100%;
       justify-content: center;
}

/* Ad sidebar */
.ad-sidebar-300-inner {
       position: relative;
       border: 1px solid rgba(212, 165, 116, 0.2);
       background-color: var(--grey-sec);
       background-image: repeating-linear-gradient(45deg, var(--grey-sec), var(--grey-sec) 1px, transparent 1px, transparent 10px);
}

.ad-sidebar-300-inner .ad-label {
       top: -8px;
       left: 16px;
       position: absolute;
       background: var(--charcoal);
       padding: 0 4px;
}

.ad-sidebar-300-placeholder {
       text-align: center;
       padding: var(--s6) var(--s4);
}

.ad-sidebar-300-placeholder .serif-heading {
       color: var(--gold);
       font-style: italic;
       font-size: 1.125rem;
       margin-bottom: 8px;
}

.hatch-pattern {
       background-image: repeating-linear-gradient(45deg, var(--grey-sec), var(--grey-sec) 1px, transparent 1px, transparent 10px);
}


/* ==========================================================================
   15. AD PLACEMENTS
   ========================================================================== */
.ad-leaderboard {
       margin-bottom: var(--s6);
}

.ad-leaderboard-inner {
       max-width: var(--max-w);
       margin: 0 auto;
       padding: var(--s1) 0;
       position: relative;
}

.ad-label {
       font-size: 8px;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 0.2em;
       color: rgba(212, 165, 116, 0.6);
}

.ad-placeholder {
       display: flex;
       align-items: center;
       justify-content: center;
       gap: var(--s3);
       padding: var(--s3);
       border: 1px solid rgba(255, 255, 255, 0.05);
       flex-wrap: wrap;
}

.ad-content-inline-wrap {
       margin: var(--s6) 0;
}

.ad-content-inline-inner {
       border: 1px solid rgba(212, 165, 116, 0.4);
       padding: var(--s6);
       background-color: var(--black);
       position: relative;
       overflow: hidden;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ad-content-inline-inner .ad-label {
       display: block;
       margin-bottom: var(--s3);
}

.ad-placeholder-inline {
       display: flex;
       align-items: center;
       gap: var(--s3);
       flex-wrap: wrap;
}

.ad-placeholder-icon-wrap {
       width: 56px;
       height: 56px;
       background: rgba(212, 165, 116, 0.2);
       border: 1px solid rgba(212, 165, 116, 0.5);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       flex-shrink: 0;
}

.ad-placeholder-icon-wrap .material-symbols-outlined {
       color: var(--gold);
       font-size: 24px;
}

.ad-placeholder-title {
       font-size: 1.25rem;
       color: var(--white);
       margin: 0 0 4px;
}

.ad-placeholder-text {
       font-size: 10px;
       text-transform: uppercase;
       letter-spacing: 0.15em;
       color: var(--text-light);
       margin: 0;
}

.ad-placeholder-cta {
       margin-left: auto;
}

.divider {
       display: block;
       width: 40px;
       height: 1px;
       background: var(--gold);
       margin: var(--s2) 0;
}


/* ==========================================================================
   16. FOOTER ★
   ========================================================================== */
.site-footer {
       background-color: var(--navy-dark);
       position: relative;
       overflow: hidden;
       margin-top: var(--s12);
}

/* Grain texture overlay */
.site-footer::before {
       content: '';
       position: absolute;
       inset: 0;
       opacity: 0.03;
       background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
       background-repeat: repeat;
       background-size: 128px 128px;
       pointer-events: none;
       z-index: 0;
}

.site-footer>* {
       position: relative;
       z-index: 1;
}

/* --- Zone 1: Masthead --- */
.footer-masthead {
       max-width: var(--max-w);
       margin: 0 auto;
       padding: var(--s10) var(--px) 0;
}

.footer-masthead-inner {
       display: flex;
       align-items: flex-start;
       justify-content: space-between;
       gap: var(--s6);
       flex-wrap: wrap;
}

.footer-brand {
       max-width: 420px;
}

.footer-logo-link {
       display: inline-block;
       margin-bottom: var(--s3);
       transition: opacity 300ms ease;
}

.footer-logo-link:hover {
       opacity: 0.8;
}

.footer-logo-img {
       height: 52px;
       width: auto;
       filter: brightness(0) invert(1);
}

.footer-tagline {
       font-size: 0.8125rem;
       color: rgba(255, 255, 255, 0.5);
       line-height: 1.6;
       margin: 0;
       max-width: 380px;
}

/* Social */
.footer-social {
       display: flex;
       gap: 12px;
       align-items: center;
       padding-top: var(--s1);
}

.footer-social-link {
       display: flex;
       align-items: center;
       justify-content: center;
       width: 36px;
       height: 36px;
       border: 1px solid rgba(255, 255, 255, 0.12);
       border-radius: 50%;
       color: rgba(255, 255, 255, 0.5);
       transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-link:hover {
       background: var(--gold);
       border-color: var(--gold);
       color: var(--navy-dark);
       transform: translateY(-2px);
}

/* Gold rule */
.footer-gold-rule {
       height: 1px;
       background: linear-gradient(90deg, transparent 0%, rgba(212, 165, 116, 0.4) 20%, rgba(212, 165, 116, 0.4) 80%, transparent 100%);
       margin-top: var(--s6);
}

/* --- Zone 2: Intersection --- */
.footer-intersection {
       max-width: var(--max-w);
       margin: 0 auto;
       padding: var(--s6) var(--px);
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: var(--s6);
       flex-wrap: wrap;
}

/* Footer nav */
.footer-nav-list {
       display: flex;
       align-items: center;
       gap: var(--s1);
       flex-wrap: wrap;
}

.footer-nav-list li {
       display: flex;
       align-items: center;
}

.footer-nav-list li:not(:last-child)::after {
       content: '·';
       color: rgba(255, 255, 255, 0.2);
       margin-left: var(--s1);
       font-size: 16px;
       line-height: 1;
}

.footer-nav-list li a {
       font-size: 11px;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 0.15em;
       color: rgba(255, 255, 255, 0.45);
       transition: color 300ms ease;
       padding: 4px 0;
}

.footer-nav-list li a:hover {
       color: var(--gold);
}

/* Newsletter card */
.footer-newsletter-card {
       flex: 0 1 460px;
}

.footer-newsletter-inner {
       display: flex;
       align-items: center;
       gap: var(--s4);
       padding: var(--s3) var(--s4);
       background: rgba(255, 255, 255, 0.03);
       border: 1px solid rgba(212, 165, 116, 0.15);
       border-radius: 6px;
       backdrop-filter: blur(8px);
}

.footer-newsletter-text {
       flex-shrink: 0;
}

.footer-newsletter-kicker {
       display: block;
       font-size: 9px;
       font-weight: 800;
       text-transform: uppercase;
       letter-spacing: 0.2em;
       color: var(--gold);
       margin-bottom: 2px;
}

.footer-newsletter-headline {
       font-size: 0.8125rem;
       color: rgba(255, 255, 255, 0.6);
       margin: 0;
       line-height: 1.4;
       white-space: nowrap;
}

.footer-newsletter-form {
       flex: 1;
       min-width: 180px;
}

.footer-newsletter-input-wrap {
       display: flex;
       border: 1px solid rgba(255, 255, 255, 0.12);
       border-radius: 4px;
       overflow: hidden;
       transition: border-color 300ms ease;
}

.footer-newsletter-input-wrap:focus-within {
       border-color: var(--gold);
}

.footer-newsletter-input-wrap input {
       flex: 1;
       background: transparent;
       border: none;
       color: var(--white);
       font-family: var(--font-body);
       font-size: 0.8125rem;
       padding: 10px 12px;
       outline: none;
       min-width: 0;
}

.footer-newsletter-input-wrap input::placeholder {
       color: rgba(255, 255, 255, 0.25);
}

.footer-newsletter-input-wrap button {
       background: var(--gold);
       border: none;
       color: var(--navy-dark);
       padding: 10px 14px;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: background 300ms ease;
       flex-shrink: 0;
}

.footer-newsletter-input-wrap button:hover {
       background: var(--white);
}

/* --- Zone 3: Colophon --- */
.footer-colophon {
       max-width: var(--max-w);
       margin: 0 auto;
       padding: var(--s3) var(--px) var(--s4);
       display: flex;
       justify-content: space-between;
       align-items: center;
       flex-wrap: wrap;
       gap: var(--s2);
       border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-colophon p {
       font-size: 11px;
       color: rgba(255, 255, 255, 0.25);
       margin: 0;
}

.footer-legal {
       display: flex;
       align-items: center;
       gap: 6px;
}

.footer-legal a {
       font-size: 11px;
       color: rgba(255, 255, 255, 0.25);
       transition: color 200ms ease;
}

.footer-legal a:hover {
       color: var(--gold);
}

.footer-legal-dot {
       color: rgba(255, 255, 255, 0.15);
       font-size: 14px;
}

/* Footer responsive */
@media (max-width: 768px) {
       .footer-masthead-inner {
              flex-direction: column;
              gap: var(--s4);
       }

       .footer-intersection {
              flex-direction: column;
              align-items: stretch;
              gap: var(--s4);
       }

       .footer-nav-list {
              justify-content: center;
       }

       .footer-newsletter-inner {
              flex-direction: column;
              text-align: center;
       }

       .footer-newsletter-headline {
              white-space: normal;
       }

       .footer-colophon {
              flex-direction: column;
              text-align: center;
              gap: var(--s2);
       }
}


/* ==========================================================================
   17. SINGLE POST
   ========================================================================== */
.single-article {
       max-width: 100%;
}

.entry-header {
       margin-bottom: var(--s6);
}

.entry-title {
       font-size: clamp(1.75rem, 4vw, 2.75rem);
       line-height: 1.15;
       color: var(--white);
       margin: var(--s2) 0;
       letter-spacing: -0.02em;
}

.entry-meta {
       display: flex;
       gap: var(--s3);
       font-size: 11px;
       font-weight: 600;
       text-transform: uppercase;
       letter-spacing: 0.1em;
       color: var(--text-muted);
}

.entry-thumbnail {
       margin-bottom: var(--s6);
       border-radius: 4px;
       overflow: hidden;
}

.entry-thumbnail img {
       width: 100%;
       aspect-ratio: 16/9;
       object-fit: cover;
}

.entry-content {
       font-size: 1.0625rem;
       line-height: 1.8;
       color: var(--text-body);
}

.entry-content p {
       margin-bottom: 1.5em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
       font-family: var(--font-display);
       color: var(--white);
       margin: 2em 0 0.75em;
       line-height: 1.3;
}

.entry-content h2 {
       font-size: 1.75rem;
}

.entry-content h3 {
       font-size: 1.375rem;
}

.entry-content blockquote {
       border-left: 3px solid var(--gold);
       padding-left: var(--s4);
       margin: 2em 0;
       font-family: var(--font-display);
       font-size: 1.25rem;
       font-style: italic;
       color: var(--white);
       line-height: 1.5;
}

.entry-content a {
       color: var(--gold);
       text-decoration: underline;
       text-underline-offset: 3px;
}

.entry-content img {
       border-radius: 4px;
       margin: 2em 0;
}

.entry-content ul,
.entry-content ol {
       padding-left: 1.5em;
       margin-bottom: 1.5em;
}

.entry-content ul {
       list-style: disc;
}

.entry-content ol {
       list-style: decimal;
}

.entry-content li {
       margin-bottom: 0.5em;
}


/* ==========================================================================
   18. ARCHIVE & SEARCH
   ========================================================================== */
.archive-header {
       margin-bottom: var(--s6);
       padding-bottom: var(--s4);
       border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.archive-title {
       font-size: clamp(1.5rem, 3vw, 2.5rem);
       color: var(--white);
       margin: 0;
}

.archive-description {
       font-size: 0.9375rem;
       color: var(--text-light);
       margin-top: var(--s2);
}

.archive-grid {
       margin-bottom: var(--s6);
}

/* Pagination */
.nav-links {
       display: flex;
       gap: var(--s2);
       justify-content: center;
       margin-top: var(--s6);
}

.page-numbers {
       display: flex;
       align-items: center;
       justify-content: center;
       min-width: 40px;
       height: 40px;
       font-size: 0.875rem;
       font-weight: 700;
       color: var(--text-light);
       border: 1px solid rgba(255, 255, 255, 0.1);
       border-radius: 4px;
       transition: all 200ms ease;
}

.page-numbers:hover,
.page-numbers.current {
       background: var(--gold);
       border-color: var(--gold);
       color: var(--charcoal);
}


/* ==========================================================================
   19. 404
   ========================================================================== */
/* Currently handled with inline styles in 404.php */


/* ==========================================================================
   20. BUTTONS & CTAs
   ========================================================================== */
.btn-gold {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       background: var(--gold);
       color: var(--charcoal);
       font-size: 10px;
       font-weight: 900;
       text-transform: uppercase;
       letter-spacing: 0.15em;
       padding: 12px 24px;
       border: none;
       cursor: pointer;
       transition: all 300ms ease;
}

.btn-gold:hover {
       background: var(--white);
       color: var(--charcoal);
}

.btn-cta {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       background: var(--gold);
       color: var(--charcoal);
       font-size: 11px;
       font-weight: 800;
       text-transform: uppercase;
       letter-spacing: 0.1em;
       padding: 14px 28px;
       border-radius: 2px;
       transition: all 300ms ease;
}

.btn-cta:hover {
       background: var(--white);
       color: var(--charcoal);
}

.btn-outline-gold {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       background: transparent;
       color: var(--text-light);
       font-size: 8px;
       font-weight: 900;
       text-transform: uppercase;
       letter-spacing: 0.3em;
       padding: 8px 16px;
       border: 1px solid rgba(212, 165, 116, 0.4);
       cursor: pointer;
       transition: all 300ms ease;
}

.btn-outline-gold:hover {
       border-color: var(--gold);
       color: var(--gold);
}


/* ==========================================================================
   21. ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes revealCard {
       0% {
              opacity: 0;
              transform: translateY(40px) scale(0.98);
       }

       100% {
              opacity: 1;
              transform: translateY(0) scale(1);
       }
}

@keyframes carouselScroll {
       0% {
              transform: translateX(0);
       }

       100% {
              transform: translateX(-50%);
       }
}

@keyframes fadeIn {
       from {
              opacity: 0;
              transform: translateY(20px);
       }

       to {
              opacity: 1;
              transform: translateY(0);
       }
}

.no-scrollbar {
       -ms-overflow-style: none;
       scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
       display: none;
}


/* ==========================================================================
   22. UTILITIES
   ========================================================================== */
.text-center {
       text-align: center;
}

.italic {
       font-style: italic;
}

.serif-heading {
       font-family: var(--font-display);
}

.font-display {
       font-family: var(--font-body);
}


/* ==========================================================================
   23. RESPONSIVE
   ========================================================================== */
@media (max-width: 480px) {
       :root {
              --px: 16px;
       }

       .hero-news-image-wrap {
              aspect-ratio: 16/9;
       }

       .edition-card {
              flex: 0 0 180px;
       }
}