@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --apple-bg: #FBFBFD;
    --apple-white: #FFFFFF;
    --apple-text: #1D1D1F;
    --apple-text-secondary: #86868B;
    --apple-blue: #0071E3;
    --apple-border: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--apple-bg);
    color: var(--apple-text);
    margin: 0;
    padding: 0;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Market Ticker Animation */
.market-ticker-wrapper {
    background: var(--apple-white);
    border-bottom: 1px solid var(--apple-border);
    overflow: hidden;
    padding: 8px 0;
    position: relative;
    z-index: 10;
}

.ticker-content {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.ticker-content span {
    font-size: 11px;
    font-weight: 500;
    color: var(--apple-text-secondary);
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ticker-content .up {
    color: #28a745;
}

.ticker-content .down {
    color: #dc3545;
}

.ticker-content .neutral {
    color: var(--apple-blue);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Header & Nav */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--apple-border);
    position: sticky;
    top: 0;
    z-index: 9999;
    height: 52px;
    display: flex;
    align-items: center;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo a {
    font-size: 19px;
    font-weight: 700;
    color: var(--apple-text);
    text-decoration: none;
    letter-spacing: -0.022em;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--apple-text);
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--apple-text);
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s;
    letter-spacing: -0.01em;
}

.main-nav a:hover {
    opacity: 1;
    color: var(--apple-blue);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        transition: right 0.3s ease;
        padding-top: 80px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li a {
        display: block;
        padding: 20px 40px;
        font-size: 18px;
        border-bottom: 1px solid var(--apple-border);
    }

    .header-search {
        display: none;
        /* Hide search on mobile header to save space, or move into menu */
    }
}

.btn-login {
    background: var(--apple-text);
    color: var(--apple-white) !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-decoration: none;
}

/* Sections */
.hero-section {
    padding: clamp(40px, 10vw, 80px) 0;
    text-align: center;
}

.hero-section h1 {
    font-size: clamp(32px, 8vw, 56px);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.hero-section p {
    font-size: 18px;
    color: var(--apple-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Carousel Premium */
.dashboard-header-section {
    width: 100%;
    margin: 20px 0 40px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.65fr 0.85fr;
    gap: 20px;
    height: 380px;
    /* Elegant cinematic height */
}

.dashboard-main {
    height: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0c;
    /* Midnight base */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    /* Floating edge */
}

/* Redefine Hero Slider for Dashboard */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Remove flex centering to allow image to fill 100% of container */
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
}

.slider-media {
    width: 100%;
    height: 100%;
}

.slider-media img,
.slider-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s linear;
}

.slider-item.active .slider-media img {
    transform: scale(1.05);
}

/* Bottom gradient specifically for text readability */
.slider-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    /* Smooth transition */
    background: linear-gradient(to top, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.7) 40%, rgba(10, 10, 12, 0) 100%);
    /* Deep Midnight gradient */
    z-index: 2;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    /* Respiro do título com o final do banner */
    height: 100%;
    display: flex;
    align-items: center;
    /* Shift from flex-end to center for elevation */
    padding: 20px 60px;
    /* Adjusted padding to accommodate the centering */
    z-index: 3;
    pointer-events: none;
}

.slider-content {
    width: 100%;
    max-width: 750px;
    /* Slightly narrower to prevent text from hitting controls */
    pointer-events: auto;
    text-align: left;
    transform: translateY(-20px);
    /* Subindo o bloco de texto conforme pedido */
}

.slider-badge {
    display: inline-block;
    background: rgba(227, 30, 36, 0.15);
    /* Translucent red */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(227, 30, 36, 0.4);
    /* Elegant border */
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    /* Wider tracking */
    margin-bottom: 8px;
    /* Tighter spacing */
}

.slider-content h2 {
    color: #fff;
    font-size: clamp(22px, 3vw, 32px);
    /* Reduced scaling */
    font-weight: 600;
    /* Sophisticated slightly lighter weight */
    line-height: 1.2;
    /* Comfortable reading line height */
    margin-bottom: 0;
    /* Removed spacing as it is now at the bottom */
    text-transform: none;
    letter-spacing: -0.01em;
    /* Refined tracking */
    max-width: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Subtle depth */
}

.slider-meta {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.slider-meta::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #e31e24;
    /* Red accent mark */
}

/* Dashboard Side Panel */
.dashboard-side {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.dashboard-card-header {
    margin-bottom: 15px;
    border-bottom: 2px solid #000;
    padding-bottom: 12px;
}

.dashboard-card-header h3 {
    font-size: 13px;
    font-weight: 800;
    margin: 0;
    color: #000;
}

.dashboard-card-header span {
    font-size: 10px;
    color: #86868b;
    font-weight: 600;
}

.indicators-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.indicator-dashboard-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.indicator-dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.ind-dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.ind-dash-symbol {
    font-weight: 800;
    font-size: 13px;
    color: #1d1d1f;
}

.ind-dash-change {
    font-size: 10px;
    font-weight: 700;
}

.ind-dash-change.up {
    color: #28a745;
}

.ind-dash-change.down {
    color: #dc3545;
}

.ind-dash-price {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ind-dash-rec {
    font-size: 10px;
    color: #86868b;
}

.ind-dash-rec strong {
    color: #0071e3;
    font-weight: 700;
}

.dashboard-side-footer {
    margin-top: auto;
    padding-top: 15px;
}

.btn-more-indices {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-more-indices:hover {
    background: #333;
}

/* Dashboard Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: auto;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.05) !important;
    /* Very subtle base */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    /* Delicate ring */
    color: rgba(255, 255, 255, 0.8) !important;
    width: 48px !important;
    /* Slightly larger, more cinematic */
    height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Apple-like snap */
    font-size: 15px !important;
    opacity: 0.7;
    /* Default state slightly faded */
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    opacity: 1;
    transform: scale(1.05);
    /* Softer scale */
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    /* Sleeker shadow */
}


.slider-navigation-bottom {
    position: absolute;
    bottom: 25px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 100;
    pointer-events: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile dashboard adjustments */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
}

@media (max-width: 768px) {
    .dashboard-header-section {
        margin-top: 0;
    }

    .dashboard-grid {
        height: 380px;
        /* As requested */
        gap: 0;
    }

    .dashboard-main {
        height: 100%;
        border-radius: 0;
    }

    .dashboard-side {
        display: none;
        /* Hide sidebar indices on mobile to prioritize the editorial hero */
    }

    .slider-overlay {
        padding: 30px 20px;
        width: 100%;
    }

    .slider-content h2 {
        font-size: 26px;
        /* 24px-28px range */
        margin-bottom: 10px;
    }

    .slider-badge {
        margin-bottom: 10px;
        font-size: 10px;
    }

    .slider-navigation-bottom {
        bottom: 20px;
        right: 20px;
    }
}

/* News Grid */
.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 60px;
}

@media (max-width: 1024px) {
    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-list {
        grid-template-columns: 1fr;
    }
}

.news-card {
    background: var(--apple-white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--apple-border);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 113, 227, 0.2);
}

.news-thumb {
    width: 100%;
    height: 180px;
    /* Much more delicate */
    object-fit: cover;
    border-bottom: 1px solid var(--apple-border);
}

.news-body {
    padding: 20px;
    flex-grow: 1;
}

.news-category {
    font-size: 10px;
    /* Smaller and thinner */
    font-weight: 700;
    color: var(--apple-blue);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.news-body h3 {
    font-size: 18px;
    /* Refined size */
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: var(--apple-text);
}

.news-meta {
    font-size: 12px;
    color: var(--apple-text-secondary);
}

.native-ad-card {
    border: 1px solid rgba(255, 149, 0, 0.2);
}

.native-ad-card:hover {
    border-color: rgba(255, 149, 0, 0.4);
}


/* Sidebar & Widgets */
.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .main-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.sidebar-column .widget {
    background: var(--apple-white);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid var(--apple-border);
    margin-bottom: 24px;
}

.widget h3 {
    font-size: 17px;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Search Bar */
.header-search {
    flex-grow: 1;
    max-width: 300px;
    margin: 0 40px;
    position: relative;
}

#search-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
}

/* Footer */
.main-footer {
    background: #F5F5F7;
    padding: clamp(40px, 8vw, 60px) 0;
    border-top: 1px solid var(--apple-border);
}

.footer-content {
    font-size: 12px;
    color: var(--apple-text-secondary);
}

/* News Detail */
.news-detail {
    max-width: 800px;
    margin: clamp(30px, 8vw, 60px) auto;
}

.news-detail h1 {
    font-size: clamp(28px, 6vw, 44px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.news-featured-image img {
    width: 100%;
    border-radius: clamp(12px, 3vw, 24px);
    margin-bottom: 40px;
}

.news-content {
    font-size: clamp(16px, 4vw, 19px);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .news-detail {
        padding: 0 10px;
    }
}

/* Financial Section Removed - Merged into Dashboard Header */
/* Video Section & Podcast Highlight */
.videos-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

/* Revista PO 2026 editorial layer */
:root {
    --po-ink: #111111;
    --po-charcoal: #1b1b1b;
    --po-paper: #f5f2ec;
    --po-white: #ffffff;
    --po-muted: #716e69;
    --po-line: rgba(17, 17, 17, 0.12);
    --po-red: #c6232b;
    --po-red-dark: #97171d;
    --po-serif: 'DM Sans', Arial, sans-serif;
    --po-sans: 'DM Sans', Arial, sans-serif;
    --apple-bg: var(--po-paper);
    --apple-white: var(--po-white);
    --apple-text: var(--po-ink);
    --apple-text-secondary: var(--po-muted);
    --apple-blue: var(--po-red);
    --apple-border: var(--po-line);
    --font-main: var(--po-sans);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--po-paper);
    color: var(--po-ink);
    font-family: var(--po-sans);
    letter-spacing: -0.01em;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a,
button,
input {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(198, 35, 43, 0.38);
    outline-offset: 3px;
}

.container {
    max-width: 1240px;
    padding-inline: clamp(20px, 4vw, 42px);
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 20000;
    background: var(--po-white);
    color: var(--po-ink);
    padding: 12px 18px;
    border-radius: 0 0 10px 10px;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--po-red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: currentColor;
}

.main-header {
    height: 76px;
    background: rgba(17, 17, 17, 0.94);
    border: 0;
    color: #fff;
    backdrop-filter: blur(18px);
}

.header-inner {
    gap: 26px;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    display: block;
    width: 154px;
    height: auto;
    filter: brightness(0) invert(1);
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    gap: clamp(14px, 2vw, 28px);
}

.main-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.main-nav a:hover {
    color: #fff;
}

.header-search {
    flex: 0 1 205px;
    margin: 0;
}

.header-search form {
    position: relative;
}

.header-search i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

#search-input {
    box-sizing: border-box;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 9px 14px 9px 34px;
}

#search-input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.auth-buttons {
    flex: 0 0 auto;
}

.btn-login,
.btn-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    background: var(--po-red);
    border-radius: 999px;
    padding: 10px 17px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.mobile-search {
    display: none;
}

.market-ticker-wrapper {
    background: #fff;
    border-color: var(--po-line);
    padding: 9px 0;
}

.ticker-content span {
    font-family: var(--po-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.editorial-intro {
    padding: clamp(42px, 6vw, 78px) 0 26px;
}

.editorial-intro .container {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
    align-items: end;
    gap: 50px;
}

.editorial-intro h1 {
    max-width: 850px;
    margin: 14px 0 0;
    font-family: var(--po-serif);
    font-size: clamp(45px, 6.8vw, 88px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.editorial-intro p {
    max-width: 430px;
    margin: 0 0 5px;
    color: var(--po-muted);
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.65;
}

.dashboard-header-section {
    margin: 20px 0 70px;
}

.dashboard-grid {
    grid-template-columns: minmax(0, 1.8fr) minmax(290px, 0.65fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 18px;
    height: 510px;
}

.dashboard-main,
.dashboard-side {
    min-height: 0;
    border-radius: 22px;
}

.dashboard-main {
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.16);
    overflow: hidden;
    isolation: isolate;
    contain: paint;
}

.slider-overlay-gradient {
    height: 84%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.93), rgba(10, 10, 10, 0.14) 70%, transparent);
}

.slider-overlay {
    width: min(760px, 72%);
    align-items: flex-end;
    padding: 50px;
    box-sizing: border-box;
    overflow: hidden;
}

.slider-content {
    transform: none;
}

.slider-badge {
    border: 0;
    background: var(--po-red);
    border-radius: 999px;
    padding: 7px 12px;
}

.slider-content h2 {
    font-family: var(--po-serif);
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.dashboard-side {
    border: 0;
    padding: 30px;
    background: var(--po-charcoal);
    color: #fff;
    overflow: hidden;
}

.dashboard-card-header {
    border-color: rgba(255, 255, 255, 0.2);
}

.dashboard-card-header h3,
.ind-dash-symbol,
.ind-dash-price {
    color: #fff;
}

.dashboard-card-header span,
.ind-dash-rec {
    color: rgba(255, 255, 255, 0.55);
}

.indicators-dashboard-grid {
    grid-template-columns: 1fr;
}

.indicator-dashboard-card {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
}

.btn-more-indices {
    background: var(--po-red);
    border-radius: 999px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    padding: 0 0 24px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--po-line);
}

.latest-news {
    position: relative;
    clear: both;
    padding-top: 8px;
}

.section-heading h2 {
    margin: 10px 0 0;
    font-family: var(--po-serif);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.section-heading > a {
    color: var(--po-ink);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.section-heading > a i {
    margin-left: 8px;
    color: var(--po-red);
}

.news-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    padding-bottom: 76px;
}

.news-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.news-thumb-wrap {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    background: #dedad2;
}

.news-thumb {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-thumb {
    transform: scale(1.035);
}

.news-thumb--placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #242424, #111);
}

.news-thumb--placeholder span {
    color: rgba(255, 255, 255, 0.26);
    font-family: var(--po-serif);
    font-size: 64px;
}

.news-body {
    padding: 18px 2px 0;
}

.news-category {
    color: var(--po-red);
    font-size: 10px;
    letter-spacing: 0.12em;
}

.news-body h3 {
    font-family: var(--po-serif);
    font-size: clamp(23px, 2.2vw, 29px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.news-meta {
    color: var(--po-muted);
}

.ad-slot img {
    border-radius: 16px;
}

.videos-section {
    padding: 86px 0;
    background: #fff;
}

.podcast-highlight {
    border-radius: 24px;
    background: var(--po-charcoal);
}

.authority-cta {
    padding: 84px 0;
    background: var(--po-red);
    color: #fff;
    overflow: hidden;
}

.authority-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.authority-cta .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.authority-cta__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.authority-cta h2 {
    margin: 15px 0;
    font-family: var(--po-serif);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.authority-cta p {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.65;
}

.authority-cta__mark {
    color: rgba(255, 255, 255, 0.1);
    font-family: var(--po-serif);
    font-size: clamp(150px, 24vw, 330px);
    font-weight: 700;
    line-height: 0.65;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 22px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.button--light {
    margin-top: 12px;
    color: var(--po-red);
    background: #fff;
}

.button--primary {
    color: #fff;
    background: var(--po-red);
}

.button--ghost {
    color: var(--po-ink);
    border: 1px solid var(--po-line);
}

.category-hero {
    padding: clamp(60px, 10vw, 120px) 0 52px;
    background: var(--po-charcoal);
    color: #fff;
}

.category-hero h1 {
    margin: 15px 0 10px;
    font-family: var(--po-serif);
    font-size: clamp(56px, 9vw, 112px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.category-hero p {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
}

.listing-layout,
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 64px;
    padding-top: 54px;
    padding-bottom: 90px;
}

.news-detail {
    max-width: 850px;
    margin: 0;
}

.breadcrumb {
    display: flex;
    gap: 9px;
    margin-bottom: 32px;
    color: var(--po-muted);
    font-size: 12px;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.news-detail h1 {
    margin: 12px 0 24px;
    font-family: var(--po-serif);
    font-size: clamp(43px, 6vw, 76px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.article-meta {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--po-line);
}

.news-featured-image img {
    border-radius: 18px;
}

.news-content {
    color: #2d2a27;
    font-family: var(--po-sans);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.75;
    letter-spacing: -0.012em;
}

.share-buttons {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid var(--po-line);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: #167b45;
    border-radius: 999px;
    padding: 11px 17px;
    text-decoration: none;
}

.main-footer {
    padding: 70px 0 28px;
    color: #fff;
    background: var(--po-charcoal);
    border: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    padding-bottom: 42px;
}

.footer-brand img {
    width: 190px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 360px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.38);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.error-page {
    min-height: 68vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.magazine-access-banner {
    background: var(--po-red) !important;
}

.magazine-access-banner--light {
    background: #fff !important;
    border-color: var(--po-red) !important;
}

.error-page__inner {
    padding-block: 90px;
}

.error-page__code {
    margin: 18px 0 -20px;
    color: rgba(17, 17, 17, 0.07);
    font-family: var(--po-serif);
    font-size: clamp(120px, 24vw, 280px);
    font-weight: 700;
    line-height: 0.7;
}

.error-page h1 {
    font-family: var(--po-serif);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 700;
    letter-spacing: -0.05em;
}

.error-page__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.login-page {
    min-height: 100vh;
    background: var(--po-charcoal);
}

.login-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
}

.login-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 8vw, 120px);
    color: #fff;
    background:
        radial-gradient(circle at 75% 20%, rgba(198, 35, 43, 0.36), transparent 34%),
        linear-gradient(135deg, #111, #24201f);
}

.login-panel h1 {
    max-width: 660px;
    margin: 20px 0;
    font-family: var(--po-serif);
    font-size: clamp(56px, 8vw, 100px);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.login-panel p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 17px;
    line-height: 1.7;
}

.login-back {
    position: absolute;
    top: 34px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
}

.login-container {
    max-width: none;
    margin: 0;
    padding: clamp(44px, 7vw, 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--po-paper);
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.login-header {
    text-align: left;
}

.login-header img {
    width: 180px;
    padding: 0;
    margin-bottom: 34px;
    background: transparent;
    border-radius: 0;
    filter: none;
}

.login-header h2 {
    font-family: var(--po-serif);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.mobile-app-nav {
    display: none;
}

.login-container form {
    width: 100%;
    max-width: 470px;
}

.login-container .form-group {
    margin-bottom: 20px;
}

.login-container .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--po-ink);
    font-size: 14px;
    font-weight: 700;
}

.login-container .form-group input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.22);
    border-radius: 10px;
    color: var(--po-ink);
    font: inherit;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-container .form-group input:focus {
    border-color: var(--po-red);
    box-shadow: 0 0 0 4px rgba(198, 35, 43, 0.1);
    outline: none;
}

.login-container .btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 50px;
    margin-top: 8px;
    padding: 13px 20px;
    color: #fff;
    background: var(--po-red);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}

.login-container .btn-submit:hover {
    background: var(--po-red-dark);
    transform: translateY(-1px);
}

.login-container .back-link {
    display: block;
    max-width: 470px;
    margin-top: 20px;
    color: var(--po-muted);
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

.login-container .error-message {
    max-width: 470px;
    margin-bottom: 18px;
    padding: 12px 14px;
    color: #8f171d;
    background: rgba(198, 35, 43, 0.08);
    border-radius: 10px;
    font-size: 13px;
}

@media (max-width: 1080px) {
    .header-search {
        display: none;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        height: 520px;
    }

    .slider-overlay {
        width: min(720px, 80%);
        padding: 42px;
    }

    .slider-content h2 {
        font-size: clamp(36px, 5.2vw, 50px);
    }

    .dashboard-side {
        display: none;
    }

    .listing-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-column {
        display: none;
    }
}

@media (max-width: 820px) {
    html {
        scroll-padding-bottom: 104px;
    }

    body:not(.login-page) {
        padding-bottom: calc(84px + env(safe-area-inset-bottom));
        background: #f7f7f8;
    }

    .main-header {
        height: 64px;
        background: rgba(255, 255, 255, 0.94);
        color: var(--po-ink);
        border-bottom: 1px solid rgba(17, 17, 17, 0.08);
        box-shadow: 0 6px 24px rgba(17, 17, 17, 0.05);
    }

    .logo img {
        width: 128px;
        filter: none;
    }

    .mobile-menu-toggle {
        display: grid;
        place-items: center;
        order: 3;
        width: 42px;
        height: 42px;
        padding: 0;
        color: var(--po-ink);
        background: #f2f2f4;
        border-radius: 14px;
        font-size: 17px;
    }

    .main-nav {
        position: fixed;
        inset: 64px 0 0 0;
        width: 100%;
        height: auto;
        padding: 22px 20px calc(110px + env(safe-area-inset-bottom));
        box-sizing: border-box;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .main-nav.active {
        right: auto;
        transform: translateX(0);
    }

    .main-nav ul {
        align-items: stretch;
    }

    .main-nav li a {
        padding: 16px 4px;
        color: var(--po-ink);
        border-color: rgba(17, 17, 17, 0.09);
        font-family: var(--po-sans);
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.035em;
    }

    .mobile-search {
        display: flex;
        margin-top: 26px;
    }

    .mobile-search input {
        flex: 1;
        min-width: 0;
        padding: 13px 16px;
        color: var(--po-ink);
        background: #f2f2f4;
        border: 1px solid rgba(17, 17, 17, 0.08);
        border-radius: 999px 0 0 999px;
    }

    .mobile-search button {
        width: 48px;
        color: #fff;
        background: var(--po-red);
        border: 0;
        border-radius: 0 999px 999px 0;
    }

    .auth-buttons {
        display: none;
    }

    .btn-login,
    .btn-dashboard {
        padding: 8px 12px;
    }

    .editorial-intro .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .editorial-intro h1 {
        font-size: clamp(39px, 11vw, 58px);
        line-height: 1;
    }

    .dashboard-header-section .container {
        padding-inline: 0;
    }

    .dashboard-grid {
        height: 460px;
    }

    .dashboard-main {
        border-radius: 0 0 24px 24px;
    }

    .slider-overlay {
        width: 100%;
        padding: 28px 22px 70px;
    }

    .slider-content h2 {
        font-size: clamp(30px, 8.5vw, 42px);
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }

    .news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .podcast-grid {
        grid-template-columns: 1fr;
    }

    .authority-cta__mark {
        display: none;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .login-shell {
        grid-template-columns: 1fr;
    }

    .login-panel {
        min-height: 330px;
        padding-top: 100px;
    }

    .login-container {
        min-height: 540px;
    }

    .mobile-app-nav {
        position: fixed;
        z-index: 15000;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        left: 10px;
        display: block;
        padding: 6px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(17, 17, 17, 0.09);
        border-radius: 24px;
        box-shadow:
            0 18px 48px rgba(17, 17, 17, 0.16),
            0 2px 10px rgba(17, 17, 17, 0.07);
        backdrop-filter: blur(20px) saturate(1.35);
        -webkit-backdrop-filter: blur(20px) saturate(1.35);
    }

    .mobile-app-nav__inner {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: center;
    }

    .mobile-app-nav__item {
        position: relative;
        display: flex;
        min-width: 0;
        min-height: 58px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        color: #77777d;
        border-radius: 18px;
        font-size: 10px;
        font-weight: 600;
        line-height: 1;
        text-decoration: none;
        transition: color 0.2s, background 0.2s, transform 0.2s;
    }

    .mobile-app-nav__icon {
        display: grid;
        width: 28px;
        height: 25px;
        place-items: center;
        border-radius: 9px;
        font-size: 19px;
        transition: color 0.2s, background 0.2s, transform 0.2s;
    }

    .mobile-app-nav__item.is-active {
        color: var(--po-red);
        background: rgba(198, 35, 43, 0.07);
        font-weight: 700;
    }

    .mobile-app-nav__item.is-active .mobile-app-nav__icon {
        color: #fff;
        background: var(--po-red);
        box-shadow: 0 6px 14px rgba(198, 35, 43, 0.25);
        transform: translateY(-1px);
    }

    .main-footer {
        padding-bottom: 120px;
    }

    .login-page {
        padding-bottom: calc(86px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 560px) {
    .auth-buttons i {
        display: none;
    }

    .market-ticker-wrapper {
        padding-block: 7px;
    }

    .editorial-intro {
        padding: 34px 0 22px;
        background: #fff;
    }

    .dashboard-header-section {
        margin-bottom: 52px;
    }

    .news-list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .news-card {
        padding: 10px;
        background: #fff;
        border: 1px solid rgba(17, 17, 17, 0.07);
        border-radius: 22px;
        box-shadow: 0 8px 26px rgba(17, 17, 17, 0.05);
    }

    .news-thumb-wrap {
        border-radius: 16px;
    }

    .news-body {
        padding: 16px 8px 8px;
    }

    .news-body h3 {
        font-size: 22px;
        line-height: 1.16;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .podcast-highlight {
        padding: 24px;
        border-radius: 18px;
    }

    .videos-section,
    .authority-cta {
        padding-block: 58px;
    }

    .authority-cta .container {
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .error-page__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .magazine-access-banner {
        align-items: flex-start !important;
        flex-direction: column;
        padding: 26px !important;
    }

    .magazine-access-banner .btn-primary {
        box-sizing: border-box;
        width: 100%;
        text-align: center;
        white-space: normal !important;
    }

    .login-panel {
        min-height: 285px;
    }

    .login-panel h1 {
        font-size: 48px;
        line-height: 0.98;
    }

    .login-container {
        min-height: 520px;
        padding: 46px 28px 120px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.section-badge {
    display: inline-block;
    background: #e31e24;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.podcast-highlight {
    background: #0a0a0c;
    border-radius: 32px;
    padding: 50px;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.podcast-highlight::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.podcast-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.podcast-featured {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.video-player-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-player-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-player-container:hover img {
    transform: scale(1.03);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.video-player-container:hover .play-overlay {
    background: #e31e24;
    border-color: #e31e24;
    transform: translate(-50%, -50%) scale(1.1);
}

.podcast-tag {
    color: #e31e24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.podcast-info h3 {
    font-size: 32px;
    margin: 10px 0;
    font-weight: 700;
    line-height: 1.2;
}

.podcast-info p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.6;
}

.podcast-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.podcast-mini {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.podcast-mini:hover {
    background: rgba(255,255,255,0.08);
}

.mini-thumb {
    width: 120px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-content h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
}

/* Category Rows */
.video-category-row {
    margin-bottom: 50px;
}

.row-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.row-header h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.row-header .line {
    height: 1px;
    background: #eee;
    width: 100%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.video-card {
    cursor: pointer;
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.play-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-card:hover .play-btn {
    opacity: 1;
    transform: translateY(0);
}

.video-body h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #111;
}

/* Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 5% auto;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .podcast-grid {
        grid-template-columns: 1fr;
    }
    .podcast-highlight {
        padding: 30px 20px;
    }
    .podcast-info h3 {
        font-size: 24px;
    }
}

/* Keep the editorial treatment authoritative over legacy video rules. */
.videos-section {
    padding: 86px 0;
    background: #fff;
}

.podcast-highlight {
    border-radius: 24px;
    background: var(--po-charcoal);
}

@media (max-width: 560px) {
    .videos-section {
        padding-block: 58px;
    }

    .podcast-highlight {
        padding: 24px;
        border-radius: 18px;
    }
}

