/*
Theme Name: Paleta
Theme URI: https://assufemg.org
Author: Assufemg
Author URI: https://assufemg.org
Description: Tema institucional da Associacao dos Servidores da UFMG.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paleta
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Merriweather:wght@400;700&family=Lato:wght@400;700;900&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f6f4f0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.page,
#page,
.site,
#site,
.wrapper {
    width: 100%;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #836fff; text-decoration: none; transition: color 0.2s; }
a:hover { color: #15f5ba; }
ul { list-style: none; }

/* === VARIÁVEIS DE CORES === */
:root {
    --color-navy:    #2e5077;
    --color-purple:  #836fff;
    --color-teal:    #15f5ba;
    --color-lime:    #baff00;
    --color-teal2:   #4da1a9;
    --color-mint:    #79d7be;
    --color-cream:   #f6f4f0;
    --color-ice:     #f0f3ff;
    --color-white:   #ffffff;
    --color-text:    #2e2e2e;
    --color-muted:   #666;
    --radius-sm:     6px;
    --radius-md:     10px;
    --radius-lg:     14px;
    --shadow-card:   0 2px 16px rgba(46,80,119,0.08);
    --transition:    0.25s ease;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


/* === FULL WIDTH OVERRIDE === */
html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
}

/* Remove qualquer wrapper do WordPress que limite a largura */
#page, .site, #content, .site-content,
div[id="page"], div[class="site"] {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Seções que devem ser 100% width */
#site-header,
#hero-carousel,
#section-news,
#section-calendar-links,
#section-cta,
#site-footer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* === TIPOGRAFIA === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, serif;
    color: var(--color-navy);
    line-height: 1.3;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

/* === SECTION TITLE === */
.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
    font-family: 'Merriweather', Georgia, serif;
}
.section-line {
    width: 44px;
    height: 4px;
    background: var(--color-teal);
    border-radius: 2px;
    margin-bottom: 28px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--color-lime);
    color: var(--color-navy);
}
.btn-primary:hover {
    background: #cfff1a;
    color: var(--color-navy);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: var(--color-ice);
    border: 2px solid var(--color-mint);
}
.btn-outline:hover {
    background: rgba(21,245,186,0.15);
    color: var(--color-ice);
}
.btn-purple {
    background: var(--color-purple);
    color: #fff;
}
.btn-purple:hover { background: #6a55e8; color: #fff; }

/* === SKIP LINK === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-teal);
    color: var(--color-navy);
    padding: 8px 16px;
    z-index: 9999;
    font-weight: 700;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }


/* === HOVER DO LOGO === */
.site-branding:hover .site-logo {
    transform: scale(1.06);
    filter: drop-shadow(0 0 10px rgba(21,245,186,0.55)) brightness(1.1);
    opacity: 1;
}
.site-branding {
    transition: opacity 0.2s ease;
}
.site-branding:hover {
    opacity: 1;
}
/* === HEADER === */
#site-header {
    background: var(--color-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(46,80,119,0.18);
    width: 100%;
    left: 0;
    right: 0;
    min-height: 108px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 108px;
}
.site-branding {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.site-logo {
    height: 96px;
    width: auto;
    max-width: 380px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
    transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
    filter: drop-shadow(0 0 0px rgba(21,245,186,0));
}
.site-name-wrap .site-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color-ice);
    letter-spacing: 1.5px;
    font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    margin: 0;
    display: none;
}
.site-name-wrap .site-tagline {
    font-size: 0.65rem;
    color: var(--color-mint);
    display: none;
    margin-top: 1px;
}

/* NAV */
#primary-navigation ul {
    display: flex;
    gap: 4px;
    align-items: center;
}
#primary-navigation ul li a {
    color: var(--color-ice);
    font-size: 0.82rem;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    font-weight: 500;
}
#primary-navigation ul li a:hover {
    background: rgba(21,245,186,0.15);
    color: var(--color-teal);
}
#primary-navigation ul li.menu-area-do-associado > a,
#primary-navigation ul li:last-child > a {
    background: var(--color-teal);
    color: var(--color-navy);
    font-weight: 700;
}
#primary-navigation ul li.menu-area-do-associado > a:hover,
#primary-navigation ul li:last-child > a:hover {
    background: #0dd9a5;
    color: var(--color-navy);
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--color-mint);
    color: var(--color-ice);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
}

/* === HERO CAROUSEL === */
#hero-carousel {
    position: relative;
    overflow: hidden;
    background: var(--color-teal2);
    width: 100%;
}
.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
    min-width: 100%;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    background: var(--color-teal2);
    overflow: hidden;
}
/* Imagem de fundo full-width do slide */
.carousel-slide .slide-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.carousel-slide:hover .slide-bg-image {
    transform: scale(1.03);
    filter: brightness(1.05);
}
.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(46,80,119,0.82) 0%, rgba(46,80,119,0.55) 50%, rgba(46,80,119,0.2) 100%);
    pointer-events: none;
    z-index: 1;
}
.carousel-slide .container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.slide-content { flex: 1; max-width: 640px; }
.slide-badge {
    display: inline-block;
    background: var(--color-lime);
    color: var(--color-navy);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}
.slide-content h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--color-ice);
    margin-bottom: 18px;
    font-family: 'Merriweather', Georgia, serif;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.slide-content p {
    font-size: 1.2rem;
    color: var(--color-mint);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.75;
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.slide-image {
    width: 380px;
    height: 340px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(46,80,119,0.3);
    position: relative;
}
.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240,243,255,0.4);
    font-size: 3rem;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(46,80,119,0.55);
    border: 1.5px solid rgba(121,215,190,0.4);
    color: var(--color-ice);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background var(--transition);
}
.carousel-btn:hover { background: rgba(46,80,119,0.85); }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(240,243,255,0.4);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}
.carousel-dot.active {
    background: var(--color-lime);
    width: 26px;
    border-radius: 5px;
}

/* === NOTÍCIAS === */
#section-news {
    background: var(--color-cream);
    padding: 56px 0;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.news-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 0.5px solid rgba(46,80,119,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(46,80,119,0.14);
}
.news-card-thumb {
    height: 180px;
    background: var(--color-teal2);
    position: relative;
    overflow: hidden;
}
.news-card-thumb a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}
.news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
    position: absolute;
    inset: 0;
}
.news-card:hover .news-card-thumb img {
    transform: scale(1.08);
    filter: brightness(1.1);
}
.news-card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240,243,255,0.5);
    font-size: 2.5rem;
}
.news-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-lime);
    color: var(--color-navy);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-card-body { padding: 18px 20px 20px; }
.news-meta {
    font-size: 0.72rem;
    color: var(--color-mint);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.news-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
    line-height: 1.4;
}
.news-card-body p {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.55;
    margin-bottom: 14px;
}
.news-read-more {
    font-size: 0.82rem;
    color: var(--color-purple);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}
.news-read-more:hover { gap: 8px; color: var(--color-purple); }
.news-more-wrap { text-align: center; margin-top: 36px; }

/* === DOIS COLUNAS: CALENDÁRIO + LINKS === */
#section-calendar-links {
    padding: 0 0 56px;
}
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* CALENDÁRIO */
.calendar-widget {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 24px;
    border: 0.5px solid rgba(46,80,119,0.08);
}
.cal-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.cal-nav-btn {
    background: var(--color-ice);
    border: none;
    color: var(--color-navy);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.cal-nav-btn:hover { background: var(--color-teal); color: var(--color-navy); }
.cal-month-label { font-size: 0.9rem; font-weight: 700; color: var(--color-navy); }
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 18px;
}
.cal-weekday {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-mint);
    padding: 4px 0;
    text-transform: uppercase;
}
.cal-cell {
    text-align: center;
    font-size: 0.75rem;
    color: #555;
    padding: 5px 2px;
}
.cal-cell span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.cal-cell.today span { background: var(--color-navy); color: #fff; font-weight: 700; }
.cal-cell.has-event span { background: rgba(21,245,186,0.2); color: var(--color-teal2); font-weight: 700; }
.cal-cell.empty { color: #ccc; }

.upcoming-events { border-top: 1px solid var(--color-ice); padding-top: 16px; }
.upcoming-events h4 { font-size: 0.78rem; font-weight: 800; color: var(--color-mint); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px; }
.event-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.event-date-badge {
    background: var(--color-navy);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.event-date-badge .eday { font-size: 1rem; font-weight: 700; line-height: 1; }
.event-date-badge .emon { font-size: 0.55rem; text-transform: uppercase; color: var(--color-mint); }
.event-details .etitle { font-size: 0.82rem; font-weight: 600; color: var(--color-navy); }
.event-details .etime { font-size: 0.7rem; color: var(--color-muted); }

/* LINKS IMPORTANTES */
.links-widget {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 24px;
    border: 0.5px solid rgba(46,80,119,0.08);
}
.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.link-card {
    background: var(--color-ice);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0.5px solid rgba(46,80,119,0.1);
    transition: all var(--transition);
    text-decoration: none;
    cursor: pointer;
}
.link-card:hover {
    background: rgba(21,245,186,0.1);
    border-color: var(--color-teal);
    transform: translateY(-2px);
}
.link-card.featured {
    background: var(--color-navy);
    border-color: var(--color-navy);
}
.link-card-icon {
    width: 36px;
    height: 36px;
    background: var(--color-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.link-card.featured .link-card-icon { background: var(--color-teal); }
.link-card-text .lc-title { font-size: 0.78rem; font-weight: 700; color: var(--color-navy); display: block; }
.link-card-text .lc-sub { font-size: 0.65rem; color: var(--color-muted); }
.link-card.featured .lc-title { color: var(--color-ice); }
.link-card.featured .lc-sub { color: var(--color-mint); }

/* === BANNER CTA === */
#section-cta {
    background: var(--color-purple);
    padding: 40px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cta-text h2 {
    font-size: 1.6rem;
    color: var(--color-ice);
    font-family: 'Merriweather', Georgia, serif;
}
.cta-text p { font-size: 0.9rem; color: rgba(240,243,255,0.82); margin-top: 6px; }

/* === RODAPÉ === */
#site-footer {
    background: var(--color-navy);
    color: var(--color-ice);
    padding: 48px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
}
.footer-brand .footer-logo {
    height: 72px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 12px;
}
.footer-brand .footer-name {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color-ice);
    margin-bottom: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
}
.footer-brand p {
    font-size: 0.8rem;
    color: var(--color-mint);
    line-height: 1.6;
    margin: 0;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 32px;
    height: 32px;
    background: rgba(240,243,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-mint);
    font-size: 0.85rem;
    transition: background var(--transition);
    text-decoration: none;
}
.footer-social a:hover { background: var(--color-teal); color: var(--color-navy); }
.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    font-family: 'Lato', sans-serif;
}
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a {
    font-size: 0.82rem;
    color: rgba(240,243,255,0.72);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-teal); }
.footer-bottom {
    border-top: 0.5px solid rgba(240,243,255,0.15);
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(240,243,255,0.45); margin: 0; }
.footer-bottom a { color: var(--color-mint); }


/* === HOVER EFFECTS === */

/* Overlay hover na imagem do carrossel */
.slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21,245,186,0.18) 0%, rgba(131,111,255,0.18) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-lg);
    pointer-events: none;
}
.carousel-slide:hover .slide-image::after {
    opacity: 1;
}

/* Overlay hover nos cards de notícias */
.news-card-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(46,80,119,0.55) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.news-card:hover .news-card-thumb::after {
    opacity: 1;
}

/* Borda luminosa nos cards ao hover */
.news-card:hover {
    border-color: rgba(21,245,186,0.4) !important;
}

/* Hover nos link-cards */
.link-card:hover .link-card-icon {
    background: var(--color-teal) !important;
    transform: scale(1.1);
    transition: all 0.25s ease;
}
.link-card-icon {
    transition: all 0.25s ease;
}

/* Setas do carrossel maiores */
.carousel-btn {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.6rem !important;
}

/* Badge do slide maior */
.slide-badge {
    font-size: 0.78rem !important;
    padding: 5px 16px !important;
    margin-bottom: 16px !important;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .two-col-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .site-logo { height: 64px !important; max-width: 220px !important; }
    .header-inner { height: 80px !important; }
    .menu-toggle { display: flex; }
    #primary-navigation { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--color-navy); padding: 16px 24px; border-top: 1px solid rgba(121,215,190,0.2); }
    #primary-navigation.open { display: block; }
    #primary-navigation ul { flex-direction: column; gap: 4px; }
    #primary-navigation ul li a { display: block; padding: 10px 12px; }
    .header-inner { position: relative; }
    .carousel-slide .container { flex-direction: column; }
    .slide-image { width: 100%; max-width: 280px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .news-grid { grid-template-columns: 1fr; }
    .links-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .carousel-slide { min-height: 320px; }
}

/* === WIDGETS === */
.widget-area .widget {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
}
.widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-teal);
}

/* === SINGLE POST / PAGE === */
.site-main { padding: 48px 0; }
.entry-content h2, .entry-content h3 { margin: 1.5rem 0 0.75rem; }
.entry-content p { margin-bottom: 1rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content img { border-radius: var(--radius-md); margin: 1rem 0; }
.post-thumbnail { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; }

/* === PAGINATION === */
.pagination { text-align: center; padding: 32px 0; }
.pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--color-navy);
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--color-navy);
    color: var(--color-ice);
}

/* === CUSTOMIZER PREVIEW REFRESH === */
body.wp-customizer-unloading { opacity: 0.3; }
