:root {
    --df-primary: var(--ghost-accent-color);
    --df-primary-hover: color-mix(in srgb, var(--df-primary) 67%, #000);
    --df-accent: #93CCFF;
    --df-bg-light: #F4F7FA;
    --df-text-main: #2B2B2B;
    --df-text-muted: #52616B;
    --df-border: #C9D6DF;
    --df-white: #FFFFFF;
    --df-max-width: 1484px;
    --df-padding: 24px;
}

body.dailyforex-theme {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--df-text-main);
    background-color: var(--df-white);
    margin: 4px 0;
    text-align: right;

    -webkit-font-smoothing: antialiased;
}

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

.df-container-fluid {
    width: 100%;
    padding: 0 var(--df-padding);
}

/* Specific DailyForex Container Widths */
.df-container-wide {
    max-width: 1484px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.df-container-article {
    max-width: 856px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.df-font-oswald {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* Header - Identical Match */
.df-header {
    background: var(--df-white);
    height: 72px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
}

.df-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.df-logo img {
    height: 38px;
}

.df-nav {
    margin-left: 48px;
    margin-right: auto;
    height: 100%;
}

.df-nav-list {
    list-style: none;
    padding: 0;
    margin: 4px 0;
    text-align: left;

    display: flex;
    gap: 32px;
    height: 100%;
}

.df-nav-item {
    display: flex;
    align-items: center;
    position: static;
    /* Important for full-width megamenu */
    height: 100%;
}

.df-nav-item>a {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    color: var(--df-primary);
    text-decoration: none;
    transition: color 0.15s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.df-nav-item>a i {
    font-size: 10px;
    margin-top: 2px;
}

.df-nav-item:hover>a {
    color: var(--df-primary-hover);
}

/* Mega Menu Container */
.df-megamenu {
    position: absolute;
    top: 72px;
    /* Header height */
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 3px solid var(--df-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1500;
    padding: 40px 0;
}

.df-nav-item:hover .df-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.df-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.df-mega-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--df-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1px solid #F0F4F8;
    padding-bottom: 10px;
}

.df-mega-links {
    list-style: none;
    padding: 0;
    margin: 4px 0;
    text-align: left;

}

.df-mega-links li {
    margin-bottom: 12px;
}

.df-mega-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4A5568;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}

.df-mega-links a:hover {
    color: var(--df-primary);
    padding-left: 5px;
}

.df-mega-links a.df-view-more {
    color: #129AE7;
    font-weight: 700;
    margin-top: 20px;
    font-size: 13px;
    text-transform: uppercase;
}

/* Mega Feature Cards */
.df-mega-card {
    background: #F8FAFC;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #E2E8F0;
}

.df-mega-card.dark {
    background: #1A202C;
    color: #ffffff;
    border: none;
}

.df-mega-card.blue {
    background: #EBF8FF;
    border-color: #BEE3F8;
}

.df-mega-card h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--df-primary);
}

.df-mega-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #718096;
    margin-bottom: 20px;
}

.df-mega-card.dark p {
    color: #A0AEC0;
}

.df-btn-small {
    display: inline-block;
    background: var(--df-primary);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.df-btn-small.outline {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.df-btn-small:hover {
    filter: brightness(1.1);
}

.df-header-tools {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher Dropdown */
.df-lang-switcher {
    position: relative;
    padding: 10px 0;
    cursor: pointer;
}

.df-lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--df-primary);
    text-transform: uppercase;
}

.df-lang-current i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.df-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    min-width: 150px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1001;
    border: 1px solid #E2E8F0;
}

.df-lang-switcher:hover .df-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.df-lang-switcher:hover .df-lang-current i {
    transform: rotate(180deg);
}

.df-lang-dropdown a {
    display: block;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4A5568;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.df-lang-dropdown a:hover {
    background: #F1F5F9;
    color: var(--df-primary);
}

.df-lang-dropdown a.active {
    font-weight: 700;
    color: var(--df-primary);
    background: #F8FAFC;
}

.df-btn-start {
    background-color: var(--df-primary);
    color: var(--df-white);
    padding: 8px 24px;
    border-radius: 2px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 15px;
}

/* Hide mobile header elements on desktop */
.df-menu-toggle,
.df-mobile-drawer,
.df-broker-expand-btn,
.df-broker-scroll::after {
    display: none;
}

/* --- Top Online Forex Brokers Section --- */
.df-hero-dark {
    background: #ffffff url("../images/hero-bg.webp") no-repeat top center;
    background-size: 100% 230px;
    padding: 32px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.df-hero-title {
    font-family: 'Oswald', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 30px !important;
    text-transform: uppercase !important;
    text-align: center;
}

.df-broker-scroll {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding: 0 24px 20px;
    margin-bottom: 0;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.df-broker-scroll::-webkit-scrollbar {
    display: none;
}

/* Individual Card Styling */
.df-broker-card {
    background: #ffffff;
    width: 144px;
    min-width: 144px;
    height: 208px;
    border-radius: 8px;
    box-shadow: 0 8px 8px 0 rgba(147, 204, 255, 0.15);
    margin-right: 12px;
    padding: 16px 14px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease;
    text-align: center;
}

.df-broker-card:hover {
    transform: translateY(-4px);
}

/* Rank Badge - Top 3 Colors */
.df-card-rank {
    width: 24px;
    height: 24px;
    background-color: #C9D6DF;
    /* Default Gray for 4-10 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    position: static;
}

.df-broker-card:nth-child(1) .df-card-rank {
    background-color: var(--df-primary);
    /* Rank 1 */
}

.df-broker-card:nth-child(2) .df-card-rank {
    background-color: #1181C1;
    /* Rank 2 */
}

.df-broker-card:nth-child(3) .df-card-rank {
    background-color: #129AE7;
    /* Rank 3 */
}

/* Broker Logo */
.df-card-logo-container {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.df-card-logo {
    max-width: 110px;
    max-height: 40px;
    object-fit: contain;
}

.df-card-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* "Get Started" Button */
.df-card-btn {
    background-color: var(--df-primary);
    color: #ffffff !important;
    width: 120px;
    height: 32px;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease;
}

.df-card-btn:hover {
    background-color: #113370;
    text-decoration: none;
}

/* Card Disclaimer Text (under button if needed) */
.df-card-disclaimer {
    font-size: 8px;
    color: #999;
    line-height: 1.1;
    margin-top: 4px;
    height: 20px;
    overflow: hidden;
}

/* "Read Review" Link */
.df-card-review {
    color: var(--df-primary) !important;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    margin-top: 8px;
}

.df-card-review:hover {
    text-decoration: underline;
}

.df-more-link {
    color: var(--df-primary) !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin: 0 auto 0;
    text-decoration: none;
    background: transparent;
    display: block;
    text-align: center;
    width: fit-content;
}

.df-more-link:hover {
    text-decoration: underline;
}

/* Sidebar Elements */
.df-sidebar-ad {
    margin-bottom: 30px;
    text-align: center;
}

.df-ad-label {
    display: block;
    font-size: 10px;
    color: #A0AEC0;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.df-sidebar-ad img {
    width: 300px;
    height: auto;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
}

/* Sidebar Posts */
/* News & Market Analysis Section */
.df-market-analysis-section {
    padding: 40px 0;
    background: #ffffff;
}

.df-columns-wrapper {
    display: flex;
    gap: 32px;
}

.df-news-column-left {
    flex: 6.6;
    /* Approx 66% */
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.df-market-analysis-sidebar {
    flex: 3.4;
    /* Approx 34% */
    width: 524px;
    min-width: 524px;
    display: flex;
    flex-direction: column;
}

.df-news-grid {
    display: flex;
    gap: 32px;
}

.df-news-subgrid-small {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.df-news-subgrid-featured {
    flex: 2;
}

/* Post Cards */
.df-post-card {
    background: #fff;
    margin-bottom: 8px;
}

.df-post-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
}

.df-post-card-featured img {
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 16px;
}

.df-post-tag {
    display: inline-block;
    background-color: #E3F0FA;
    color: var(--df-primary);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.df-post-tag:hover {
    background-color: var(--df-primary);
    color: #ffffff;
}

.df-post-content h3 a,
.df-post-content h2 a {
    text-decoration: none;
    color: inherit;
}

.df-post-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #2B2B2B;
    margin: 0 0 8px;
    cursor: pointer;
}

.df-post-content h3:hover {
    color: var(--df-primary);
}

.df-post-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #2B2B2B;
    margin: 0 0 12px;
    cursor: pointer;
}

.df-post-content h2:hover {
    color: var(--df-primary);
}

.df-post-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #2B2B2B;
    margin: 4px 0;
    text-align: justify;

}

.df-premium-token {
    color: #129AE7;
    font-size: 14px;
    margin-left: 4px;
}

/* Currency Browse Bar - Redesigned */
.df-currency-box {
    margin-top: auto;
    border-radius: 4px;
    overflow: hidden;
    border-bottom: 1px solid #C9D6DF;
}

.df-currency-box-head {
    background: #E3F0FA;
    height: 52px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #C9D6DF;
}

.df-currency-box-head i {
    font-size: 20px;
    color: var(--df-primary);
}

.df-currency-box-head h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--df-primary);
    text-transform: uppercase;
    margin: 4px 0;
    text-align: right;

}

.df-currency-browse-bar {
    background: #ffffff;
    height: 52px;
    padding: 0 24px;
    display: flex;
    align-items: center;
}

.df-currency-pairs-list {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.df-currency-pairs-list a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--df-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.df-currency-pairs-list a:hover {
    text-decoration: underline;
}

.df-currency-pairs-list .df-v-divider {
    width: 1px;
    height: 22px;
    background-color: #C9D6DF;
}

.df-currency-pairs-list .df-browse-all {
    font-weight: 400;
}

.df-currency-icon {
    font-size: 14px;
    color: var(--df-primary);
}

/* Sidebar Specific Styles */
.df-sidebar-header {
    background: #E7EEF8;
    color: #2B2B2B;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 4px 4px 0 0;
    text-transform: uppercase;
}

.df-sidebar-list {
    border: 1px solid #E1E9F1;
    border-top: none;
    border-bottom: none;
}

.df-sidebar-item {
    padding: 20px;
    border-bottom: 1px solid #E1E9F1;
}

.df-item-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #7C8E9A;
    margin-bottom: 8px;
}

.df-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #2B2B2B;
    text-decoration: none;
    line-height: 1.5;
    display: block;
}

.df-item-title:hover {
    color: var(--df-primary);
}

.df-sidebar-footer {
    background: #F1F5F9;
    padding: 16px 20px;
    border: 1px solid #E1E9F1;
    border-radius: 0 0 4px 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.df-sidebar-footer span {
    color: #2B2B2B;
}

.df-sidebar-footer a {
    color: var(--df-primary);
    text-decoration: none;
    font-weight: 400;
}

.df-sidebar-footer a:hover {
    text-decoration: underline;
}

.df-sidebar-footer .df-sep {
    color: #E1E9F1;
}

/* Brokers Lists & Promotions Section */
.df-brokers-lists-section {
    background: #ffffff url("../images/hero-bg.webp") no-repeat top center;
    background-size: 100% 340px;
    padding: 64px 0 0;
    margin-bottom: 120px;
    /* Space for bottom overflow */
}

.df-lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.df-list-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.df-about-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--df-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.df-about-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 15px;
}

.df-about-footer-links {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4A5568;
    margin-bottom: 40px;
}

.df-about-footer-links a {
    color: #129AE7;
    text-decoration: underline;
    font-weight: 600;
}

.df-about-footer-links a:hover {
    color: var(--df-primary);
}

/* Author Bio Box */
.df-author-bio-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background: #F8FAFC;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    margin-top: 20px;
}

.df-author-avatar {
    flex-shrink: 0;
}

.df-author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.df-author-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: var(--df-primary);
    margin: 0 0 10px;
    text-transform: uppercase;
}

.df-author-info p {
    font-size: 14px;
    line-height: 1.5;
    margin: 4px 0;
    text-align: left;

}

.df-author-info a {
    color: #129AE7;
    font-weight: 600;
    text-decoration: none;
}

.df-author-info a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .df-author-bio-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.df-list-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--df-primary);
    margin: 0 0 24px;
    text-transform: uppercase;
    line-height: 1.2;
}

.df-link-list {
    list-style: none;
    padding: 0;
    margin: 4px 0;
    text-align: right;
}

.df-link-list li {
    padding: 14px 0;
    border-bottom: 1px solid #E1E9F1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.df-link-list li:last-child {
    border-bottom: none;
}

.df-link-list a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--df-primary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.15s ease;
}

.df-link-list a:hover {
    color: #113370;
    text-decoration: underline;
}

.df-link-list i {
    font-size: 12px;
    color: #129AE7;
    /* Slightly brighter blue for icon */
    opacity: 0.8;
}

/* Promotions Column Styles */
.df-promotions-list {
    display: flex;
    flex-direction: column;
}

.df-promo-item {
    background: #ffffff;
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #E1E9F1;
}

.df-promo-item:last-child {
    border-bottom: none;
}

.df-promo-logo {
    width: 90px;
    height: 40px;
    object-fit: contain;
}

.df-promo-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: var(--df-primary);
    text-decoration: none;
    font-weight: 400;
}

.df-promo-text:hover {
    text-decoration: underline;
}

.df-view-all-btn {
    display: block;
    width: 100%;
    margin-top: auto;
    /* Push to bottom of flex container */
    padding: 10px;
    border: 1px solid var(--df-primary);
    border-radius: 2px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--df-primary);
    text-decoration: none;
    transition: background-color 0.2s ease;
    margin-top: 24px;
}

.df-view-all-btn:hover {
    background: #F0F7FF;
    text-decoration: none;
}


/* Bottom Split Layout */
.df-bottom-content-section {
    padding: 60px 0;
    background: #ffffff;
}

.df-bottom-split {
    display: grid;
    grid-template-columns: 2fr 320px;
    gap: 40px;
}

.df-bottom-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.df-bottom-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.df-bottom-ad-box {
    text-align: center;
    border: 1px solid #E2E8F0;
    padding: 20px;
    border-radius: 8px;
    background: #F8FAFC;
}

.df-bottom-ad-box img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    justify-self: center;
}

.df-mini-jumpstart {
    background: var(--df-primary);
    border-radius: 8px;
    padding-block: 30px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 20px rgba(21, 65, 143, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.df-mini-jumpstart img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.df-mini-jumpstart h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.2;
    margin-inline: 30px;
}

.df-mini-jumpstart p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
    margin-inline: 30px;
}

.df-mini-jumpstart .df-btn-primary {
    display: block;
    background: #ffffff;
    color: var(--df-primary);
    padding: 10px;
    border-radius: 2px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    margin-inline: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .df-bottom-split {
        grid-template-columns: 1fr;
    }

    .df-bottom-posts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .df-bottom-posts-grid {
        grid-template-columns: 1fr;
    }
}


/* Sticky Bottom CTA */
.df-sticky-cta {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--df-accent);
    padding: 10px 0;
    z-index: 3000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.df-sticky-cta-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.df-sticky-cta span {
    font-weight: 600;
    font-size: 16px;
    color: var(--df-primary);
}

.df-btn-sticky {
    background: var(--df-primary);
    color: white;
    padding: 4px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

/* Most Visited Brokers Section */
.df-most-visited-section {
    background: #0D2140 url("../images/most-visited-bg.png") no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    color: #ffffff;
}

.df-most-visited-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.df-visited-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.df-visited-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 80px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.df-visited-card:hover {
    transform: translateY(-5px);
}

.df-visited-num {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #129AE7;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

.df-visited-card img {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    margin-left: 15px;
    /* Offset for number */
}

/* As Seen On Section */
.df-as-seen-on {
    padding: 40px 0;
    background: #ffffff;
    border-bottom: 1px solid #E1E9F1;
}

.df-as-seen-on h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #2B2B2B;
    margin-bottom: 30px;
}

.df-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

.df-logos-row img {
    height: 20px;
    width: auto;
    /* filter: grayscale(100%) contrast(0.5); */
    opacity: 0.6;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.df-logos-row img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 1100px) {
    .df-visited-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .df-visited-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .df-visited-grid {
        grid-template-columns: 1fr;
    }
}

/* Side Elements */
.df-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 100px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 3000;
}

.df-side-badge {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: #FFD400;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    z-index: 3000;
}

/* Footer Main */
/* Main Footer Styling */
.df-footer {
    background: #ffffff;
    border-top: 1px solid #E1E9F1;
    padding-top: 60px;
}

.df-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.df-footer-logo {
    height: 35px;
    margin-bottom: 25px;
    display: block;
}

.df-footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.df-footer-social a {
    color: #4A5568;
    font-size: 18px;
    transition: color 0.2s ease;
}

.df-footer-social a:hover {
    color: #129AE7;
}

.df-footer-info p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: #718096;
    margin: 4px 0;
    text-align: left;
}

.df-footer-info a {
    color: #718096;
    text-decoration: none;
}

.df-footer-info .df-copyright {
    margin-top: 15px;
    color: #A0AEC0;
}

.df-footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--df-primary);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.df-footer-links {
    list-style: none;
    padding: 0;
    margin: 4px 0;
    text-align: left;
}

.df-footer-links li {
    margin-bottom: 12px;
}

.df-footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4A5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.df-footer-links a:hover {
    color: #129AE7;
}

/* Footer Bottom Section */
.df-footer-bottom {
    border-top: 1px solid #F0F4F8;
    padding: 30px 0;
}

.df-language-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.df-language-selector span {
    color: #718096;
    font-weight: 600;
}

.df-language-selector a {
    color: #718096;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.df-language-selector a.active,
.df-language-selector a:hover {
    color: var(--df-primary);
    font-weight: 700;
}

/* Risk Disclaimer Wrapper */
.df-risk-wrapper {
    background: #F8F9FA;
    padding: 60px 0;
    border-top: 1px solid #E1E9F1;
}

.df-risk-disclaimer p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    line-height: 1.8;
    color: #718096;
    text-align: center;
    margin: 4px 0;
}

.df-risk-disclaimer strong {
    color: #2D3748;
}

.df-risk-disclaimer a {
    color: #129AE7;
    text-decoration: none;
    font-weight: 600;
}

.df-risk-disclaimer a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .df-footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .df-footer-main {
        grid-template-columns: 1fr;
    }

    .df-language-selector {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- Post Page Styles --- */
.df-post-page {
    background: #ffffff;
    padding-top: 30px;
    padding-bottom: 60px;
}

.df-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #718096;
    margin-bottom: 30px;
}

.df-breadcrumbs a {
    color: var(--df-primary);
    text-decoration: none;
}

.df-breadcrumbs i {
    font-size: 10px;
    color: #A0AEC0;
}

.df-post-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 50px;
}

.df-article-header {
    margin-bottom: 30px;
}

.df-article-tag {
    display: inline-block;
    background: #EBF8FF;
    color: var(--df-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.df-article-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1A202C;
    margin-bottom: 25px;
}

.df-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 30px;
}

.df-author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.df-author-thumb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.df-author-text {
    display: flex;
    flex-direction: column;
}

.df-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #2D3748;
}

.df-author-name a {
    color: var(--df-primary);
    text-decoration: none;
}

.df-post-date {
    font-size: 13px;
    color: #718096;
}

.df-meta-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.df-read-time {
    font-size: 13px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 6px;
}

.df-share-icons {
    display: flex;
    gap: 12px;
}

.df-share-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transition: opacity 0.2s;
}

.df-share-icons a:hover {
    opacity: 0.8;
}

.share-fb {
    background: #1877F2;
}

.share-x {
    background: #000000;
}

.share-li {
    background: #0A66C2;
}

.share-wa {
    background: #25D366;
}

.df-feature-image {
    margin: 0 0 40px 0;
}

.df-feature-image img {
    width: 100%;
    border-radius: 8px;
}

/* Post Content Typography */
.df-post-content {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #2D3748;
}

.df-post-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: var(--df-primary);
    margin: 40px 0 20px;
    text-transform: uppercase;
}

.df-post-content p {
    margin-bottom: 25px;
}

.df-post-content strong {
    color: #1A202C;
}

/* Sidebar Styles */
.df-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.df-sidebar-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 8px;
}

.df-sidebar-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--df-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-block: 15px;
    border-bottom: 2px solid #EBF1F7;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.df-sidebar-broker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 12px;
    border-bottom: 1px solid #F0F4F8;
    transition: background 0.2s;
}

.df-sidebar-broker-item:hover {
    background: #F8FAFC;
}

.df-sidebar-broker-item .df-rank {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    background: #CBD5E0;
    /* Default gray for lower ranks */
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.df-sidebar-broker-item:nth-child(1) .df-rank {
    background: var(--df-primary);
}

.df-sidebar-broker-item:nth-child(2) .df-rank {
    background: #1181C1;
}

.df-sidebar-broker-item:nth-child(3) .df-rank {
    background: #129AE7;
}

.df-broker-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.df-broker-link img {
    width: 80px;
    height: auto;
}

.df-broker-link span {
    font-size: 14px;
    font-weight: 700;
    color: #2D3748;
    transition: color 0.2s;
}

.df-sidebar-broker-item:hover .df-broker-link span {
    color: var(--df-primary);
}

.df-sidebar-view-all {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #129AE7;
    text-decoration: none;
}

.df-sidebar-view-all:hover {
    text-decoration: underline;
    color: var(--df-primary);
}

.df-sidebar-ad-box {
    text-align: center;
}

.df-ad-label {
    display: block;
    font-size: 10px;
    color: #A0AEC0;
    margin-bottom: 8px;
}

.df-sidebar-ad-box img {
    max-width: 100%;
    border-radius: 4px;
}

.df-mini-news-item {
    padding: 12px 0;
    border-bottom: 1px solid #F0F4F8;
}

.df-news-date {
    display: block;
    font-size: 11px;
    color: #129AE7;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.df-mini-news-item a {
    font-size: 14px;
    font-weight: 600;
    color: #2D3748;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

.df-sidebar-newsletter {
    background: var(--df-primary);
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.df-sidebar-newsletter h3 {
    font-family: 'Oswald';
    font-size: 22px;
    margin-bottom: 15px;
}

.df-sidebar-newsletter p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.df-newsletter-mini input {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: none;
    margin-bottom: 12px;
}

.df-newsletter-mini button {
    width: 100%;
    padding: 12px;
    background: #FFD400;
    color: var(--df-primary);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .df-post-split {
        grid-template-columns: 1fr;
    }

    .df-article-title {
        font-size: 32px;
    }
}

/* Sidebar Expanded Broker List */
.df-sidebar-list-expanded {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.df-sidebar-broker-row-wrapper {
    padding: 8px 16px;
    border-bottom: 1px solid #EBF1F7;
    transition: background 0.2s;
}

.df-sidebar-broker-row-wrapper:hover {
    background: #F8FAFC;
}

.df-sidebar-broker-row-wrapper:nth-child(1) {
    background: rgba(147, 204, 255, .25);
}

.df-sidebar-broker-row-wrapper:nth-child(2) {
    background: rgba(147, 204, 255, .15);
}

.df-sidebar-broker-row-wrapper:nth-child(3) {
    background: rgba(147, 204, 255, .08);
}

.df-sidebar-broker-row-wrapper:last-child {
    border-bottom: none;
}

.df-sidebar-broker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.df-broker-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
}

.df-broker-rank-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.df-broker-rank-box .df-rank {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    background: #CBD5E0;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.df-sidebar-broker-row-wrapper:nth-child(1) .df-rank {
    background: var(--df-primary);
}

.df-sidebar-broker-row-wrapper:nth-child(2) .df-rank {
    background: #1181C1;
}

.df-sidebar-broker-row-wrapper:nth-child(3) .df-rank {
    background: #129AE7;
}

.df-broker-brand img {
    max-width: 110px;
    max-height: 40px;
    object-fit: contain;
}

.df-broker-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.df-broker-rating i {
    color: #FFC000;
    /* Richer Gold */
    font-size: 11px;
}

.df-broker-rating span {
    font-size: 13px;
    font-weight: 700;
    color: #4A5568;
    margin-left: 6px;
}

.df-broker-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: auto;
}

.df-broker-actions .df-btn-small {
    width: 120px;
    padding: 10px 0;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    background: var(--df-primary);
    text-align: center;
    height: auto;
    display: block;
}

.df-link-review {
    font-size: 13px;
    font-weight: 500;
    color: #129AE7;
    text-decoration: none;
    transition: color 0.15s;
}

.df-link-review:hover {
    text-decoration: underline;
    color: var(--df-primary);
}

.df-broker-disclaimer {
    font-size: 8px;
    color: #718096;
    line-height: 1.1;
    display: block;
    margin: 4px 0;
    text-align: center;
    max-width: 100px;
}

/* Bonuses & Promotions Sidebar Section */
.df-promo-box .df-sidebar-card {
    padding: 16px;
}

.df-promo-list {
    display: flex;
    flex-direction: column;
}

.df-promo-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.df-promo-logo {
    display: block;
    width: 110px;
    flex-shrink: 0;
}

.df-promo-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.df-promo-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--df-primary);
    text-decoration: none;
    line-height: 1.4;
    font-weight: 500;
    transition: color 0.15s ease;
}

.df-promo-text:hover {
    text-decoration: underline;
    color: var(--df-primary-hover);
}

.df-promo-separator {
    height: 1px;
    background-color: #EBF1F7;
    width: 100%;
}

.df-promo-view-all {
    display: block;
    text-align: center;
    border: 1px solid var(--df-primary);
    color: var(--df-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 10px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.df-promo-view-all:hover {
    background-color: var(--df-primary);
    color: #FFFFFF;
}

/* Most Visited Brokers Table */
.mvbr-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    background: transparent;
    border: none;
    padding: 0;
}

.mvbr-header {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.mvbr-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2B2B2B;
    margin: 0;
    text-transform: none;
}

.mvbr-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

.mvbr-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.3s ease;
    height: 56px;
    gap: 8px;
    border: 1px solid rgba(131, 172, 226, 0.2);
    flex: 1;
    min-width: 160px;
    max-width: 176px;
}

.mvbr-item.mvbr-1 {
    background-color: rgba(147, 204, 255, 0.25);
    border: none;
}

.mvbr-item.mvbr-2 {
    background-color: rgba(147, 204, 255, 0.20);
    border: none;
}

.mvbr-item.mvbr-3 {
    background-color: rgba(147, 204, 255, 0.15);
    border: none;
}

.mvbr-item:hover {
    background-color: #F8FAFC;
}

.mvbr-index {
    width: 24px;
    height: 24px;
    background-color: #CBD5E0;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    flex-shrink: 0;
}

.mvbr-item.mvbr-1 .mvbr-index {
    background-color: var(--df-primary);
}

.mvbr-item.mvbr-2 .mvbr-index {
    background-color: #2D79C7;
}

.mvbr-item.mvbr-3 .mvbr-index {
    background-color: #4CA1E3;
}

.mvbr-item img {
    height: 40px;
    width: 110px;
    object-fit: contain;
    display: block;
}

/* Latest & Related News Wrapper */
.related-reading {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .related-reading {
        flex-direction: column;
    }
}

.related-reading-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-reading-box h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2B2B2B;
    margin: 0;
    line-height: 36px;
    text-transform: none;
}

.related-article-list {
    display: flex;
    flex-direction: column;
}

.related-article-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
}

.related-article-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.related-article-image-wrapper {
    flex-shrink: 0;
}

.related-article-image-wrapper img {
    width: 120px;
    height: 67.5px;
    object-fit: cover;
    border-radius: 0px;
    display: block;
}

.related-article-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #2B2B2B;
    line-height: 22.5px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-article-title:hover {
    color: var(--df-primary);
}

.related-article-card .caption {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #52616B;
    line-height: 18px;
    margin: 0;
}

.related-article-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.related-article-footer a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--df-primary);
    text-decoration: none;
    font-weight: 400;
}

.related-article-footer a:hover {
    text-decoration: underline;
}

.related-article-footer .vertical-divider {
    border-left: 1px solid var(--df-primary);
    height: 16px;
}

.related-article-list .horizontal-divider {
    border-top: 1px solid #C9D6DF;
    width: 100%;
    margin-bottom: 16px;
}

.related-reading-box .view-more {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--df-primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
}

.related-reading-box .view-more:hover {
    color: var(--df-primary-hover);
    text-decoration: underline;
}

/* -------------------------------------
   Tag Archive 3-Column Layout 
-------------------------------------- */
.df-tag-split {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 360px;
    gap: 40px;
}

@media (max-width: 1200px) {
    .df-tag-split {
        grid-template-columns: 1fr;
    }
}

/* Breadcrumbs (Tag Page) */
.top-breadcrumbs-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0;
    margin: 30px 0 20px 0;
}

.dfx-common-breadcrumbs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 8px;
}

.dfx-common-breadcrumbs li {
    font-family: 'Minion Pro Cond Bold', 'Georgia', serif;
    font-size: 14px;
    font-weight: 700;
    color: #2B2B2B;
}

.dfx-common-breadcrumbs li.df-breadcrumb a {
    color: var(--df-primary);
    text-decoration: none;
}

.dfx-common-breadcrumbs li.df-breadcrumb::after {
    content: "›";
    margin-left: 8px;
    color: #2B2B2B;
    font-weight: 400;
}

.advertiser-disclosure-container .adv-disclosure {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #52616B;
    cursor: pointer;
    text-decoration: underline;
}

/* Category Sidebar (Left) */
.df-category-sidebar {
    width: 100%;
}

.category-list-box .title-container h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2B2B2B;
    margin: 0 0 10px 0;
    padding-bottom: 20px;
    letter-spacing: 0.5px;
}

.category-list-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list-box ul li {
    border-bottom: 1px solid #C9D6DF;
}

.category-list-box ul li:last-child {
    border-bottom: none;
}

.category-list-box ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--df-primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-list-box ul li a:hover {
    color: #2D79C7;
}

.category-list-box ul li a i {
    font-size: 12px;
    color: var(--df-primary);
    transition: transform 0.2s ease;
}

.category-list-box ul li a:hover i {
    transform: translateX(3px);
}

/* Tag Archive Post List Feed */
.df-tag-post-list {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.df-tag-article {
    border-top: 1px solid #C9D6DF;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
}

.df-tag-article:first-child {
    border-top: none;
    padding-top: 0;
}

.df-tag-article-top-label {
    display: flex;
    justify-content: flex-end;
    height: 24px;
    margin-bottom: 4px;
}

.df-editors-choice {
    background-color: rgba(131, 172, 226, 0.2);
    color: var(--df-primary);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    padding: 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.df-tag-article-body {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.df-tag-article-image {
    flex-shrink: 0;
}

.df-tag-article-image img {
    width: 120px;
    height: 68px;
    object-fit: cover;
    display: block;
}

.df-tag-article-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.df-tag-article-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--df-primary);
    line-height: 1.5;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.df-tag-article-title:hover {
    color: #2D79C7;
}

.df-tag-article-description {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #52616B;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.df-tag-article-meta {
    display: flex;
    align-items: center;
    gap: 0;
}

.df-tag-article-type,
.df-tag-article-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #52616B;
}

.df-tag-article-meta .df-meta-vertical-line {
    width: 1px;
    height: 14px;
    background-color: #C9D6DF;
    margin: 0 16px;
}

/* Tag Archive Content Header */
.df-tag-content-column {
    max-width: 744px;
    margin: 0;
    padding: 0;
    margin-bottom: 24px;
}

.df-tag-page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #2B2B2B;
    line-height: 69px;
    margin: 0;
    text-align: left;
    text-transform: none;
}

.df-tag-content-body {
    margin-top: 24px;
}

.df-tag-category-intro p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #2B2B2B;
    line-height: 22.5px;
    margin: 0;
}

/* Author Details Header */
.df-author-head-block {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
    margin-bottom: 24px;
    align-items: center;
}

.df-author-image img.image {
    width: 120px;
    height: 120px;
    border: 2px solid var(--df-primary);
    border-radius: 80px;
    object-fit: cover;
    display: block;
}

.df-author-info {
    display: flex;
    flex-direction: column;
}

.df-author-info h1.name {
    font-family: 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #2B2B2B;
    line-height: 69px;
    margin: 0;
    text-transform: none;
}

.df-author-info h1.name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.df-author-info h1.name a:hover {
    color: var(--df-primary);
}

.df-author-info h2.title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2B2B2B;
    margin: 8px 0px;
    text-transform: none;
}

.df-author-info .work-details {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.df-author-info .published-articles {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #52616B;
}

.df-author-info .contact-methods {
    display: flex;
    gap: 12px;
    align-items: center;
}

.df-author-info .contact-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--df-primary);
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease;
}

.df-author-info .contact-item a:hover {
    opacity: 0.8;
}

.df-author-info .contact-item a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.df-author-bio-section {
    margin-bottom: 40px;
}

.df-author-bio-section .about-author-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2B2B2B;
    margin: 0 0 12px 0;
}

.df-author-bio-section p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 22.5px;
    color: #2B2B2B;
}

@media (max-width: 768px) {
    .df-author-head-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .df-hero-dark {
        background-image: linear-gradient(180deg, var(--df-primary) 0%, #4D87E6 100%);
        background-size: cover;
        padding: 40px 0 24px;
    }

    .df-hero-title {
        font-size: 28px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        margin-bottom: 24px !important;
        padding: 0 16px;
        text-align: center;
    }

    .df-broker-scroll {
        flex-direction: column;
        padding: 0 16px;
        gap: 12px;
        overflow-x: visible;
    }

    .df-broker-card {
        width: 100%;
        min-width: 100%;
        flex-direction: row;
        height: auto;
        padding: 16px;
        margin-right: 0;
        justify-content: space-between;
        align-items: center;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .df-card-rank {
        margin-bottom: 0;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .df-card-logo-container {
        margin-bottom: 0;
        width: auto;
        flex-grow: 1;
        justify-content: flex-start;
        padding: 0 12px;
    }

    .df-card-logo {
        max-width: 100px;
    }

    .df-broker-card .df-card-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        min-width: 100px;
    }

    /* Wrap buttons in a container in hero.hbs if necessary, but here we can target them directly if they are siblings */
    .df-card-btn {
        width: 100px;
        height: 32px;
        font-size: 13px;
        margin-top: 0;
    }

    .df-card-review {
        margin-top: 2px;
        font-size: 12px;
    }

    .df-more-link {
        font-size: 15px;
        color: #ffffff !important;
        margin-top: 24px;
        padding-bottom: 24px;
    }

    /* Expand/Collapse Logic */
    .df-broker-scroll-wrapper {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .df-broker-scroll {
        max-height: 400px;
        /* Approximately 4 cards (card=80px + gap=12px = 92px * 4 = 368px + safety) */
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        position: relative;
        padding-bottom: 40px;
    }

    .df-header {
        height: 60px;
        padding: 0;
    }

    .df-logo img {
        height: 32px;
    }

    .df-nav {
        display: none;
        /* Hide desktop nav */
    }

    .df-header-tools {
        gap: 12px;
    }

    .df-search-trigger,
    .df-user-icon {
        display: none;
        /* Hide individual icons on mobile, move to drawer if needed or keep as per reference */
    }

    .df-lang-switcher {
        margin-right: 4px;
    }

    .df-lang-current span {
        font-size: 13px;
    }

    .df-btn-start {
        padding: 6px 12px;
        font-size: 13px;
        height: 32px;
        display: flex;
        align-items: center;
    }

    /* Hamburger Menu Toggle */
    .df-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: 8px;
        z-index: 3001;
    }

    .df-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--df-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    body.mobile-menu-open .df-menu-toggle span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    body.mobile-menu-open .df-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.mobile-menu-open .df-menu-toggle span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    /* Mobile Drawer */
    .df-mobile-drawer {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #FFFFFF;
        z-index: 2500;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    body.mobile-menu-open .df-mobile-drawer {
        transform: translateX(0);
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .df-drawer-header {
        padding: 16px;
        border-bottom: 1px solid #F0F4F8;
    }

    .df-drawer-search form {
        position: relative;
        display: flex;
        align-items: center;
    }

    .df-drawer-search input {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #E2E8F0;
        border-radius: 4px;
        font-size: 14px;
        background: #F8FAFC;
    }

    .df-drawer-search button {
        position: absolute;
        right: 12px;
        background: transparent;
        border: none;
        color: var(--df-primary);
        font-size: 16px;
    }

    .df-drawer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .df-drawer-item {
        border-bottom: 1px solid #F0F4F8;
    }

    .df-drawer-link-row {
        display: flex;
        align-items: center;
        padding: 20px 16px;
        gap: 12px;
    }

    .df-drawer-link-row i {
        color: var(--df-primary);
        font-size: 14px;
        width: 20px;
        text-align: center;
    }

    .df-drawer-link-row a,
    .df-mobile-drawer .df-nav-item a {
        font-family: 'Oswald', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--df-primary);
        text-decoration: none;
        text-transform: uppercase;
        flex-grow: 1;
        display: block;
        padding: 20px 16px;
    }

    .df-mobile-drawer .df-nav-item {
        border-bottom: 1px solid #F0F4F8;
        display: block;
        height: auto;
    }

    .df-mobile-drawer .df-nav-item a i {
        display: none;
        /* Hide any desktop specific chevrons in mobile nav */
    }

    .df-drawer-footer {
        padding: 24px 16px;
        margin-top: auto;
    }

    .df-drawer-cta {
        display: block;
        width: 100%;
        background: var(--df-primary);
        color: #FFFFFF;
        text-align: center;
        padding: 16px;
        border-radius: 4px;
        font-family: 'Oswald', sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
    }

    /* Drawer Submenu Accordion Style */
    .df-drawer-submenu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
        background: #F8FAFC;
    }

    .df-drawer-item.is-open .df-drawer-submenu {
        display: block;
    }

    .df-drawer-item.is-open .df-drawer-link-row i {
        transform: rotate(45deg);
        color: #129AE7;
    }

    .df-drawer-submenu li {
        border-bottom: 1px solid #edf2f7;
    }

    .df-drawer-submenu li a {
        display: block;
        padding: 10px 48px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        color: #4A5568;
        text-decoration: none;
    }

    .df-drawer-link-row span {
        font-family: 'Oswald', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--df-primary);
        text-transform: uppercase;
        flex-grow: 1;
        cursor: pointer;
    }

    /* 3rd Level Sub-topic Accordion */
    .df-sub-topic-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 32px;
        cursor: pointer;
        padding-block: 1rem;
    }

    .df-sub-topic-header i {
        font-size: 10px;
        color: #718096;
        transition: transform 0.2s ease;
    }

    .df-drawer-sub-topic.is-open .df-sub-topic-header i {
        transform: rotate(180deg);
        color: #129AE7;
    }

    .df-sub-topic-links {
        display: none;
        list-style: none;
        padding: 8px 0 0 0;
        margin: 0;
    }

    .df-drawer-sub-topic.is-open .df-sub-topic-links {
        display: block;
    }

    .df-drawer-sub-topic strong {
        display: block;
        font-family: 'Oswald', sans-serif;
        font-size: 14px;
        color: #718096;
        text-transform: uppercase;
    }

    .df-drawer-sub-topic ul li {
        border: none !important;
    }

    .df-drawer-sub-topic ul li a {
        padding: 10px 48px !important;
        background: transparent !important;
    }

    .df-broker-scroll.is-expanded {
        max-height: 2000px;
        /* Enough for 10 cards */
    }

    /* Mist / Fade Effect */
    .df-broker-scroll::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 5;
    }

    .df-broker-scroll.is-expanded::after {
        opacity: 0;
    }

    .df-broker-expand-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #ffffff;
        border: 1px solid #C9D6DF;
        color: var(--df-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        margin-top: -22px;
        /* Pull it up into the mist area */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .df-broker-expand-btn.is-active {
        transform: rotate(180deg);
        margin-top: 12px;
        /* Push it down when expanded */
    }

    .df-broker-expand-btn i {
        font-size: 18px;
    }

    /* Homepage Layout Mobile */
    .df-columns-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .df-news-grid {
        flex-direction: column-reverse;
        /* Featured on top! Wait, subgrid-featured is 2nd in HTML */
        gap: 24px;
    }

    .df-news-column-left,
    .df-market-analysis-sidebar {
        flex: 1;
        width: 100%;
        min-width: 0;
    }

    .df-news-subgrid-small,
    .df-news-subgrid-featured {
        flex: 1;
        width: 100%;
    }

    .df-container {
        padding: 0 16px;
    }

    .df-bottom-split {
        flex-direction: column;
        gap: 32px;
    }

    .df-visited-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .df-brokers-lists-section .df-lists-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}