/*
Theme Name:  Finance News AI
Theme URI:   https://github.com/your-username/finance-news-ai
Description: Automated financial news theme covering stocks, crypto, forex, economy, investing and markets. MarketWatch-inspired design. Content generated with AI.
Author:      Finance News AI
Version:     1.0.0
License:     GPL-2.0-or-later
Text Domain: finance-news
*/


/* ===============================================================
   GOOGLE FONTS  (Inter + Merriweather + DM Serif Display)
   Loaded in functions.php via wp_enqueue_style
=============================================================== */


/* ===============================================================
   CSS VARIABLES
=============================================================== */

:root {
    --fn-primary: #111827;
    /* near-black — indices bar bg */
    --fn-nav-bg: #fff;
    /* white nav */
    --fn-nav-border: #e5e7eb;
    --fn-accent: #0071c5;
    --fn-accent-dark: #005a9e;
    --fn-up: #10b981;
    /* positive price */
    --fn-down: #ef4444;
    /* negative price */
    --fn-border: #e5e7eb;
    --fn-bg-light: #f9fafb;
    --fn-bg-page: #f3f4f6;
    /* subtle off-white page bg */
    --fn-text: #111827;
    --fn-text-light: #6b7280;
    --fn-ticker-bg: #0f172a;
    --fn-container: 1200px;
}


/* ===============================================================
   RESET & BASE
=============================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fn-text);
    background: var(--fn-bg-page);
}

a {
    color: var(--fn-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-decoration-color: #bbb;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}


/* ===============================================================
   TYPOGRAPHY
=============================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--fn-text);
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}


/* ===============================================================
   LAYOUT
=============================================================== */

.fn-container {
    max-width: var(--fn-container);
    margin: 0 auto;
    padding: 0 20px;
}

.fn-main {
    padding: 32px 0 48px;
}


/* ===============================================================
   TOP INFO BAR  (dark, full-width, above everything)
=============================================================== */

.fn-topbar {
    background: #1a1f2e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.fn-topbar .fn-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    gap: 16px;
}

.fn-topbar-left {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.fn-topbar-left a {
    color: #9bddff;
    text-decoration: none;
    margin-left: 6px;
    font-weight: 500;
}

.fn-topbar-left a:hover {
    text-decoration: underline;
}

.fn-topbar-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.fn-topbar-right a {
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 0 12px;
    line-height: 36px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.12s;
    white-space: nowrap;
}

.fn-topbar-right a:first-child {
    border-left: none;
}

.fn-topbar-right a:hover {
    color: #fff;
    text-decoration: none;
}

.fn-topbar-login {
    color: #9bddff !important;
    font-weight: 600 !important;
}

.fn-topbar-login:hover {
    color: #fff !important;
}

@media (max-width: 840px) {
    .fn-topbar {
        display: none;
    }
}


/* ===============================================================
   MARKET INDICES BAR  (top of page, dark, live prices)
=============================================================== */

.fn-indices-bar {
    background: var(--fn-ticker-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
}

.fn-indices-bar .fn-container {
    display: flex;
    align-items: stretch;
    height: 36px;
    gap: 0;
}

.fn-indices-label {
    display: flex;
    align-items: center;
    padding: 0 14px 0 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 8px;
}

.fn-indices-list {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    flex: 1;
}

.fn-index-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    height: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.fn-index-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.fn-index-price {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', monospace;
}

.fn-index-change {
    font-size: 11px;
    font-weight: 500;
    font-family: 'Inter', monospace;
}

.fn-index-change.fn-up {
    color: var(--fn-up);
}

.fn-index-change.fn-down {
    color: var(--fn-down);
}

.fn-indices-unavailable {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    padding: 0 12px;
}


/* ===============================================================
   HEADER  (white, editorial style)
=============================================================== */

.fn-header-top {
    background: #fff;
    padding: 20px 0 0px;
    border-top: 2px solid #9bddff;
}

.fn-header-top .fn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 0;
}


/* Logo */

.fn-logo a {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    align-items: center;
    text-align: center;
}

.fn-logo-name {
    font-family: 'DM Serif Display', 'Merriweather', Georgia, serif;
    font-size: 46px;
    font-weight: 400;
    color: var(--fn-text);
    letter-spacing: -0.5px;
    line-height: 1;
}

.fn-logo-name span {
    color: var(--fn-accent);
}

.fn-logo-name strong {
    font-weight: 700;
}

.fn-logo-tagline {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fn-text-light);
}

.fn-logo-img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 220px;
}

@media (min-width: 841px) {
    .fn-logo-img {
        height: 50px;
        max-width: 275px;
    }
    .fn-header-top .fn-logo-img {
        height: 60px;
        max-width: 300px;
    }
}


/* Header meta */

.fn-header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fn-date {
    font-size: 12px;
    color: var(--fn-text-light);
    white-space: nowrap;
}

.fn-search-btn {
    background: none;
    border: 1px solid var(--fn-border);
    border-radius: 6px;
    cursor: pointer;
    color: var(--fn-text-light);
    font-size: 14px;
    padding: 6px 10px;
    line-height: 1;
    transition: all 0.15s;
}

.fn-search-btn:hover {
    border-color: var(--fn-accent);
    color: var(--fn-accent);
}


/* ===============================================================
   EDITION BAR  (below header, WSJ-style secondary nav)
=============================================================== */

.fn-edition-bar {
    background: #fff;
    padding-bottom: 0;
}

.fn-edition-bar .fn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}


/* All items share base style */

.fn-edition-bar .fn-eb-item,
.fn-edition-bar .fn-eb-dropdown>a {
    font-family: 'Barlow Condensed', 'Libre Franklin', Arial Narrow, sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.2px;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    line-height: 32px;
    cursor: pointer;
    transition: color 0.12s;
}

.fn-edition-bar .fn-eb-item:hover,
.fn-edition-bar .fn-eb-dropdown>a:hover,
.fn-edition-bar .fn-eb-dropdown:hover>a {
    color: #000;
    text-decoration: none;
}


/* Pipe separators via pseudo-elements */

.fn-edition-bar .fn-eb-item+.fn-eb-item::before,
.fn-edition-bar .fn-eb-item+.fn-eb-dropdown::before,
.fn-edition-bar .fn-eb-dropdown+.fn-eb-item::before,
.fn-edition-bar .fn-eb-dropdown+.fn-eb-dropdown::before {
    content: '|';
    color: #ccc;
    padding: 0 10px;
    font-size: 12px;
}


/* Dropdown */

.fn-edition-bar .fn-eb-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 32px;
}

.fn-edition-bar .fn-eb-dropdown>a {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 32px;
}

.fn-eb-chevron {
    font-size: 8px;
    opacity: 0.45;
    line-height: 1;
}

.fn-eb-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -12px;
    min-width: 160px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: 2px solid #111;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    z-index: 400;
    padding: 4px 0;
}

.fn-eb-dropdown:hover .fn-eb-dropdown-menu {
    display: block;
}

.fn-eb-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    font-family: 'Barlow Condensed', 'Libre Franklin', Arial Narrow, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    transition: background 0.1s;
}

.fn-eb-dropdown-menu a:hover {
    background: var(--fn-bg-light);
    color: #000;
}

@media (max-width: 840px) {
    .fn-edition-bar {
        display: none;
    }
}


/* ===============================================================
   NAVBAR  (white, light border)
=============================================================== */

.fn-navbar {
    background: #fff;
    border-bottom: 2px solid var(--fn-border);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.fn-navbar .fn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


/* Mobile-only edition subnav (inside hamburger drawer) */

.fn-mobile-subnav {
    display: none;
}


/* Mobile-only bottom nav (Contact Us, Careers, Login) */

.fn-mobile-bottomnav {
    display: none;
}

.fn-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fn-text);
    font-size: 18px;
    padding: 14px 0;
    margin-right: 12px;
}

.fn-nav {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
    padding-inline-start: 0;
    margin-inline-start: 0;
    justify-content: center;
}

.fn-nav li {
    position: relative;
}

.fn-nav li a {
    display: flex;
    align-items: center;
    padding: 0 18px;
    height: 44px;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: none;
    color: #555;
    text-decoration: none;
    transition: color 0.15s;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.fn-nav li a:hover,
.fn-nav li.current-menu-item>a,
.fn-nav li.current-category-ancestor>a {
    color: #0071c5;
    border-bottom-color: #0071c5;
    text-decoration: none;
}

.fn-nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--fn-border);
    border-top: 2px solid var(--fn-accent);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 300;
}

.fn-nav li:hover>ul {
    display: block;
}

.fn-nav li ul li a {
    height: auto;
    padding: 10px 16px;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    border-bottom: 1px solid var(--fn-border);
    color: var(--fn-text);
    margin-bottom: 0;
    border-left: none;
}


/* ===============================================================
   SEARCH OVERLAY
=============================================================== */


/* Inline search bar — slides down between header and nav */

.fn-search-bar {
    background: #fff;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease, padding 0.25s ease;
}

.fn-search-bar.open {
    max-height: 72px;
    padding: 12px 0;
    border-bottom: 1px solid var(--fn-border);
}

.fn-search-bar .search-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.fn-search-bar .search-field {
    flex: 1;
    padding: 9px 14px;
    font-size: 14px;
    border: 1px solid var(--fn-border);
    border-radius: 3px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.15s;
}

.fn-search-bar .search-field:focus {
    border-color: var(--fn-accent);
}

.fn-search-bar .search-submit {
    padding: 9px 20px;
    background: var(--fn-accent);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
    white-space: nowrap;
}

.fn-search-bar .search-submit:hover {
    background: var(--fn-accent-dark);
}


/* ===============================================================
   TRADINGVIEW WIDGETS
=============================================================== */


/* Market bar — static, manual scroll */

.fn-market-bar {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--fn-border);
    display: flex;
    align-items: center;
}

.fn-market-bar-track {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    overflow-x: scroll;
    padding: 0 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.fn-market-bar-track::-webkit-scrollbar {
    display: none;
}

.fn-market-bar-track.fn-mb-centered {
    justify-content: center;
}

.fn-mb-arrow {
    flex-shrink: 0;
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 100%;
    min-height: 32px;
    background: none;
    border: none;
    border-right: 1px solid var(--fn-border);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: #aaa;
    padding: 0;
    transition: color 0.15s;
}

.fn-mb-arrow-next {
    border-right: none;
    border-left: 1px solid var(--fn-border);
}

.fn-mb-arrow:hover {
    color: #333;
}

.fn-mb-arrow.fn-mb-disabled {
    opacity: 0.25;
    pointer-events: none;
}

.fn-market-bar.fn-mb-overflow .fn-mb-arrow {
    display: flex;
}

.fn-mb-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 20px 7px 0;
    margin-right: 20px;
    border-right: 1px solid var(--fn-border);
    white-space: nowrap;
    flex-shrink: 0;
}

.fn-mb-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.fn-mb-label {
    font-size: 11px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.fn-mb-price {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    font-variant-numeric: tabular-nums;
}

.fn-mb-change {
    font-size: 11px;
    font-weight: 600;
}

.fn-mb-up {
    color: #16a34a;
}

.fn-mb-down {
    color: #dc2626;
}

@media (max-width: 600px) {
    .fn-market-bar {
        display: none;
    }
}


/* ===============================================================
   HOMEPAGE BLOCK STRUCTURE
=============================================================== */

.fn-block {
    background: #fff;
    border-radius: 10px;
    padding: 24px 28px 28px;
    margin-bottom: 4px;
}

.fn-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

@media (max-width: 768px) {
    .fn-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .fn-block-all-link {
        white-space: normal;
    }
}

.fn-block-title {
    font-size: 11px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fn-block-title::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fn-block-title--finance::before {
    background: #0071c5;
}

.fn-block-title--stocks::before {
    background: #0d9488;
}

.fn-block-title--economy::before {
    background: #7c3aed;
}

.fn-block-title--markets::before {
    background: #16a34a;
}

.fn-block-title--investing::before {
    background: #f59e0b;
}

.fn-block-all-link {
    font-size: 11px;
    font-weight: 600;
    color: var(--fn-text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: color 0.15s;
}

.fn-block-all-link:hover {
    color: var(--fn-accent);
    text-decoration: none;
}

.fn-separator {
    border: none;
    height: 8px;
    margin: 0;
}


/* ===============================================================
   CATEGORY BADGES  (pill shape)
=============================================================== */

.fn-cat-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
    text-decoration: none !important;
    color: #fff !important;
}

.cat-finance {
    background: #0071c5;
}

.cat-stocks {
    background: #0d9488;
}

.cat-economy {
    background: #7c3aed;
}

.cat-markets {
    background: #16a34a;
}


/* legacy — kept in case old posts still reference them */

.cat-crypto {
    background: #ea580c;
}

.cat-forex {
    background: #0d9488;
}

.cat-investing {
    background: #059669;
}

.cat-world-business {
    background: #b45309;
}


/* ===============================================================
   ARTICLE CARD  (template-parts/card.php)
=============================================================== */

.fn-card {
    background: #fff;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.fn-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.fn-card-image {
    overflow: hidden;
    aspect-ratio: 3/2;
    background: var(--fn-bg-light);
}

.fn-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.fn-card:hover .fn-card-image img {
    transform: scale(1.03);
}

.fn-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 32px;
}

.fn-card-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fn-card-title {
    font-size: 17.3px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    font-family: 'Merriweather', Georgia, serif;
}

.fn-card-title a {
    color: var(--fn-text);
    text-decoration: none;
}

.fn-card-title a:hover {
    color: var(--fn-accent);
    text-decoration: none;
}

.fn-card-excerpt {
    font-size: 14.3px;
    color: var(--fn-text-light);
    line-height: 1.5;
    margin-bottom: 10px;
    flex: 1;
}

.fn-meta {
    font-size: 11px;
    color: var(--fn-text-light);
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: auto;
}

.fn-meta-sep {
    color: #ccc;
}

.fn-meta-by {
    font-style: italic;
}

.fn-meta-author {
    color: var(--fn-text-light);
}

.fn-meta-author:hover {
    color: var(--fn-accent);
}


/* ===============================================================
   PRICE CARD  (live market data)
=============================================================== */

.fn-price-card {
    background: #0f172a;
    color: #fff;
    border-radius: 10px;
    padding: 20px 22px;
    min-width: 220px;
    flex-shrink: 0;
    align-self: flex-start;
    border-left: 4px solid var(--fn-accent);
}

.fn-price-card-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.fn-price-card-price {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Inter', monospace;
    line-height: 1.1;
    margin-bottom: 6px;
    color: #fff;
}

.fn-price-card-change {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', monospace;
    margin-bottom: 14px;
}

.fn-price-up {
    color: var(--fn-up);
}

.fn-price-down {
    color: var(--fn-down);
}

.fn-price-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
}

.fn-price-card-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
    font-family: 'Inter', monospace;
}

.fn-price-card-row-label {
    color: rgba(255, 255, 255, 0.45);
}

.fn-price-card-source {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    text-align: right;
}


/* ===============================================================
   BLOCK: FINANCE  (3-column × 3-article grid)
=============================================================== */

.fn-block-title--finance::before {
    background: #0071c5;
}

.fn-finance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* ===============================================================
   BLOCK: STOCKS  (trio: 25% | 50% | 25%)
=============================================================== */

.fn-stocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


/* ===============================================================
   BLOCK: FOREX  (featured left + EUR/USD price card + list right)
=============================================================== */

.fn-forex-top {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 24px;
    margin-bottom: 24px;
}

.fn-forex-featured {
    display: grid;
    grid-template-columns: 58% 1fr;
    gap: 20px;
    align-items: start;
}

.fn-forex-featured-image {
    display: block;
    overflow: hidden;
    border-radius: 2px;
    background: var(--fn-bg-light);
}

.fn-forex-featured-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.fn-forex-featured-image:hover img {
    transform: scale(1.02);
}

.fn-forex-featured-title {
    font-size: 19.6px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.fn-forex-featured-title a {
    color: var(--fn-text);
    text-decoration: none;
}

.fn-forex-featured-title a:hover {
    color: var(--fn-accent);
}

.fn-forex-featured-excerpt {
    font-size: 14.3px;
    color: var(--fn-text-light);
    line-height: 1.5;
    margin-bottom: 8px;
}


/* Forex list items */

.fn-forex-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fn-forex-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.fn-forex-list-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--fn-bg-light);
    display: block;
}

.fn-forex-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fn-forex-list-placeholder {
    width: 80px;
    height: 60px;
    background: var(--fn-bg-light);
}

.fn-forex-list-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 4px;
}

.fn-forex-list-title a {
    color: var(--fn-text);
    text-decoration: none;
}

.fn-forex-list-title a:hover {
    color: var(--fn-accent);
}


/* ===============================================================
   BLOCK: ECONOMY  (mosaic: big left + 2 stacked right)
=============================================================== */

.fn-economy-mosaic {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    margin-bottom: 24px;
    align-items: start;
}

.fn-economy-main {
    display: flex;
    flex-direction: column;
}

.fn-economy-main-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
    border-radius: 2px;
    background: var(--fn-bg-light);
    margin-bottom: 14px;
}

.fn-economy-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.fn-economy-main-image:hover img {
    transform: scale(1.02);
}

.fn-economy-main-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
}

.fn-economy-main-title {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.fn-economy-main-title a {
    color: var(--fn-text);
    text-decoration: none;
}

.fn-economy-main-title a:hover {
    color: var(--fn-accent);
}

.fn-economy-main-excerpt {
    font-size: 14.3px;
    color: var(--fn-text-light);
    line-height: 1.55;
    margin-bottom: 8px;
}

.fn-economy-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fn-economy-side {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--fn-border);
    border-radius: 3px;
    overflow: hidden;
}

.fn-economy-side-image {
    display: block;
    overflow: hidden;
    background: var(--fn-bg-light);
}

.fn-economy-side-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.3s;
}

.fn-economy-side-image:hover img {
    transform: scale(1.02);
}

.fn-economy-side-placeholder {
    width: 100%;
    height: 140px;
    background: var(--fn-bg-light);
}

.fn-economy-side-body {
    padding: 12px 14px 16px;
}

.fn-economy-side-title {
    font-size: 16.2px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
}

.fn-economy-side-title a {
    color: var(--fn-text);
    text-decoration: none;
}

.fn-economy-side-title a:hover {
    color: var(--fn-accent);
}


/* ===============================================================
   BLOCK: WORLD BUSINESS — 3-column card grid (reuses fn-finance-grid)
=============================================================== */

.fn-block-title--worldbiz::before {
    background: #b45309;
}


/* ===============================================================
   BLOCK: INVESTING — 4-column grid
=============================================================== */

.fn-investing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* ===============================================================
   BLOCK: MARKETS
=============================================================== */


/* Top row: featured article (left) + TradingView widget (right) */

.fn-markets-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.fn-markets-tv-widget {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--fn-border);
    min-height: 360px;
}

.fn-markets-tv-widget .tradingview-widget-container,
.fn-markets-tv-widget .tradingview-widget-container__widget {
    height: 100%;
}


/* Separator between top and bottom */

.fn-markets-divider {
    height: 1px;
    background: var(--fn-border);
    margin: 22px 0;
}


/* Bottom row: 2 columns × 2 articles */

.fn-markets-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.fn-markets-bottom-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* Featured article in markets */

.fn-markets-art-featured {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fn-markets-art-img {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: var(--fn-bg-light);
    aspect-ratio: 16/9;
}

.fn-markets-art-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.fn-markets-art-img:hover img {
    transform: scale(1.02);
}

.fn-markets-art-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fn-bg-light);
    color: #ccc;
    font-size: 40px;
}

.fn-markets-art-title {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}

.fn-markets-art-title a {
    color: var(--fn-text);
    text-decoration: none;
}

.fn-markets-art-title a:hover {
    color: var(--fn-accent);
}

.fn-markets-art-excerpt {
    font-size: 14.3px;
    color: var(--fn-text-light);
    line-height: 1.6;
    margin-bottom: 6px;
}


/* Small article list (2 items) */

.fn-markets-art-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--fn-border);
    padding-top: 16px;
}

.fn-markets-art-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--fn-border);
}

.fn-markets-art-item-img {
    flex-shrink: 0;
    width: 110px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    display: block;
}

.fn-markets-art-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fn-markets-art-item-body {
    flex: 1;
    min-width: 0;
}

.fn-markets-art-item-title {
    font-size: 16.2px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 4px;
}

.fn-markets-art-item-title a {
    color: var(--fn-text);
    text-decoration: none;
}

.fn-markets-art-item-title a:hover {
    color: var(--fn-accent);
}


/* ===============================================================
   GENERIC GRID  (archive, related posts)
=============================================================== */

.fn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}


/* ===============================================================
   ARCHIVE
=============================================================== */

.fn-archive-header {
    padding: 24px 0 20px;
    border-bottom: 2px solid var(--fn-border);
    margin-bottom: 28px;
}

.fn-archive-header h1 {
    font-size: 28px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.fn-archive-count {
    font-size: 14px;
    font-weight: 400;
    color: var(--fn-text-light);
    font-family: 'Inter', sans-serif;
}


/* ===============================================================
   PAGINATION
=============================================================== */

.fn-pagination {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 32px 0 16px;
}

.fn-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--fn-border);
    border-radius: 3px;
    font-size: 13px;
    color: var(--fn-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.15s;
}

.fn-pagination .page-numbers:hover,
.fn-pagination .page-numbers.current {
    background: var(--fn-accent);
    border-color: var(--fn-accent);
    color: #fff;
}


/* ===============================================================
   SINGLE ARTICLE
=============================================================== */

.fn-main--single .fn-content {
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 36px 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}

.fn-article-header {
    margin-bottom: 22px;
}

.fn-article-title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 12px;
    font-family: 'Merriweather', Georgia, serif;
}

.fn-article-meta {
    font-size: 12px;
    color: var(--fn-text-light);
    margin-top: 8px;
}

.fn-article-featured-img {
    margin-bottom: 28px;
}

.fn-article-featured-img img {
    width: 100%;
    border-radius: 3px;
}

.fn-article-featured-img figcaption {
    font-size: 12px;
    color: var(--fn-text-light);
    margin-top: 6px;
    text-align: center;
}

.fn-article-content {
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a2a;
}

.fn-article-content p {
    margin-bottom: 15px;
}

.fn-article-content h2 {
    font-size: 22px;
    margin: 32px 0 12px;
}

.fn-article-content h3 {
    font-size: 18px;
    margin: 24px 0 10px;
}

.fn-article-content ul,
.fn-article-content ol {
    padding-left: 24px;
    margin-bottom: 1.2em;
}

.fn-article-content ul {
    list-style: disc;
}

.fn-article-content ol {
    list-style: decimal;
}

.fn-article-content li {
    margin-bottom: 0;
}


/* Inline source citations (parenthesized links) */

.fn-article-content a[target="_blank"] {
    font-size: 0.85em;
    color: var(--fn-accent);
    font-weight: 500;
}


/* Sources block at end of article */

.fn-sources {
    font-size: 12px;
    color: #999;
    border-top: 1px solid var(--fn-border);
    padding-top: 14px;
    margin-top: 28px;
    line-height: 1.6;
}

.fn-sources em {
    font-style: normal;
}

.fn-article-content blockquote {
    border-left: 4px solid var(--fn-accent);
    padding: 12px 20px;
    margin: 24px 0;
    background: var(--fn-bg-light);
    font-style: italic;
    color: #555;
}


/* AI disclaimer */

.fn-ai-disclaimer {
    margin: 28px 0 24px;
    padding: 14px 18px;
    background: #f0f4ff;
    border-left: 4px solid var(--fn-accent);
    border-radius: 0 3px 3px 0;
    font-size: 13px;
    color: #555;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.fn-ai-disclaimer i {
    color: var(--fn-accent);
    margin-top: 2px;
    flex-shrink: 0;
}


/* Share buttons */

.fn-share {
    margin: 28px 0;
    padding-top: 24px;
    border-top: 1px solid var(--fn-border);
}

.fn-share-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--fn-text-light);
    margin-bottom: 10px;
}

.fn-share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fn-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.15s;
}

.fn-share-btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

.fn-share-btn.facebook {
    background: #1877f2;
}

.fn-share-btn.x-twitter {
    background: #000;
}

.fn-share-btn.whatsapp {
    background: #25d366;
}

.fn-share-btn.email {
    background: #555;
}


/* ===============================================================
   SECTION HEADER  (related posts)
=============================================================== */

.fn-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fn-border);
}

.fn-section-title {
    font-size: 18px;
    font-weight: 700;
}


/* ===============================================================
   FOOTER
=============================================================== */

footer {
    background: #111827;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 48px;
    font-weight: 300;
}

.fn-footer-widgets {
    padding: 40px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fn-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
}

.fn-footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}

.fn-footer-about p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.fn-footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fn-footer-links li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.15s;
}

.fn-footer-links li a:hover {
    color: #fff;
    text-decoration: none;
}

.fn-footer-bar {
    padding: 14px 0;
}

.fn-footer-bar .fn-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fn-footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.fn-footer-nav ul {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fn-footer-nav ul li a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

.fn-footer-nav ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.fn-widget {
    margin-bottom: 16px;
}

.fn-footer-col-title.fn-widget-title,
h3.fn-footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}


/* ===============================================================
   LOAD MORE BUTTON
=============================================================== */

.fn-load-more-wrap {
    text-align: center;
    padding: 16px 0 8px;
}

#fn-load-more-btn {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    border: 2px solid var(--fn-accent);
    color: var(--fn-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
}

#fn-load-more-btn:hover {
    background: var(--fn-accent);
    color: #fff;
}

#fn-load-more-btn.loading,
#fn-load-more-btn.hidden {
    display: none;
}


/* ===============================================================
   STATIC PAGE
=============================================================== */

.fn-page-header {
    padding: 24px 0 18px;
    border-bottom: 2px solid var(--fn-border);
    margin-bottom: 28px;
}

.fn-page-title {
    font-size: 28px;
    text-align: center;
}

.fn-page-content {
    font-size: 16px;
    line-height: 1.65;
    max-width: 780px;
    margin: 0 auto;
}

.fn-page-content p {
    margin-bottom: 1.4em;
}

.fn-page-content h2 {
    font-size: 22px;
    margin: 28px 0 12px;
}

.fn-page-content h3 {
    font-size: 18px;
    margin: 20px 0 10px;
}

.fn-page-content ul,
.fn-page-content ol {
    padding-left: 24px;
    margin-bottom: 1.2em;
}

.fn-page-content ul {
    list-style: disc;
}

.fn-page-content ol {
    list-style: decimal;
}


/* ===============================================================
   RESPONSIVE  ≤1100px (tablet landscape)
=============================================================== */

@media (max-width: 1100px) {
    .fn-finance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .fn-markets-top {
        grid-template-columns: 1fr 1fr;
    }
    .fn-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ===============================================================
   RESPONSIVE  ≤840px (tablet portrait)
=============================================================== */

@media (max-width: 840px) {
    .fn-finance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fn-investing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fn-economy-mosaic {
        grid-template-columns: 1fr;
    }
    .fn-economy-stack {
        flex-direction: row;
    }
    .fn-economy-side {
        flex: 1;
    }
    .fn-markets-top {
        grid-template-columns: 1fr;
    }
    .fn-markets-bottom {
        grid-template-columns: 1fr 1fr;
    }
    .fn-markets-tv-widget {
        min-height: 300px;
    }
    .fn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fn-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fn-hamburger {
        display: block;
        margin-right: 0;
    }
    /* Mobile: header sticky con logo + hamburguesa lado a lado */
    .fn-header-top {
        position: sticky;
        top: 0;
        z-index: 250;
        padding: 10px 0;
    }
    .fn-header-top .fn-container {
        justify-content: space-between;
        gap: 12px;
        padding: 0 16px;
    }
    /* Navbar deja de ser sticky (el sticky lo asume el header-top) */
    .fn-navbar {
        position: static;
        border-bottom: none;
        box-shadow: none;
        background: transparent;
    }
    .fn-navbar .fn-container {
        padding: 0;
    }
    /* Cuando el hamburguesa está abierto, anclar el desplegable al header sticky */
    .fn-navbar:has(.fn-nav.open),
    .fn-navbar:has(.fn-mobile-subnav.open) {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 240;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .fn-mobile-subnav {
        display: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        background: #f8f8f8;
        border-top: 1px solid var(--fn-border);
        border-bottom: 1px solid var(--fn-border);
    }
    .fn-mobile-subnav.open {
        display: flex;
    }
    .fn-mobile-subnav a {
        font-family: 'Barlow Condensed', 'Libre Franklin', Arial Narrow, sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: #555;
        padding: 10px 20px;
        border-bottom: 1px solid var(--fn-border);
        text-decoration: none;
        width: 50%;
        box-sizing: border-box;
    }
    .fn-mobile-subnav a:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .fn-mobile-subnav a:nth-child(odd) {
        border-right: 1px solid var(--fn-border);
    }
    .fn-mobile-subnav a:hover {
        color: #000;
        background: #efefef;
    }
    .fn-mobile-bottomnav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #1a1f2e;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .fn-mobile-bottomnav.open {
        display: flex;
    }
    .fn-mobile-bottomnav a {
        font-size: 13px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.65);
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        text-decoration: none;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    .fn-mobile-bottomnav a:last-child {
        border-bottom: none;
    }
    .fn-mobile-login {
        color: var(--fn-accent) !important;
    }
    .fn-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
    }
    .fn-nav.open {
        display: flex;
    }
    .fn-nav li a {
        height: 44px;
        width: 100%;
        border-bottom: 1px solid var(--fn-border);
        margin-bottom: 0;
    }
    .fn-nav-home-desktop {
        display: none;
    }
}


/* ===============================================================
   RESPONSIVE  ≤767px (tablet/mobile — single column grids)
=============================================================== */

@media (max-width: 767px) {
    .fn-finance-grid {
        grid-template-columns: 1fr;
    }
    .fn-stocks-grid {
        grid-template-columns: 1fr;
    }
    .fn-investing-grid {
        grid-template-columns: 1fr;
    }
    .fn-markets-bottom {
        grid-template-columns: 1fr;
    }
    .fn-grid {
        grid-template-columns: 1fr;
    }
    .fn-economy-stack {
        flex-direction: column;
    }
    .fn-footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================================================
   RESPONSIVE  ≤600px (mobile)
=============================================================== */

@media (max-width: 600px) {
    .fn-logo-name {
        font-size: 20px;
    }
    .fn-date {
        display: none;
    }
    .fn-markets-tv-widget {
        display: none;
    }
    .fn-markets-art-item-img {
        width: 90px;
        height: 62px;
    }
    .fn-footer-bar .fn-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .fn-article-title {
        font-size: 24px;
    }
    .fn-share-buttons {
        flex-direction: column;
    }
    .fn-share-btn {
        justify-content: center;
    }
    .fn-indices-bar {
        display: none;
    }
    .fn-main {
        /*background: #fff;*/
    }
    .single-post .fn-main,
    .landing_article-template-default .fn-main {
        background: #fff;
        margin-bottom: -48px;
    }
    .fn-main .fn-container {
        padding: 0px;
    }
    .fn-main .fn-content,
    .fn-block {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* ===============================================================
   LANDING TEMPLATE  (landing pages with optional custom header/footer)
=============================================================== */


/* Container */

.landing-container {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Custom Header */

.landing-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.landing-header .landing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.landing-header .fn-logo-name {
    font-size: 39px;
}

.landing-logo {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.landing-logo span {
    color: #878787;
    font-weight: 500;
}

.landing-sponsored {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #000;
}

.landing-hide-mobile {
    display: inline;
}

.landing-hide-desk {
    display: none;
}

.landing-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-header-mobile-btns {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 16px;
    background: #000;
}

.landing-header-mobile-btns .landing-btn-login-mobile {
    border-color: #fff;
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
}

.landing-btn-subscribe {
    background-image: linear-gradient(165deg, #355fba 0, #182b54 100%);
    color: #fff;
    border: 2px solid transparent;
}

.landing-btn-subscribe:hover {
    background-image: linear-gradient(165deg, #5a8fe8 0, #2d5fbf 100%);
    color: #fff;
    text-decoration: none;
}

.landing-btn-login {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.landing-btn-login .fa-lock {
    color: #d4af37;
}

.landing-btn-login:hover {
    background: #333;
    border-color: #333;
    color: #fff;
    text-decoration: none;
}


/* Subheaders */

.landing-subheader-top {
    background: #000;
    color: #fff;
    padding: 12px 0;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.landing-subheader-bot {
    background: #c6c6c6;
    color: #000;
    padding: 7px 0 9px;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}

.landing-sep {
    padding: 0 25px;
}

.landing-sep2 {
    padding: 0 8px;
}

.land_ec_subheader_sep2 {
    padding-left: 10px;
    padding-right: 10px;
}


/* Intro bar (date + breadcrumb, loaded from custom field "land_intro") */

.landing-intro {
    background: transparent;
    border-bottom: 0px;
    padding: 10px 0;
    margin-bottom: 30px;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #000;
}


/* Body background override */

.landing-body {
    background: #fff;
}


/* Main layout */

.landing-main {
    padding: 0 0 40px;
}

.landing-content-wrap {
    display: flex;
    gap: 0;
}

.landing-content {
    flex: 1;
    min-width: 0;
    padding-top: 0;
}

.landing-sidebar {
    width: 290px;
    flex-shrink: 0;
    padding-left: 25px;
    align-self: flex-start;
    border-left: 1px solid #ccc;
}


/* Content block styles (from old .land_block) */

.land_block,
.land_block p {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 15px;
    color: #000;
}

.land_block b,
.land_block strong {
    font-weight: 700;
}

.land_block .small_text,
.land_block p.small_text {
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
    color: #6e6e6e;
}

.land_block h1,
.land_block h2,
.land_block h3,
.land_block h4,
.land_block h5 {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

.land_block h1 {
    font-size: 46px;
    line-height: 54px;
    font-weight: 700;
    margin-bottom: 15px;
}

.land_block .land_h1_cr_style {
    font-weight: 600;
    font-family: 'Merriweather', Georgia, serif;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.land_block .land_h1_cr_style_v2 {
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.land_block h2 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.land_block h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.land_image2 {
    max-width: 100% !important;
    width: auto;
    margin: 0 auto !important;
    display: block;
}

a.bluelink {
    color: #315a96;
    text-decoration: none;
}

a.bluelink:hover {
    color: #000;
    text-decoration: underline;
}

.yellow_back_block {
    display: inline;
    padding: 3px 0;
    background: #ffff79;
}

.yellow_back {
    display: inline;
    padding: 0 3px;
    background: #ff0;
}


/* Superscript references inside landing content */

.land_block sup {
    font-size: 0.7em;
    line-height: 1;
    color: #6e6e6e;
    vertical-align: super;
}


/* Section heading + subheading inside landing articles */

.land_block .land_inner_title {
    font-size: 30px;
    line-height: 34px;
    font-weight: 300;
    letter-spacing: 0;
    text-align: left;
    padding-top: 45px;
    margin-bottom: 15px;
}

.land_block .land_inner_title:not(:has(+ .land_inner_subtitle)) {
    margin-bottom: 30px;
}

.land_block .land_inner_subtitle {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: 400;
    text-align: left;
    text-wrap: pretty;
}

.land_block .land_inner_subtitle_v2 {
    line-height: 34px;
}

.land_block .land_inner_subtitle sup {
    font-size: 0.5em;
}


/* Hero deck — subtitle/deck line directly below page H1 */

.land_block .land_hero_deck {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 30px;
    text-wrap: pretty;
}


/* Legal note box (italic, gray bg) */

.land_block .text_legal_note {
    font-size: 12px;
    line-height: 2;
    text-align: justify;
    background: #f3f3f3;
    padding: 20px;
    margin-bottom: 30px;
    font-style: italic;
}


/* Green accent color (reusable) */

.green_default_color {
    color: #16a34a;
}


/* Alert box (blue info callout) */

.land_alert_box {
    background: linear-gradient(135deg, #e3f2fd 0, #bbdefb 100%);
    border-left: 6px solid #1976d2;
    padding: 25px 30px;
    margin: 40px 0;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .1);
}

.land_alert_box p:last-child {
    margin-bottom: 0;
}

.land_bullish_point {
    background-color: #f1f8ff;
    border-left: 5px solid #2196f3;
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .06);
}

.land_bullish_point p:last-child {
    margin-bottom: 0;
}

.land_bullish_point_v2 {
    background: linear-gradient(135deg, #e8eaf6 0, #c5cae9 100%);
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 6px solid #3f51b5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

.land_bullish_point_v2 p:last-child {
    margin-bottom: 0;
}

.land_container_conclusion {
    background-color: #f7fafc;
    border: 3px solid #2c5282;
    padding: 35px;
    border-radius: 10px;
    margin: 50px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.land_container_conclusion p:last-child {
    margin-bottom: 0;
}

.land_container_conclusion_title {
    font-size: 20px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 20px;
}

.land_container_conclusion_v2 {
    background: #f1f8ff;
    border: 3px solid #2c5282;
    padding: 35px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.land_container_conclusion_v2 p:last-child {
    margin-bottom: 0;
}

.land_container_conclusion_v2_title {
    color: #2c5282;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}

.land_block .land_container_conclusion_blue,
.land_block .land_container_conclusion_blue p {
    color: #1565c0;
}


/* Project card (properties showcase) */

.land_proj_card {
    border-radius: 28px;
    overflow: hidden;
    margin: 30px 0;
    background: linear-gradient(to left, #0e3364 0, #395376 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
}

.land_proj_label {
    padding: 16px 22px;
    background: rgba(255, 255, 255, .06);
}

.land_proj_badge {
    display: inline-block;
    background: rgba(8, 17, 29, .74);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
}

.land_proj_badge_br {
    display: none;
}

@media (max-width: 600px) {
    .land_proj_badge_sep {
        display: none;
    }
    .land_proj_badge_br {
        display: inline;
    }
}

.land_proj_image {
    background: #0a1828;
    padding: 16px;
    line-height: 0;
}

.land_proj_image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.land_proj_body {
    padding: 26px 28px 30px;
}

.land_proj_body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f1f5f9;
}

.land_proj_body>p {
    font-size: 16px;
    line-height: 1.65;
    color: #fff;
    margin-bottom: 20px;
}

.land_proj_metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 20px;
}

.land_proj_metric {
    text-align: center;
    padding: 10px 6px;
    background: rgba(255, 255, 255, .06);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.land_proj_metric strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.land_proj_metric span {
    font-size: 11px;
    color: #b7c6dd;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

@media (max-width: 600px) {
    .land_proj_metric strong {
        font-size: 18px;
    }
    .land_proj_metric span {
        font-size: 14px;
    }
}

.land_proj_list,
.land_block .land_proj_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.land_proj_list li {
    font-size: 15px;
    line-height: 1.55;
    color: #fff;
    padding: 8px 0 8px 20px;
    position: relative;
}

.land_proj_list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffa31c;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.land_proj_card a.bluelink {
    color: #7dd3fc;
}

.land_proj_card a.bluelink:hover {
    color: #fff;
}

.land_proj_card sup {
    color: #b7c6dd;
}

@media (max-width: 600px) {
    .land_proj_metrics {
        grid-template-columns: 1fr;
    }
}


/* Caption under landing images */

.land_text_under_img {
    font-size: 12px;
    line-height: 2;
    text-align: right;
    margin-bottom: 30px;
    padding-top: 3px;
    font-style: italic;
}

.land_logo_under_img {
    text-align: right;
    font-family: 'DM Serif Display', 'Merriweather', Georgia, serif;
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}


/* Focus card section (e.g., commodity price callouts) */

.land_focus_section {
    margin: 30px 0 45px;
}

.land_focus_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.land_focus_card {
    background: #eff5ff;
    border-radius: 18px;
    padding: 28px 30px;
    box-shadow: 0 12px 32px rgba(14, 51, 100, .18);
    text-align: left;
}

.land_focus_card_badge {
    display: inline-block;
    background: #cfe1ff;
    color: #0e3364;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.land_focus_card_title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.land_focus_card_price {
    font-size: 30px;
    font-weight: 800;
    color: #0e3364;
    line-height: 1.2;
    margin-bottom: 16px;
}

.land_block .land_focus_card p {
    color: #000;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 14px;
    text-wrap: pretty;
}

.land_block .land_focus_card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .land_focus_grid {
        grid-template-columns: 1fr;
    }
}


/* Pull-quote with green top/bottom rules (reusable) */

.green_pull_quote {
    border-top: 2px solid #0071c5;
    border-bottom: 2px solid #0071c5;
    padding: 18px 0;
    margin: 25px 0;
}


/* Yellow pin block (intro stock callout) */

.land_pin_block {
    background: linear-gradient(135deg, #fef9c3 0%, #fbbf24 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    padding: 22px 26px;
    margin: 0 0 32px;
    border-radius: 8px;
    position: relative;
}

.land_pin_inner {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.land_pin_content {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #000;
}

.land_pin_title {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.3;
}

.land_pin_text {
    font-size: 15px;
    line-height: 1.5;
}

.land_pin_text b {
    font-weight: 700;
}

.land_pin_company {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.land_pin_symbols {
    font-size: 17px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .land_pin_title {
        font-size: 16px;
    }
    .land_pin_company {
        font-size: 18px;
    }
    .land_pin_symbols {
        font-size: 13px;
    }
}


/* Team container */

#land_team_container {
    padding-left: 30px;
    padding-bottom: 20px;
    margin: 0;
}

#land_team_container .land_team_card {
    background: linear-gradient(to left, #0e3364 0, #395376 100%);
    border-radius: 24px;
    padding: 22px;
    margin-bottom: 20px;
}

#land_team_container .land_team_card .land_inner_subtitle {
    color: #fff;
}

#land_team_container .land_team_card .land_inner_subtitle:nth-of-type(2) {
    color: #9bddff;
    font-size: 21px;
    line-height: 26px;
}

#land_team_container .land_team_card p {
    color: #b7c6dd;
}

#land_team_container .land_team_card a.bluelink {
    color: #7dd3fc;
}

#land_team_container .land_team_card a.bluelink:hover {
    color: #fff;
}

#land_team_container .land_team_card sup {
    color: #b7c6dd;
}


/* Key reasons numbered list (CSS counter, no external images) */

#key_reasons {
    background: #f3f3f3;
    padding: 20px 20px 5px;
    margin-bottom: 30px;
    counter-reset: key_reason_counter;
}

.land_key_card {
    background: linear-gradient(to left, #0e3364 0, #395376 100%);
    border-radius: 24px;
    padding: 22px;
    margin-bottom: 20px;
    color: #b7c6dd;
}

.land_key_card .land_inner_subtitle {
    color: #fff;
}

.land_key_card p {
    color: #b7c6dd;
}

.land_key_card a.bluelink {
    color: #7dd3fc;
}

.land_key_card a.bluelink:hover {
    color: #fff;
}

.land_key_card sup {
    color: #b7c6dd;
}

.land_key_card_num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 22px;
    margin-bottom: 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #7dd3fc, #20b7ff);
    color: #000;
}

.land_key_card_title {
    font-size: 20px;
    margin-bottom: 6px;
    color: #fff;
    text-align: left;
}

#key_reasons .key_reason_title {
    font-size: 20px;
    margin-bottom: 6px;
}

.key_reasons {
    counter-increment: key_reason_counter;
    position: relative;
    padding-left: 56px;
    padding-bottom: 22px;
    min-height: 40px;
}

.key_reasons::before {
    content: counter(key_reason_counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    height: 38px;
    background: #1a1f2e;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}


/* Sources & Disclaimer */

#land_sources {
    margin-top: 60px;
    padding-top: 35px;
    margin-bottom: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

#land_sources p {
    color: #6e6e6e;
    margin-bottom: 0;
    overflow-wrap: anywhere;
}

#land_sources p.land_footer_title {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #6e6e6e;
    margin-bottom: 20px;
}

#land_disclaimer {
    margin-bottom: 50px;
    text-align: justify;
    color: #6e6e6e;
}

#land_disclaimer p {
    color: #6e6e6e;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 28px;
    overflow-wrap: anywhere;
}

#land_disclaimer .land_footer_title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    padding-bottom: 10px;
    text-align: left;
}


/* Centered landing variant (no sidebar, centered titles, gray disclaimer bg) */

.landing-main--centered .landing-content {
    max-width: 800px;
    margin: 0 auto;
    padding-right: 0;
}

.landing-main--centered .land_block h1,
.landing-main--centered .land_block .land_h1_cr_style,
.landing-main--centered .land_block .land_inner_title,
.landing-main--centered .land_block>.land_inner_subtitle,
.landing-main--centered .land_block #key_reasons>.land_inner_title,
.landing-main--centered .land_block #key_reasons>.land_inner_subtitle {
    text-align: center;
}

.landing-main--centered #land_disclaimer {
    background: #e6e6e6;
    box-shadow: 0 0 0 100vmax #e6e6e6;
    clip-path: inset(0 -100vmax);
    padding: 40px 0;
    margin-bottom: -40px;
}

.landing-main--centered #land_disclaimer .land_footer_title {
    text-align: center;
}


/* From around the web (inline in content) */

#land_footer_around {
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

#land_footer_around .land_footer_title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

#land_footer_around .landing-sb1-podcast {
    display: none;
}

#land_footer_around .landing-sb1-item:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

#land_footer_around .landing-sb1-item:last-child {
    border-bottom: none;
}

#land_footer_around_container {
    display: flex;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 21px;
    padding-top: 5px;
    padding-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc !important;
    overflow: hidden;
}

#land_footer_around_left {
    width: 200px;
    flex-shrink: 0;
}

#land_footer_around_left img {
    width: 100%;
    border-radius: 4px;
}

#land_footer_around_right {
    padding-left: 20px;
}

#land_footer_around_title {
    display: block;
    width: 100%;
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 6px;
}


/* Titles inside [landing_sidebar_1] when rendered inside #land_footer_around */

#land_footer_around .landing-sb1-title {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 17px;
}

#land_footer_around_text {
    line-height: 18px;
    margin-bottom: 4px;
}

#land_footer_around_author,
#land_footer_around_details {
    font-size: 13px;
    line-height: 18px;
    color: #6e6e6e;
}

.land_footer_title {
    font-size: 20px;
}


/* Custom Footer */

.landing-footer-menu {
    background: #000;
    color: #fff;
    padding: 15px 0;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    border-bottom: 2px solid #fff;
    text-align: left;
}

.landing-footer {
    background: #1a1f2e;
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
    margin-top: 0px;
}

.landing-footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.landing-footer-left {
    flex: 1;
}

.landing-footer-right {
    text-align: right;
    padding-top: 40px;
}

.landing-footer-btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 12px;
}

.landing-footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.landing-footer-copy a {
    color: rgba(255, 255, 255, 0.6);
}

.landing-block-resp {
    display: inline;
}


/* Responsive sidebar in content (shown on mobile) */

.responsive_sidebar {
    display: none;
}


/* Landing sidebar 1 shortcode [landing_sidebar_1] */

.landing-sb1-item {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.landing-sb1-item:first-child {
    border-top: 1px solid #ccc;
    padding-top: 15px;
    margin-top: 10px;
}

.landing-sb1-intro {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 6px;
}

.landing-sb1-title {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
}

.landing-sb1-title a {
    color: #000;
    text-decoration: none;
}

.landing-sb1-title a:hover {
    text-decoration: underline;
}

.landing-sb1-excerpt {
    font-size: 14px;
    line-height: 20px;
    color: #555;
}

.landing-sb1-time {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}


/* Landing sidebar podcast block */

.landing-sb1-podcast {
    border-bottom: 1px solid #ccc;
    padding: 15px 0 0;
}

.landing-sb1-podcast-wrap {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 15px;
}

.landing-sb1-podcast-icon {
    flex-shrink: 0;
    width: 50px;
}

.landing-sb1-podcast-icon img {
    width: 100%;
}

.landing-sb1-podcast-body {
    flex: 1;
}

.landing-sb1-podcast-sub {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    margin-bottom: 4px;
}

.landing-sb1-podcast .landing-sb1-excerpt {
    font-size: 13px;
    line-height: 18px;
}

.landing-sb1-podcast .landing-sb1-excerpt p {
    margin-bottom: 0;
}


/* Landing sidebar 2: Stock Info + Brokers [landing_sidebar_2_new] */

.landing-sb2 {
    margin-top: 30px;
    background-color: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    box-shadow: 0 6px 16px -2px rgba(0, 0, 0, .12);
    overflow: hidden;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    color: #000;
}

.landing-sb2-header {
    padding: 18px 18px 12px;
    color: #315a96;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
}

.landing-sb2-header-gray {
    background: linear-gradient(to right, #ddd 0, #c6c6c6 100%);
    color: #000;
}

.landing-sb2-inner {
    padding: 8px 18px 20px;
}

.landing-sb2-company {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    padding-bottom: 7px;
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
}

.landing-sb2-row {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px;
    border-radius: 8px;
    margin-top: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.landing-sb2-row .landing-btn-copy {
    margin-left: auto;
}

.landing-sb2-hide {
    display: none;
}

.landing-btn-copy {
    float: right;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-direction: row-reverse;
    padding: 6px 6px;
    background-image: linear-gradient(165deg, #355fba 0, #182b54 100%) !important;
    box-shadow: 5px 4px 25px 0 rgba(0, 80, 255, .16);
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 300;
    color: #fff;
    cursor: pointer;
    line-height: 16px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-image 0.25s ease;
}

.landing-btn-copy:hover {
    background-image: linear-gradient(165deg, #182b54 0, #0c1830 100%) !important;
}

.landing-btn-copy svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    display: block;
}

.landing-sb2-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 16px;
    background-image: linear-gradient(165deg, #355fba 0, #182b54 100%);
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none !important;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 80, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-image 0.25s ease;
}

.landing-sb2-btn:hover {
    background-image: linear-gradient(165deg, #5a8fe8 0, #2d5fbf 100%);
    box-shadow: 0 6px 18px rgba(0, 80, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.landing-sb2-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(14, 51, 100, 0.3), inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.landing-sb2-brokers {
    padding: 10px 18px;
}

.landing-sb2-logos {
    display: flex;
    flex-wrap: wrap;
}

.landing-sb2-logo {
    width: 50%;
    padding: 0 5px;
}

.landing-sb2-logo img {
    max-width: 100%;
    height: auto;
}

.landing-sb2-footer {
    background: linear-gradient(to right, #ddd 0, #c6c6c6 100%);
    padding: 8px 10px;
    text-align: right;
}

.landing-sb2-footer-logo {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 13px;
    color: #555;
    letter-spacing: 0.5px;
}

.landing-sb2-footer-logo span {
    color: #555;
}


/* Landing title responsive */

@media (min-width: 1024px) {
    .land_block h1.land_ec_font_h1c {
        font-size: 42px;
        line-height: 1.3;
    }
    .land_block h1.land_h1_cr_style_v2_small {
        font-size: 38px;
        line-height: 1.3;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .land_block h1.land_ec_font_h1c {
        font-size: 38px;
        line-height: 1.3;
    }
}


/* Landing utility: show/hide on phone */

img.show_phone {
    display: none;
}

@media (max-width: 959px) {
    img.hide_phone {
        display: none;
    }
    img.show_phone {
        display: block;
    }
}


/* Landing: bold ordered lists */

.land_block ol,
.land_block ul {
    padding-left: 30px;
    margin-bottom: 15px;
}

.land_block ol {
    font-weight: 700;
    list-style: decimal;
}

.land_block ul {
    list-style: disc;
}

.land_block ol li,
.land_block ul li {
    margin-bottom: 8px;
}

.land_block ol li p {
    font-weight: 300;
}

.img_cbc {
    width: 600px;
    max-width: 100%;
}


/* Desktop: content + sidebar side by side */

@media (min-width: 960px) {
    .landing-content {
        padding-right: 80px;
    }
    .land_block {
        text-align: justify;
    }
}

@media (min-width: 768px) and (max-width: 959px) {
    .landing-sidebar {
        display: none;
    }
    .responsive_sidebar {
        display: block;
    }
    .landing-content {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .landing-sidebar {
        display: none;
    }
    .responsive_sidebar {
        display: block;
    }
    .landing-content {
        padding-right: 0;
    }
    .landing-hide-mobile {
        display: none;
    }
    .landing-hide-desk {
        display: block;
    }
    .landing-header {
        padding: 18px 0;
        text-align: center;
    }
    .landing-header .landing-container {
        flex-direction: column;
        gap: 4px;
    }
    .landing-header-left {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .landing-header-left .fn-logo {
        display: block;
        text-align: center;
    }
    .landing-header-left .fn-logo-name {
        font-size: 30px;
    }
    .landing-header-left .fn-logo-tagline {
        display: none;
    }
    .landing-header-right {
        display: none;
    }
    .landing-header-mobile-btns {
        display: flex;
    }
    .landing-subheader-top {
        display: none;
    }
    .landing-subheader-bot {
        text-align: center;
        margin-bottom: 20px;
    }
    .landing-intro {
        text-align: center;
        margin-bottom: 10px;
    }
    .landing-sponsored {
        font-weight: 300;
    }
    .hide_phone {
        display: none !important;
    }
    .landing-footer-btns {
        justify-content: center;
    }
    .land_block h1 {
        font-size: 27px;
        line-height: 32px;
    }
    .land_block h2,
    .land_block .land_hero_deck {
        font-size: 23px;
        line-height: 28px;
    }
    #land_footer_around_container {
        display: block;
    }
    #land_footer_around_left {
        width: 100%;
        margin-bottom: 20px;
    }
    #land_footer_around_right {
        padding-left: 0;
    }
    .landing-footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .landing-footer-left,
    .landing-footer-left * {
        text-align: center;
    }
    .landing-footer-right {
        text-align: center;
    }
    .landing-block-resp {
        display: block;
        padding-bottom: 5px;
    }
    .landing-footer-menu {
        text-align: center;
    }
    .landing-footer-menu .landing-sep {
        display: none;
    }
}


/* Sidebar: latest articles (used by fn_landing_latest_articles) */

.fn-lp-latest-title {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--fn-text-light);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fn-border);
}

.fn-lp-latest {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}

.fn-lp-latest-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--fn-border);
    text-decoration: none;
    align-items: flex-start;
}

.fn-lp-latest-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fn-lp-latest-item:first-of-type {
    padding-top: 0;
}

.fn-lp-latest-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
}

.fn-lp-latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fn-lp-latest-body {
    flex: 1;
    min-width: 0;
}

.fn-lp-latest-headline {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--fn-text);
    line-height: 1.35;
    margin-bottom: 3px;
}

.fn-lp-latest-item:hover .fn-lp-latest-headline {
    color: var(--fn-accent);
}

.fn-lp-latest-date {
    font-size: 11px;
    color: var(--fn-text-light);
}


/* ===============================================================
   CONTACT US FULL-WIDTH SECTION  [contact_us_section]
=============================================================== */

.cr-contact-section {
    background-color: #202032;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 55px 20px 35px;
    color: #fff;
    /* Break out of page container to full viewport width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: -48px;
    /* kill gap with footer (footer has margin-top: 48px) */
}

.cr-contact-section-inner {
    max-width: 1130px;
    margin: 0 auto;
    text-align: center;
}

.cr-contact-section-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.4;
    color: #fff;
    max-width: 650px;
    margin: 0 auto 40px;
}

.cr-contact-section-btn {
    display: inline-block;
    padding: 14px 48px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: transparent;
    color: #fff !important;
    border: 2px solid #fff;
    border-radius: 4px;
    text-decoration: none !important;
    transition: all 0.2s;
}

.cr-contact-section-btn:hover {
    background: #fff;
    color: #202032 !important;
}

@media (max-width: 768px) {
    .cr-contact-section {
        padding: 60px 20px 50px;
    }
    .cr-contact-section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
}


/* Kill main padding-bottom when page ends with a full-width CTA section */

.fn-main:has(.cr-contact-section:last-child),
.fn-main:has(.fn-about-cta-section:last-child) {
    padding-bottom: 0 !important;
}


/* ===============================================================
   LOGIN PAGE  (standalone, added via WP editor HTML blocks)
=============================================================== */

.cr-login-page {
    background: #f6f6f6;
    padding: 35px 20px 55px;
    /* Break out of page container to full viewport width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.cr-login-inner {
    max-width: 990px;
    margin: 0 auto;
}

.cr-login-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--fn-accent);
    text-align: center;
    margin-bottom: 20px;
}

.cr-login-title_black {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.cr-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cr-login-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.cr-login-lead {
    font-size: 17px;
    line-height: 1.5;
    color: #171838;
    font-weight: 500;
    margin-bottom: 20px;
}

.cr-login-inner.cr-login-inner--narrow {
    max-width: 620px;
}


/* Reuse contact form styles for login form */

.cr-login-form .wpcf7 {
    max-width: 100%;
    margin: 0;
}

.cr-login-form .wpcf7-form {
    display: flex;
    flex-direction: column;
}

.cr-login-form .wpcf7-form p {
    margin: 0 0 18px !important;
}

.cr-login-form .wpcf7-form p:last-of-type {
    margin-bottom: 0 !important;
}

.cr-login-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 18px;
}

.cr-login-form .wpcf7-form-control-wrap:last-of-type {
    margin-bottom: 0;
}


/* Submit button spacing */

.cr-login-form input[type="submit"],
.cr-login-form .wpcf7-submit {
    margin-top: 8px;
}

.cr-login-form .wpcf7-form-control:not([type="submit"]):not(.wpcf7-acceptance) {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid var(--fn-border);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
}

.cr-login-form .wpcf7-form-control:not([type="submit"]):not(.wpcf7-acceptance):focus {
    border-color: var(--fn-accent);
}

.cr-login-form .wpcf7-submit {
    display: block;
    width: 100%;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--fn-accent);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s;
}

.cr-login-form .wpcf7-acceptance {
    margin: 6px 0 18px;
    font-size: 13px;
    color: var(--fn-text-light);
    line-height: 1.5;
}

.cr-login-form .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cr-login-form .wpcf7-acceptance .wpcf7-list-item-label {
    flex: 1;
}

.cr-login-form .wpcf7-acceptance input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.cr-login-form .wpcf7-submit:hover {
    background: #171838;
}

.cr-login-form .wpcf7-not-valid-tip {
    display: none !important;
}

.cr-login-form .wpcf7-not-valid {
    border-color: #dc2626 !important;
    background-color: #fff5f5;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'/%3e%3cline x1='6' y1='6' x2='18' y2='18'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    padding-right: 36px !important;
}

.cr-login-form .wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    border: none !important;
}


/* Always red on login (demo mode always rejects) */

.cr-login-form .wpcf7 .wpcf7-response-output {
    background: #fef2f2 !important;
    color: #991b1b !important;
    border-left: 4px solid #dc2626 !important;
}

@media (max-width: 768px) {
    .cr-login-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cr-login-page {
        padding: 40px 20px 60px;
    }
    .cr-login-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
}


/* ===============================================================
   CONTACT PAGE  (standalone, added via WP editor HTML blocks)
=============================================================== */

.cr-contact-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.cr-contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.cr-contact-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--fn-accent);
    margin-bottom: 20px;
}

.cr-contact-lead {
    font-size: 16px;
    line-height: 1.65;
    color: var(--fn-text-light);
    max-width: 100%;
    margin: 0 auto;
}

.cr-contact-form {
    margin-bottom: 40px;
}

.cr-contact-form .wpcf7 {
    max-width: 560px;
    margin: 0 auto;
}

.cr-contact-form .wpcf7-form {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cr-contact-form .wpcf7-form .column {
    box-sizing: border-box;
}

.cr-contact-form .wpcf7-form .column.one {
    width: 100%;
}

.cr-contact-form .wpcf7-form .column.one-second {
    width: calc(50% - 7px);
}

.cr-contact-form .wpcf7-form p {
    margin-bottom: 14px;
    width: 100%;
}

@media (max-width: 600px) {
    .cr-contact-form .wpcf7-form .column.one-second {
        width: 100%;
    }
}

.cr-contact-form .wpcf7-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--fn-text);
    margin-bottom: 6px;
}

.cr-contact-form .wpcf7-form-control:not([type="submit"]) {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid var(--fn-border);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
}

.cr-contact-form .wpcf7-form-control:not([type="submit"]):focus {
    border-color: var(--fn-accent);
}


/* Hide CF7 inline per-field error tooltips (we use red border + X icon instead) */

.cr-contact-form .wpcf7-not-valid-tip {
    display: none !important;
}


/* Style CF7 global response message (success / validation error) */

.cr-contact-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 14px 18px !important;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    border: none !important;
}


/* Success: green */

.cr-contact-form .wpcf7 form.sent .wpcf7-response-output {
    background: #ecfdf5;
    color: #065f46;
    border-left: 4px solid var(--fn-accent) !important;
}


/* Error (validation / mail failed): red */

.cr-contact-form .wpcf7 form.invalid .wpcf7-response-output,
.cr-contact-form .wpcf7 form.failed .wpcf7-response-output,
.cr-contact-form .wpcf7 form.spam .wpcf7-response-output {
    background: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #dc2626 !important;
}


/* Invalid field: red border + red X icon via SVG background */

.cr-contact-form .wpcf7-not-valid {
    border-color: #dc2626 !important;
    background-color: #fff5f5;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'/%3e%3cline x1='6' y1='6' x2='18' y2='18'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    padding-right: 36px !important;
}


/* Keep X icon visible for textareas too (in corner) */

.cr-contact-form textarea.wpcf7-not-valid {
    background-position: right 10px top 10px;
}

.cr-contact-form textarea.wpcf7-form-control {
    min-height: 140px;
    resize: vertical;
}

.cr-contact-form .wpcf7-submit {
    display: block;
    width: 100%;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--fn-accent);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s;
}

.cr-contact-form .wpcf7-submit:hover {
    background: var(--fn-accent-dark);
}

.cr-contact-divider {
    border: none;
    border-top: 1px solid var(--fn-border);
    margin: 40px 0;
}

.cr-contact-address {
    text-align: center;
}

.cr-contact-address-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fn-accent);
    margin-bottom: 10px;
}

.cr-contact-address p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fn-text);
}

@media (max-width: 600px) {
    .cr-contact-page {
        padding: 40px 20px 60px;
    }
    .cr-contact-title {
        font-size: 28px;
    }
}


/* ---------------------------------------------------------------------------
   ABOUT PAGE  (uses default page.php — classes added via WP editor HTML blocks)
   Hero breaks out of fn-container padding (20px each side) and fn-main top padding (32px).
   --------------------------------------------------------------------------- */

.fn-page-hero {
    position: relative;
    width: calc(100% + 40px);
    height: 360px;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -32px;
    overflow: hidden;
    background: #1e2530;
}

.fn-page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fn-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 0 20px 36px;
}

.fn-page-hero-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.fn-about-wrap,
.fn-thesis-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 0 72px;
}

.fn-about-intro {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--fn-accent);
}

.fn-about-intro h2,
.fn-thesis-intro h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.fn-about-intro p,
.fn-thesis-intro p {
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0 0 1em;
}

.fn-about-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.fn-about-cta .landing-btn {
    font-size: 14px;
    padding: 10px 22px;
}


/* Full-width CTA section with bg image + dark overlay */

.fn-about-cta-section {
    background-image: url('https://capitalrankings.com/wp-content/uploads/2026/04/home_wallet_bgsection4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: -48px;
}

.fn-about-cta-section-overlay {
    padding: 70px 20px 60px;
}

.fn-about-cta-section-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.fn-about-cta-section-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.fn-about-cta-section-lead {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 580px;
    margin: 0 auto 32px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.fn-about-cta-section .cr-contact-form {
    max-width: 480px;
    margin: 0 auto;
}

.fn-about-cta-section .cr-contact-form .wpcf7 {
    max-width: 480px;
}

@media (max-width: 768px) {
    .fn-about-cta-section-overlay {
        padding: 50px 20px 40px;
    }
    .fn-about-cta-section-title {
        font-size: 24px;
    }
    .fn-about-cta-section-lead br {
        display: none;
    }
}

.fn-about-section {
    margin-bottom: 36px;
}

.fn-about-section h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    padding-left: 14px;
    border-left: 3px solid var(--fn-accent);
}

.fn-about-section p {
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0 0 1em;
}

.fn-about-section ul,
.fn-about-section ol {
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
    padding-left: 24px;
    margin: 0 0 1em;
}

.fn-about-section ul {
    list-style: disc;
}

.fn-about-section ol {
    list-style: decimal;
}

.fn-about-section li {
    margin-bottom: 4px;
}

@media (max-width: 600px) {
    .fn-page-hero {
        height: 240px;
        margin-top: -32px;
    }
    .fn-page-hero-title {
        font-size: 26px;
    }
    .fn-about-intro h2 {
        font-size: 20px;
    }
}