/* Leadflowgenius Design System */

:root {
    /* Colors */
    --color-charcoal: #1a1a1a;
    --color-charcoal-dark: #0f0f0f;
    --color-white: #ffffff;
    --color-accent: #2563eb; /* Electric Blue */
    --color-accent-hover: #1d4ed8;
    --color-gray-soft: #e5e7eb;
    --color-gray-muted: #9ca3af;
    --color-gray-light: #f3f4f6;
    --color-success: #10b981;
    --color-error: #ef4444;
    
    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Layout */
    --container-max: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: var(--color-accent-hover);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Navigation */
.navbar {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-gray-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
    display: block;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-charcoal);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-charcoal);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-accent);
}

.icon-sm {
    width: 16px;
    height: 16px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-gray-soft);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    min-width: 360px;
    max-width: 500px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    margin-top: 0.5rem;
    padding: 1.75rem;
    z-index: 9999;
}

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

.dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.dropdown-left {
    padding-right: 1rem;
    border-right: 1px solid var(--color-gray-soft);
}

.dropdown-left h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.dropdown-desc {
    font-size: 0.875rem;
    color: var(--color-gray-muted);
    line-height: 1.6;
    margin: 0;
}

.dropdown-right {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-link {
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.dropdown-link:hover {
    color: var(--color-accent);
    background: var(--color-gray-light);
    transform: translateX(4px);
}

.dropdown-link svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.dropdown-link:hover svg {
    opacity: 1;
}

.badge-small {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-small.badge-live {
    background: var(--color-success);
    color: var(--color-white);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-charcoal-dark) 0%, var(--color-charcoal) 100%);
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

/* Section Styles */
.section {
    padding: var(--spacing-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Card Styles */
.card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-soft);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    transition: var(--transition);
}

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

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-excerpt {
    color: var(--color-gray-muted);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

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

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

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

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius);
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-gray-soft);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

/* Footer - Modern Design */
.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
}

.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.4);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link-list a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer-newsletter-column {
    max-width: 280px;
}

.footer-newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    margin-top: 0.5rem;
}

.footer-input-group {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.375rem;
    backdrop-filter: blur(10px);
}

.footer-email-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 0.875rem;
    padding: 0.625rem 0.75rem;
    outline: none;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    border-radius: 8px;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-submit-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: scale(1.05);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 2rem;
}

.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-legal-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

/* Responsive Design - Mobile First Approach */

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* Tablet and Below (max-width: 1023px) */
@media (max-width: 1023px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-newsletter-column {
        max-width: 100%;
        grid-column: span 2;
    }
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.25rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    /* Grid Layouts */
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3,
    .grid-3-custom {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-newsletter-column {
        max-width: 100%;
        grid-column: span 2;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    /* Base Typography */
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.125rem; }
    h5 { font-size: 1rem; }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation */
    .navbar-content {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .brand-text {
        font-size: 1.25rem;
    }
    
    .navbar-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: var(--transition);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 999;
    }

    .navbar-menu.active {
        transform: translateX(0);
    }
    
    .navbar-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--color-gray-soft);
    }
    
    .nav-link {
        padding: 1rem 0;
        justify-content: space-between;
        width: 100%;
    }

    .navbar-toggle {
        display: flex;
    }
    
    /* Dropdown Menu - Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 1rem 1rem;
        margin: 0;
        min-width: auto;
        display: none;
    }
    
    .nav-item.active .dropdown-menu {
        display: block;
    }

    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dropdown-left {
        display: none;
    }
    
    .dropdown-link {
        padding: 0.75rem 0;
        font-size: 0.875rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    /* Section */
    .section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    /* Grid Layouts - Stack on Mobile */
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-3-custom {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .grid-3-custom .card {
        grid-column: span 1 !important;
    }
    
    /* Cards */
    .card {
        padding: 1rem;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-title {
        font-size: 1.125rem;
    }
    
    .card-excerpt {
        font-size: 0.8125rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    /* Hero Buttons on Mobile */
    .hero-buttons {
        flex-direction: column !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* Newsletter Form on Mobile */
    .newsletter-form {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .newsletter-form input {
        width: 100% !important;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    /* Forms */
    .form-input,
    .form-textarea,
    .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer */
    .footer-modern {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-newsletter-column {
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Article Content */
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h1 { font-size: 1.75rem; }
    .article-content h2 { font-size: 1.5rem; }
    .article-content h3 { font-size: 1.25rem; }
    .article-content h4 { font-size: 1.125rem; }
    .article-content h5 { font-size: 1rem; }
    
    /* Tables - Make scrollable */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Hide desktop-only content */
    .desktop-only {
        display: none !important;
    }
}

/* Small Mobile (max-width: 374px) */
@media (max-width: 374px) {
    .navbar-brand {
        font-size: 1.125rem;
    }
    
    .navbar-logo {
        height: 32px;
    }
    
    .brand-text {
        font-size: 1.125rem;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

/* Mobile Landscape (max-height: 500px in landscape) */
@media (max-width: 767px) and (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 1.5rem 0;
    }
    
    .navbar-menu {
        max-height: calc(100vh - 50px);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .navbar-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    .container {
        max-width: 100%;
    }
}

/* Article Content Styling */
.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-charcoal);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content h1 { font-size: 2.5rem; }
.article-content h2 { font-size: 2rem; }
.article-content h3 { font-size: 1.75rem; }
.article-content h4 { font-size: 1.5rem; }
.article-content h5 { font-size: 1.25rem; }
.article-content h6 { font-size: 1.125rem; }

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: var(--transition);
}

.article-content a:hover {
    color: var(--color-accent-hover);
}

.article-content blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-gray-muted);
}

.article-content code {
    background: var(--color-gray-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.article-content pre {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.article-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content strong {
    font-weight: 700;
}

.article-content em {
    font-style: italic;
}

.article-content u {
    text-decoration: underline;
}

/* Homepage Custom Grid */
.grid-3-custom {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }

