/* 2GetPaid - Complete Shared Styles */

/* Self-hosted Inter Font */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --card: #ffffff;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

/* Navigation */
nav {
    background: var(--card-bg);
    padding: 1rem 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-nav .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    background: none;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 1rem;
    flex-direction: column;
    gap: 0;
    z-index: 1000;
}

.mobile-menu.active {
    display: flex !important;
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: var(--bg);
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero .brand-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero .tagline {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero .subtagline {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.85;
    font-style: italic;
}

.hero .audience {
    background: rgba(255,255,255,0.15);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.hero .promise {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero .guarantee {
    background: rgba(16, 185, 129, 0.25);
    border: 2px solid rgba(16, 185, 129, 0.5);
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    background: var(--accent-dark);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* Buy Button */
.buy-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.buy-button:hover {
    background: var(--primary-dark);
}

.buy-button.highlight {
    background: var(--accent);
}

.buy-button.highlight:hover {
    background: var(--accent-dark);
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Promise Section */
.promise-section {
    background: var(--bg);
    padding: 4rem 2rem;
}

.promise-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.promise-item {
    text-align: center;
    padding: 1.5rem;
}

.promise-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promise-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.promise-item p {
    color: var(--text-light);
}

/* Products Section */
.products {
    padding: 5rem 2rem;
    background: var(--card-bg);
}

.products h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.products .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-card.available {
    border: 3px solid var(--success);
}

.product-card.coming-soon {
    opacity: 0.85;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.product-status {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-status.available {
    background: #dcfce7;
    color: #166534;
}

.product-status.coming-soon {
    background: #fef3c7;
    color: #92400e;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-problem {
    background: #fef2f2;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #ef4444;
}

.product-problem strong {
    color: #991b1b;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-features li {
    list-style: none;
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.product-pricing {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.price-tier {
    background: var(--bg);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 150px;
}

.price-tier .tier-name {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-tier .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.product-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.coming-soon-badge {
    color: var(--text-light);
    font-style: italic;
}

/* Bundle Section */
.bundle-section {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 4rem 2rem;
    color: white;
}

.bundle-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.bundle-section .subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.bundle-card {
    background: white;
    color: var(--text);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.bundle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bundle-card ul {
    margin-bottom: 1.5rem;
}

.bundle-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.bundle-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.bundle-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.bundle-price span {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: var(--bg);
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About section button needs dark styling on light background */
.about .cta-button.secondary {
    background: var(--primary);
    color: white;
    border: none;
}

.about .cta-button.secondary:hover {
    background: var(--primary-dark);
}

/* Why This Works Section */
.why-works {
    background: var(--card-bg);
    padding: 5rem 2rem;
}

.why-works h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    padding: 2rem;
    background: var(--bg);
    border-radius: 12px;
    position: relative;
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}

.why-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.why-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    background: linear-gradient(180deg, #e0e7ff 0%, #c7d2fe 100%);
    padding: 5rem 2rem;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1000px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Blog Post Styles */
/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.blog-post .article-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 760px;
}

.blog-post h1 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    line-height: 1.2;
}

.blog-post .meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.blog-post .intro {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-post .content {
    padding: 0 2rem;
}

/* Key Takeaways Box */
.blog-post .takeaways {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.blog-post .takeaways h4 {
    margin: 0 0 1rem 0;
    color: #92400e;
    font-size: 1rem;
    font-weight: 600;
}

.blog-post .takeaways ul {
    margin: 0;
    padding-left: 1.25rem;
}

.blog-post .takeaways li {
    color: #78350f;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.blog-post .takeaways li:last-child {
    margin-bottom: 0;
}

/* Pull Quote - subtle and modern */
.blog-post .pullquote {
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text);
    text-align: center;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-left: 3px solid var(--accent);
    background: rgba(245, 158, 11, 0.05);
    border-radius: 0 8px 8px 0;
    line-height: 1.5;
}

.blog-post h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.blog-post h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.blog-post p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--text);
}

.blog-post ul, .blog-post ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-post li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-post blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-light);
}

.blog-post .callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.blog-post .callout.highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    border-color: var(--primary);
}

.blog-post .callout.tip {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border-color: #10b981;
    border-left: 4px solid #10b981;
}

.blog-post .callout.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border-color: #f59e0b;
    border-left: 4px solid #f59e0b;
}

.blog-post .callout.stat {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    border-color: var(--primary);
    text-align: center;
    padding: 2rem;
}

.blog-post .template-box {
    background: #1e293b;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-family: monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
    color: #e2e8f0;
}

.blog-post .stat {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.blog-post .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-post .stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.blog-post .timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.blog-post .timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.blog-post .timeline-day {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.blog-post .timeline-day.warning {
    background: var(--warning);
}

.blog-post .timeline-day.danger {
    background: #ef4444;
}

.blog-post .timeline-content {
    flex: 1;
}

.blog-post .timeline-content h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text);
}

.blog-post .timeline-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-post .cta-box {
    background: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.blog-post .cta-box h3 {
    margin-top: 0;
    color: var(--text);
    font-size: 1.5rem;
}

.blog-post .cta-box p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.blog-post .cta-box .buy-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-post .cta-box .buy-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.blog-post .cta-box .buy-button.highlight {
    background: var(--primary);
    color: white;
}

.blog-post .cta-box .buy-button.highlight:hover {
    background: var(--primary-dark);
}

/* Blog List Styles */
/* Related Articles */
.related-articles {
    max-width: 800px;
    margin: 3rem auto;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.related-articles h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.related-articles ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles li {
    margin-bottom: 0.5rem;
}

.related-articles a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
}

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

/* Back Link */
.back-link {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
}

.back-link a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.back-link a:hover {
    color: var(--primary);
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    /* Hide desktop nav, show mobile nav */
    .nav-links {
        display: none !important;
    }
    
    .mobile-nav {
        display: flex !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    nav {
        position: relative;
    }
    
    .nav-container {
        flex-wrap: nowrap;
    }
    
    .product-header {
        flex-direction: column;
    }
    
    .why-number {
        font-size: 2.5rem;
    }
    
    .blog-post .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }
    
    .blog-post {
        padding: 2rem 1rem;
    }
    
    .blog-list {
        padding: 2rem 1rem;
    }
}

/* Blog Index Page */
.blog-hero {
    text-align: center;
    padding: 3rem 0 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.blog-hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.blog-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.blog-list article {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-list article:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.blog-list article h2 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.blog-list article h2 a {
    color: var(--text);
    text-decoration: none;
}

.blog-list article h2 a:hover {
    color: var(--accent);
}

.blog-list article .meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-list article .excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-list article .read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.blog-list article .read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-list {
        padding: 0 1rem 2rem;
    }
}

/* Blog Section (Homepage) */
.blog-section {
    background: var(--bg);
    padding: 4rem 2rem;
}

.blog-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.blog-section .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: block;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.blog-card .blog-topic {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.blog-card:hover h3 {
    color: var(--accent-dark);
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.blog-cta {
    text-align: center;
    margin-top: 2rem;
}

.blog-cta .cta-button.secondary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
}

.blog-cta .cta-button.secondary:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 1rem;
    }
    
    .blog-section h2 {
        font-size: 2rem;
    }
    
    .blog-grid {
        gap: 1rem;
    }
}