/*
Theme Name: DooPrime德璞官网主题
Theme URI: https://prippin.com
Description: DooPrime德璞资本中国合作商官网主题 - 专业、高端、国际化
Version: 2.0
Author: prippin.com
*/

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

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.8;
    font-size: 15px;
    background: #fff;
}

a {
    text-decoration: none;
    color: #0052cc;
    transition: all 0.3s ease;
}

a:hover {
    color: #e65100;
}

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

/* ===== Top Bar ===== */
.top-bar {
    background: #0a1628;
    color: #8899aa;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.top-bar a {
    color: #8899aa;
    margin-left: 15px;
}

.top-bar a:hover {
    color: #ff6600;
}

/* ===== Header ===== */
.site-header {
    background: #0d1b33;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 15px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -1px;
}

.logo-text h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text h1 span {
    color: #ff6600;
}

.logo-text .tagline {
    color: #667c99;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2px;
}

.main-nav ul li a {
    color: #b0c4de;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.main-nav ul li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.main-nav ul li.current-menu-item a {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.main-nav ul li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #ff6600;
    border-radius: 1px;
}

.header-cta {
    display: flex;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    gap: 6px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6600, #e55a00);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255,102,0,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a00, #cc4d00);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,102,0,0.4);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #b0c4de;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: #ff6600;
    color: #ff6600;
    background: rgba(255,102,0,0.08);
}

.btn-white {
    background: #fff;
    color: #0a1628;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* ===== Hero ===== */
.hero-section {
    background: linear-gradient(160deg, #0a1628 0%, #0f2840 40%, #163a5c 70%, #0d1b33 100%);
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,82,204,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,102,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,102,0,0.15);
    border: 1px solid rgba(255,102,0,0.3);
    color: #ff8533;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-section h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.15;
}

.hero-section h2 .highlight {
    background: linear-gradient(135deg, #ff6600, #ffaa33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section h2 .subtitle {
    display: block;
    font-size: 22px;
    font-weight: 400;
    color: #7a9bcb;
    margin-top: 8px;
}

.hero-section .desc {
    color: #8aa3c4;
    font-size: 16px;
    margin: 20px auto 35px;
    max-width: 750px;
    line-height: 1.8;
}

.hero-disclaimer {    display: inline-block;    background: rgba(255,102,0,0.1);    border: 1px solid rgba(255,102,0,0.25);    color: #ffaa44;    padding: 6px 16px;    border-radius: 6px;    font-size: 13px;    font-weight: 600;    margin-bottom: 20px;}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 14px 36px;
    font-size: 15px;
    border-radius: 8px;
}

.btn-large-glow {
    box-shadow: 0 4px 20px rgba(255,102,0,0.4);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    color: #5a7a9a;
    font-size: 12px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== Stats ===== */
.stats-section {
    background: #fff;
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.stat-item {
    padding: 35px 20px;
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e8ecf0;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #0052cc, #0073e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-item p {
    color: #7a8a9a;
    font-size: 14px;
    font-weight: 500;
}

/* ===== Section Common ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: #0a1628;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header .section-subtitle {
    color: #7a8a9a;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0052cc, #ff6600);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== Features ===== */
.features-section {
    padding: 80px 0px;
    background: #f7f9fc;
}

.features-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    padding: 35px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #edf0f5;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: #d0d8e8;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #e8f0ff, #f0f5ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #0052cc, #0073e6);
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #0a1628;
    font-weight: 600;
}

.feature-card p {
    color: #6a7a8a;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Products ===== */
.products-section {
    padding: 80px 0px;
    background: #fff;
}

.products-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: #f7f9fc;
    padding: 28px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.product-card:hover {
    border-color: #0052cc;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,82,204,0.08);
    transform: translateY(-2px);
}

.product-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 16px;
    color: #0a1628;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-card p {
    color: #6a7a8a;
    font-size: 13px;
    line-height: 1.6;
}

/* ===== Why Us ===== */
.why-section {
    padding: 80px 0px;
    background: linear-gradient(160deg, #0a1628, #0f2840);
    color: #fff;
}

.why-grid {
    max-width: 1140px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-item {
    background: rgba(255,255,255,0.04);
    padding: 28px 25px;
    border-radius: 12px;
    border-left: 3px solid #ff6600;
    transition: all 0.3s;
}

.why-item:hover {
    background: rgba(255,255,255,0.07);
    transform: translateX(3px);
}

.why-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #ff8533;
    font-weight: 600;
}

.why-item p {
    color: #8aa3c4;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
    padding: 80px 0px;
    background: linear-gradient(135deg, #ff6600, #e55a00);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Footer ===== */
.site-footer {
    background: #0a1628;
    color: #7a8a9a;
    padding: 60px 20px 30px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 12px;
    color: #5a7a9a;
}

.footer-col h4 {
    color: #d0d8e0;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff6600;
    border-radius: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #5a7a9a;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #ff6600;
    padding-left: 3px;
}

.footer-logo-text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.footer-logo-text span {
    color: #ff6600;
}

.footer-bottom {
    max-width: 1140px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    font-size: 12px;
    color: #4a5a6a;
    line-height: 1.8;
}

/* ===== Page Content ===== */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.page-content .page-title {
    font-size: 32px;
    color: #0a1628;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8ecf0;
}

.page-content h2 {
    font-size: 24px;
    color: #0a1628;
    margin: 35px 0 15px;
    font-weight: 600;
}

.page-content h3 {
    font-size: 20px;
    color: #0a1628;
    margin: 28px 0 12px;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.9;
    color: #3a4a5a;
}

.page-content ul, .page-content ol {
    margin: 15px 0;
    padding-left: 22px;
}

.page-content ul li, .page-content ol li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #3a4a5a;
}

/* ===== Mobile Menu ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #0d1b33;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 15px;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
    }
    .main-nav ul li a {
        display: block;
        padding: 12px 15px;
    }
    .header-cta {
        display: none;
    }
    .hero-section h2 {
        font-size: 28px;
    }
    .hero-section h2 .subtitle {
        font-size: 18px;
    }
    .hero-trust {
        flex-wrap: wrap;
    }
    .stats-section {
        margin-top: 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        box-shadow: none;
        border-radius: 0;
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Commission Section ===== */
.commission-section {
    padding: 80px 0px;
    background: linear-gradient(160deg, #fff6ed 0%, #fff 50%, #fff6ed 100%);
}

.commission-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.commission-card {
    background: #fff;
    padding: 35px 22px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(255,102,0,0.08);
    border: 1px solid rgba(255,102,0,0.12);
    transition: all 0.3s ease;
}

.commission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255,102,0,0.15);
    border-color: #ff6600;
}

.commission-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.commission-card h3 {
    font-size: 17px;
    color: #0a1628;
    margin-bottom: 10px;
    font-weight: 600;
}

.commission-card p {
    color: #6a7a8a;
    font-size: 13px;
    line-height: 1.7;
}

/* ===== How It Works ===== */
.how-section {
    padding: 80px 0px;
    background: linear-gradient(160deg, #0a1628, #0f2840);
    color: #fff;
}

.how-grid {
    max-width: 1000px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
}

.how-step:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-3px);
}

.step-number {
    width: 50px;
    height: 15px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #ff6600, #e55a00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.how-step h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #ff8533;
}

.how-step p {
    color: #8aa3c4;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Card Highlight ===== */
.card-highlight {
    border: 2px solid #ff6600 !important;
    background: linear-gradient(135deg, #fff6ed, #fff);
}

.card-highlight .feature-icon {
    background: linear-gradient(135deg, #ff6600, #ff8533) !important;
    color: #fff;
}

.card-highlight h3 {
    color: #e55a00;
}

@media (max-width: 992px) {
    .commission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== Article List ===== */
.article-list {
    margin-top: 30px;
}

.article-item {
    padding: 30px 0;
    border-bottom: 1px solid #e8ecf0;
}

.article-item:first-child {
    padding-top: 0;
}

.article-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.article-title a {
    color: #0a1628;
    text-decoration: none;
    transition: color 0.3s;
}

.article-title a:hover {
    color: #ff6600;
}

.article-meta {
    color: #8899aa;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.article-meta a {
    color: #0052cc;
}

.article-excerpt {
    color: #5a6a7a;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.article-readmore {
    color: #ff6600;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.article-readmore:hover {
    text-decoration: underline;
}

/* ===== Single Article ===== */
.single-article .article-body {
    margin-top: 25px;
    line-height: 1.9;
}

.single-article .article-body p {
    margin-bottom: 18px;
    color: #3a4a5a;
    font-size: 15px;
}

.single-article .article-body h3 {
    margin: 30px 0 15px;
    color: #0a1628;
    font-size: 20px;
}

.single-article .article-body ul,
.single-article .article-body ol {
    margin: 15px 0;
    padding-left: 22px;
}

.single-article .article-body li {
    margin-bottom: 8px;
    color: #3a4a5a;
}

/* ===== Navigation ===== */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e8ecf0;
}

.post-navigation a {
    color: #0052cc;
    font-weight: 500;
}

.post-navigation a:hover {
    color: #ff6600;
}

/* ===== Archive Desc ===== */
.archive-desc {
    color: #6a7a8a;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #f7f9fc;
    border-radius: 8px;
}

/* ===== Pagination ===== */
.pagination {
    margin-top: 35px;
    text-align: center;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #5a6a7a;
    text-decoration: none;
    font-size: 14px;
}

.pagination a:hover {
    border-color: #ff6600;
    color: #ff6600;
}

.pagination .current {
    background: #ff6600;
    color: #fff;
    border-color: #ff6600;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-preview-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid #edf0f5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.blog-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.07);
    border-color: #d0d8e8;
}

.blog-preview-cat {
    display: inline-block;
    background: #e8f0ff;
    color: #0052cc;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.blog-preview-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-preview-card h3 a {
    color: #0a1628;
    text-decoration: none;
}

.blog-preview-card h3 a:hover {
    color: #ff6600;
}

.blog-preview-date {
    color: #8899aa;
    font-size: 12px;
    margin-bottom: 10px;
}

.blog-preview-card p {
    color: #6a7a8a;
    font-size: 13px;
    line-height: 1.6;
    flex: 1;
}

.blog-preview-more {
    color: #ff6600;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    margin-top: 10px;
}

.blog-preview-more:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== Blog Preview ===== */
.blog-preview-section {
    padding: 80px 0px;
    background: #f7f9fc;
}

.blog-preview-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-preview-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.logo-image {
    height: auto;
    max-width: 180px;
    width: auto;
    vertical-align: middle;
}

.footer-logo-image {
    height: auto;
    max-width: 130px;
    width: auto;
    margin-bottom: 15px;
    vertical-align: middle;
}

/* ===== Mobile Responsive Additions ===== */
@media (max-width: 992px) {
    .commission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .commission-grid {
        grid-template-columns: 1fr;
    }
    .blog-preview-card h3 {
        font-size: 14px;
    }
    .blog-preview-card p {
        font-size: 12px;
    }
    .section-header h2 {
        font-size: 24px;
    }
    .section-header .section-subtitle {
        font-size: 14px;
    }
    .article-item {
        padding: 20px 15px;
    }
    .article-item h3 {
        font-size: 14px;
    }
}
