/*
Theme Name: MB11 Theme
Theme URI: https://www.mtminings.com
Author: MB11 Team
Description: A modern WordPress theme for blockchain and AI education websites. Features responsive design, SEO optimization, and mobile-friendly navigation.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mb11
Tags: blog, education, responsive-layout, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0ea5e9;
    --dark: #0f172a;
    --dark-blue: #1e3a5f;
    --dark-blue-light: #1e40af;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    background-color: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-radius: 50%;
    border-top-color: transparent;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.logo-accent {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
    color: var(--text-white);
}

.nav-links a.active::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-light);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-signin {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
}

.btn-signin:hover {
    color: var(--text-white);
}

.btn-getstarted {
    background: var(--primary);
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-getstarted:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 1px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.card-1 {
    top: 20px;
    left: -20px;
}

.card-2 {
    bottom: 20px;
    right: -20px;
}

.card-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.card-2 .card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* ============================================
   Partners Section
   ============================================ */
/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header.light {
    color: var(--text-white);
}

.section-header.light p {
    color: #94a3b8;
}

.section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-header.light .section-badge {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-light);
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header.light h2 {
    color: var(--text-white);
}

.section-header p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   Expectations Section
   ============================================ */
.expectations {
    padding: 80px 0;
    background: var(--bg-white);
}

.expectations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expectations-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.expectations-image img {
    width: 100%;
    background: #2056df;
    /* height: 500px; */
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Image Showcase Section
   ============================================ */
.image-showcase {
    padding: 80px 0;
    background: var(--bg-light);
}

.showcase-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.showcase-image-item {
    overflow: hidden;
    /* border-radius: var(--radius-lg); */
    /* box-shadow: var(--shadow-md); */
    /* transition: var(--transition); */
}

.showcase-image-item:hover {
    transform: translateY(-5px);
    /* box-shadow: var(--shadow-xl); */
}

.showcase-image-item img {
    width: 80%;
    height: auto;
    display: block;
    transition: var(--transition);
    margin: 0 auto;
}

.showcase-image-item:hover img {
    transform: scale(1.02);
}

/* ============================================
   VIP Rebate Section
   ============================================ */
.vip-rebate {
    padding: 80px 0;
    background: var(--bg-white);
}

.rebate-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.rebate-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.rebate-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.rebate-table th {
    padding: 20px 25px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rebate-table td {
    padding: 18px 25px;
    text-align: center;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.rebate-table tbody tr {
    transition: var(--transition);
}

.rebate-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.05);
}

.rebate-table tbody tr:last-child td {
    border-bottom: none;
}

.rebate-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.rebate-table tbody tr:nth-child(even):hover {
    background: rgba(37, 99, 235, 0.05);
}

/* ============================================
   Trust Section
   ============================================ */
.trust {
    padding: 80px 0;
    background: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.trust-card:hover {
    background: var(--bg-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin: 0 auto 20px;
}

.trust-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Membership Section
   ============================================ */
.membership {
    padding: 80px 0;
    background: var(--bg-light);
}

.membership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.membership-image img {
    width: 100%;
    background: #2056df;
    /* height: 450px; */
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.membership-text .section-badge {
    margin-bottom: 15px;
}

.membership-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.membership-text > p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 25px;
}

.membership-benefits {
    margin-bottom: 30px;
}

.membership-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

/* ============================================
   Articles Section
   ============================================ */
.articles {
    padding: 80px 0;
    background: #ffffff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
}

.article-category {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-content p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.article-link:hover {
    color: var(--primary-dark);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    color: #94a3b8;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 20px 0;
    color: #64748b;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--text-white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #64748b;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #475569;
}

/* ============================================
   Page Header & Breadcrumb
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
    padding: 30px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.breadcrumb {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: #64748b;
    margin-left: 8px;
}

.breadcrumb a {
    color: #94a3b8;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb .active {
    color: var(--text-white);
    font-weight: 500;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.page-header-content p {
    font-size: 17px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 700px;
}

/* ============================================
   Article List Page
   ============================================ */
.article-list {
    padding: 60px 0;
    background: var(--bg-light);
}

.article-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.article-list-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.article-list-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.article-list-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-list-item:hover .article-list-image img {
    transform: scale(1.05);
}

.article-list-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--text-white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
}

.article-list-content {
    padding: 25px;
}

.article-list-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.article-list-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-list-content h2 a:hover {
    color: var(--primary);
}

.article-list-content p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-list-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.article-list-link:hover {
    color: var(--primary-dark);
}

.article-list-link::after {
    content: '\2192';
    transition: var(--transition);
}

.article-list-link:hover::after {
    transform: translateX(3px);
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
}

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

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pagination li a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.pagination li a.active {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.pagination-prev a,
.pagination-next a {
    gap: 6px;
}

.pagination-dots {
    color: var(--text-light);
    padding: 0 5px;
}

/* ============================================
   Article Content Page
   ============================================ */
.article-content-section {
    padding: 50px 0 60px;
    background: var(--bg-white);
}

.article-content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

.article-detail {
    max-width: 100%;
}

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

.article-detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.article-detail-category {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
}

.article-detail-date,
.article-detail-read {
    font-size: 14px;
    color: var(--text-light);
}

.article-detail-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-detail-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-detail-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.author-role {
    font-size: 13px;
    color: var(--text-light);
}

.article-detail-image {
    margin-bottom: 35px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.article-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.article-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

.article-detail-body p {
    margin-bottom: 20px;
}

.article-detail-body .lead {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.7;
}

.article-detail-body h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 35px 0 15px;
}

.article-detail-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 12px;
}

.article-detail-body ul,
.article-detail-body ol {
    margin: 15px 0 20px 25px;
}

.article-detail-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-detail-body li strong {
    color: var(--text-dark);
}

/* ============================================
   Article Tags
   ============================================ */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 25px 0;
    margin-top: 35px;
    border-top: 1px solid var(--border-color);
}

.tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 5px;
}

.tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-medium);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

/* ============================================
   Article Navigation (Prev/Next)
   ============================================ */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid var(--primary);
}

.nav-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.nav-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.article-nav-next {
    text-align: right;
}

/* ============================================
   Article Sidebar
   ============================================ */
.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.related-post {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.related-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post a {
    display: flex;
    gap: 12px;
    align-items: center;
}

.related-post a:hover h4 {
    color: var(--primary);
}

.related-post img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.related-post h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 4px;
    transition: var(--transition);
}

.related-post span {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   Newsletter Widget
   ============================================ */
.newsletter p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-form .btn-sm {
    width: 100%;
}

/* ============================================
   Latest Articles Section
   ============================================ */
.latest-articles {
    padding: 80px 0;
    background: var(--bg-light);
}

.latest-articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.latest-article-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.latest-article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.latest-article-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.latest-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.latest-article-card:hover .latest-article-image img {
    transform: scale(1.05);
}

.latest-article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.latest-article-content {
    padding: 20px;
}

.latest-article-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--text-light);
}

.latest-article-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.latest-article-content h3 a:hover {
    color: var(--primary);
}

.latest-article-content p {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-article-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.latest-article-link:hover {
    color: var(--primary-dark);
}

.latest-article-link::after {
    content: '\2192';
    transition: var(--transition);
}

.latest-article-link:hover::after {
    transform: translateX(3px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-content,
    .expectations-content,
    .membership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .courses-grid,
    .articles-grid,
    .article-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .companies-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .section-header h2,
    .global-text h2,
    .membership-text h2 {
        font-size: 30px;
    }

    .cta h2 {
        font-size: 34px;
    }

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

    .article-sidebar {
        position: static;
    }

    .latest-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header-content h1 {
        font-size: 30px;
    }

    .article-detail-header h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 26px;
    }

    .courses-grid,
    .training-grid,
    .articles-grid,
    .article-list-grid {
        grid-template-columns: 1fr;
    }

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

    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header h2,
    .membership-text h2 {
        font-size: 26px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .expectations-image img,
    .membership-image img {
        height: 300px;
    }

    .page-header-content h1 {
        font-size: 26px;
    }

    .page-header-content p {
        font-size: 15px;
    }

    .article-detail-header h1 {
        font-size: 26px;
    }

    .article-detail-image img {
        height: 280px;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }

    .article-nav-next {
        text-align: left;
    }

    .latest-articles-grid {
        grid-template-columns: 1fr;
    }

    .pagination ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .stat {
        text-align: left;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header-content h1 {
        font-size: 22px;
    }

    .article-detail-header h1 {
        font-size: 22px;
    }

    .article-detail-body h2 {
        font-size: 22px;
    }

    .article-detail-body h3 {
        font-size: 18px;
    }

    .article-detail-image img {
        height: 200px;
    }

    .article-tags {
        gap: 8px;
    }

    .tag {
        font-size: 12px;
        padding: 5px 10px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .latest-article-image {
        height: 180px;
    }
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 1px;
    transition: var(--transition);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--dark);
    z-index: 1002;
    padding: 60px 25px 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a {
    display: block;
    padding: 15px 0;
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--text-white);
    padding-left: 10px;
}

.mobile-nav-links a.active {
    color: var(--primary-light);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-block {
    display: block;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/* ============================================
   WordPress Core Styles
   ============================================ */
.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

.wp-caption {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px;
    max-width: 100%;
}

.wp-caption img {
    margin: 0;
}

.wp-caption-text {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

.gallery-item {
    display: inline-block;
    margin: 0 5px 10px;
    vertical-align: top;
}

.gallery-caption {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.sticky {
    border: 2px solid var(--primary);
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.bypostauthor {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--radius-sm);
}

/* ============================================
   WordPress Navigation Menu Styles
   ============================================ */
.nav-links li {
    list-style: none;
}

.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
    color: var(--text-white);
}

.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-light);
    border-radius: 1px;
}

/* ============================================
   WordPress Pagination Styles
   ============================================ */
.pagination {
    margin-top: 50px;
}

ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.page-numbers li {
    list-style: none;
}

ul.page-numbers .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
    background: var(--bg-white);
    transition: var(--transition);
    text-decoration: none;
}

ul.page-numbers .page-numbers:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

ul.page-numbers .page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

ul.page-numbers .prev,
ul.page-numbers .next {
    padding: 0 15px;
    gap: 6px;
}

ul.page-numbers .dots {
    padding: 0 5px;
    color: var(--text-light);
    border: none;
    background: none;
}

/* ============================================
   WordPress Content Styles
   ============================================ */
.article-detail-body h1,
.article-detail-body h2,
.article-detail-body h3,
.article-detail-body h4,
.article-detail-body h5,
.article-detail-body h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 15px;
    line-height: 1.3;
}

.article-detail-body h2 {
    font-size: 28px;
}

.article-detail-body h3 {
    font-size: 22px;
}

.article-detail-body p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-medium);
}

.article-detail-body ul,
.article-detail-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-detail-body ul li {
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-medium);
}

.article-detail-body ol li {
    list-style: decimal;
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-medium);
}

.article-detail-body blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-medium);
}

.article-detail-body blockquote p {
    margin-bottom: 0;
}

.article-detail-body pre {
    background: var(--dark);
    color: #e2e8f0;
    padding: 20px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.6;
}

.article-detail-body code {
    background: var(--bg-light);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 14px;
    color: var(--primary);
}

.article-detail-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.article-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.article-detail-body a {
    color: var(--primary);
    text-decoration: underline;
}

.article-detail-body a:hover {
    color: var(--primary-dark);
}

.article-detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-detail-body table th,
.article-detail-body table td {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.article-detail-body table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.article-detail-body table td {
    color: var(--text-medium);
}

/* ============================================
   WordPress Avatar Styles
   ============================================ */
.article-detail-author img.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================
   WordPress Footer Menu Styles
   ============================================ */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: #94a3b8;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

/* ============================================
   WordPress Search Form Styles
   ============================================ */
.search-form {
    display: flex;
    gap: 10px;
}

.search-form label {
    flex: 1;
}

.search-form input[type="search"],
.search-form input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
}

.search-form input[type="search"]:focus,
.search-form input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-form input[type="submit"] {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.search-form input[type="submit"]:hover {
    background: var(--primary-dark);
}

/* ============================================
   WordPress Comment Styles
   ============================================ */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    padding: 20px;
    margin-bottom: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.comment-list .children {
    list-style: none;
    padding-left: 30px;
    margin-top: 20px;
}

.comment-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.comment-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.comment-body p {
    color: var(--text-medium);
    line-height: 1.7;
}

.comment-reply-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.comment-reply-link:hover {
    color: var(--primary-dark);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form input[type="submit"] {
    padding: 12px 30px;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.comment-form input[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   No Results Styles
   ============================================ */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results p {
    font-size: 18px;
    color: var(--text-light);
}
