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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-accent: #f8f8f8;
    --text-primary: #1a1a1a;
    --text-secondary: #404040;
    --text-muted: #737373;
    --accent-primary: #6b21a8;
    --gradient-primary: linear-gradient(135deg, #6b21a8 0%, #581c87 50%, #4c1d95 100%);
    --border-color: #e8e8e8;
    --shadow-sm: 0 4px 12px rgba(107, 33, 168, 0.12);
    --shadow-md: 0 8px 24px rgba(107, 33, 168, 0.15);
}

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

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.nav-cta-container {
    position: relative;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-cta-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-cta-container.active .nav-cta-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    min-width: 320px;
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 10000;
}

.nav-dropdown.show {
    display: block;
    animation: dropdownFadeIn 0.3s ease forwards;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-dropdown h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.nav-dropdown p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.nav-dropdown-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.nav-dropdown-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    background: var(--bg-secondary);
}

.nav-dropdown-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
}

.nav-dropdown-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.nav-dropdown-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.breadcrumb {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Content */
.main-content {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.sample-header {
    text-align: center;
    margin-bottom: 40px;
}

.sample-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.page-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.issue-meta {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.subscribe-cta {
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.05) 0%, rgba(255,255,255,0.9) 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin: 40px 0;
}

.subscribe-cta h3 {
    color: var(--accent-primary);
    margin-bottom: 12px;
    font-size: 20px;
}

.subscribe-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

.subscribe-form-inline {
    display: flex;
    gap: 6px;
    max-width: 400px;
    margin: 0 auto 16px auto;
    align-items: stretch;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 6px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.subscribe-form-inline:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1), var(--shadow-sm);
}

.subscribe-form-inline input {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    font-family: inherit;
}

.subscribe-form-inline input::placeholder {
    color: var(--text-muted);
}

.subscribe-form-inline button {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.subscribe-form-inline button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.subscribe-disclaimer {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Newsletter Content */
.newsletter-content {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
}

.newsletter-header {
    text-align: left;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.newsletter-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.newsletter-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
}

.newsletter-date {
    font-size: 14px;
    color: var(--text-muted);
}

.section {
    margin: 40px 0;
}

.section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.section .section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 16px;
}

.section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 12px;
}

.section p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.section li {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.highlight-section {
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.08) 0%, rgba(255,255,255,0.9) 100%);
    border: 1px solid rgba(107, 33, 168, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.bottom-line {
    background: var(--accent-primary);
    color: white;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
}

.bottom-line p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.number-stat {
    text-align: center;
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.number-stat .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.number-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.poll-options {
    margin: 16px 0;
}

.poll-option {
    margin: 8px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.poll-cta {
    text-align: center;
    margin: 20px 0;
}

.poll-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

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

/* Scroll-triggered slide-in popup */
.scroll-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: white;
    border: 2px solid var(--accent-primary);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    max-width: 380px;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.scroll-popup.show {
    transform: translateY(0);
}

.scroll-popup .popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.3s ease;
}

.scroll-popup .popup-close:hover {
    color: var(--text-primary);
}

.scroll-popup h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.scroll-popup p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.popup-form {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.popup-form input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.popup-form input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
}

.popup-form button {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.popup-form button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.popup-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* Exit-intent popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.exit-popup-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exit-popup .popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.3s ease;
}

.exit-popup .popup-close:hover {
    color: var(--text-primary);
}

.exit-popup h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}

.popup-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
}

.popup-benefits {
    margin-bottom: 24px;
}

.benefit {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 8px;
}

.exit-form {
    flex-direction: column;
    gap: 12px;
}

.exit-form input {
    width: 100%;
    padding: 16px;
}

.exit-form button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }

    .container {
        padding: 0 20px;
    }

    .main-content {
        padding: 100px 0 60px;
    }

    .nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .newsletter-content {
        padding: 24px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .subscribe-form-inline {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

    .subscribe-form-inline input {
        width: 100%;
        padding: 16px;
    }

    .subscribe-form-inline button {
        width: 100%;
        padding: 16px;
    }

    /* Mobile popup adjustments */
    .scroll-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .exit-popup-content {
        padding: 32px 24px;
    }

    .exit-popup h2 {
        font-size: 24px;
    }
}





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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f8f9fa;
    --text-primary: #1f2937;
    --text-secondary: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --accent-primary: #6b21a8;
    --gradient-primary: linear-gradient(135deg, #6b21a8 0%, #581c87 50%, #4c1d95 100%);
    --border-color: #e5e7eb;
    --border-light: #d1d5db;
    --shadow-sm: 0 4px 12px rgba(107, 33, 168, 0.12);
    --shadow-md: 0 8px 24px rgba(107, 33, 168, 0.15);
    --warning-bg: #fef3c7;
    --warning-border: #f59e0b;
    --warning-text: #92400e;
    --info-bg: #f8fafc;
    --info-border: #e2e8f0;
}

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

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.breadcrumb {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

    .breadcrumb a {
        color: var(--accent-primary);
        text-decoration: none;
        font-size: 14px;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

/* Main Content */
.main-content {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.archive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.page-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.issue-meta {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.subscribe-cta {
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.05) 0%, rgba(255,255,255,0.9) 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin: 40px 0;
}

    .subscribe-cta h3 {
        color: var(--accent-primary);
        margin-bottom: 12px;
        font-size: 20px;
    }

    .subscribe-cta p {
        color: var(--text-secondary);
        margin-bottom: 20px;
        font-size: 16px;
    }

.subscribe-form-inline {
    display: flex;
    gap: 6px;
    max-width: 400px;
    margin: 0 auto 16px auto;
    align-items: stretch;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 6px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

    .subscribe-form-inline:focus-within {
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1), var(--shadow-sm);
    }

    .subscribe-form-inline input {
        flex: 1;
        min-width: 0;
        padding: 14px 16px;
        border: none;
        background: transparent;
        color: var(--text-primary);
        font-size: 16px;
        outline: none;
        font-family: inherit;
    }

        .subscribe-form-inline input::placeholder {
            color: var(--text-muted);
        }

    .subscribe-form-inline button {
        background: var(--gradient-primary);
        color: white;
        padding: 14px 20px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
        flex-shrink: 0;
    }

        .subscribe-form-inline button:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

.subscribe-disclaimer {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Newsletter Content */
.newsletter-content {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
}

.newsletter-header {
    text-align: center;
    background-color: var(--bg-primary);
    padding-bottom: 24px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-light);
}

.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.newsletter-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.newsletter-tagline {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

.featured-image {
    text-align: center;
    margin-bottom: 20px;
}

    .featured-image img {
        width: 100%;
        max-width: 552px;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }

.image-caption {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

.section {
    margin: 40px 0;
}

.intro-section {
    margin-bottom: 32px;
}

    .intro-section h2 {
        font-size: 18px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 12px;
    }

    .intro-section p {
        font-size: 16px;
        color: #374151;
        line-height: 1.7;
    }

.story-section {
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 24px;
}

    .story-section p {
        font-size: 16px;
        color: #333333;
        margin-bottom: 16px;
        line-height: 1.7;
    }

.tool-update {
    margin-bottom: 20px;
}

    .tool-update .tool-header {
        margin: 0 0 8px;
        font-size: 16px;
        line-height: 1.6;
    }

    .tool-update .tool-analysis {
        font-size: 15px;
        line-height: 1.6;
        color: #4b5563;
        padding-left: 16px;
        border-left: 2px solid #e5e7eb;
        margin-bottom: 16px;
    }

.section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 12px;
}

.section p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.section li {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.stats-box {
    background: var(--info-bg);
    border: 1px solid var(--info-border);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

    .stats-box h3 {
        margin: 0 0 12px;
        font-size: 16px;
        font-weight: 600;
        color: var(--accent-primary);
    }

    .stats-box ul {
        margin: 0;
        padding-left: 20px;
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-secondary);
    }

.money-tip {
    background: var(--warning-bg);
    border-left: 4px solid var(--warning-border);
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 0 4px 4px 0;
}

    .money-tip p {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        color: var(--warning-text);
    }

.native-ad {
    background: var(--info-bg);
    border: 1px solid var(--info-border);
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--accent-primary);
    margin: 32px 0;
}

    .native-ad .sponsor-label {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }

    .native-ad h3 {
        margin: 0 0 12px;
        font-size: 18px;
        font-weight: 600;
        color: var(--text-primary);
    }

    .native-ad p {
        margin: 0 0 16px;
        font-size: 15px;
        color: var(--text-muted);
    }

    .native-ad .cta {
        text-align: center;
    }

        .native-ad .cta a {
            display: inline-block;
            background: var(--accent-primary);
            color: white;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

            .native-ad .cta a:hover {
                transform: translateY(-1px);
                box-shadow: var(--shadow-sm);
            }

.engagement-section {
    text-align: center;
    padding: 24px;
   /* background: var(--accent-primary);*/
    border-radius: 8px;
    margin: 32px 0;
    color: white;
}

    .engagement-section h3 {
        margin: 0 0 12px;
        font-size: 18px;
        font-weight: 600;
        color: white;
    }

    .engagement-section p {
        margin: 0 0 16px;
        font-size: 15px;
        color: rgba(255,255,255,0.9);
    }

    .engagement-section .author {
        margin: 0;
        font-size: 14px;
        color: rgba(255,255,255,0.8);
    }

.footer-content {
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 0 0 16px 16px;
}

    .footer-content p {
        margin-bottom: 12px;
        color: var(--text-secondary);
    }

    .footer-content .forward-message {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .footer-content .subscribe-link {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .footer-content .archive-link {
        font-size: 12px;
        font-style: italic;
        margin-bottom: 8px;
    }

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

    .footer-bottom .tagline {
        font-size: 13px;
        color: var(--text-light);
        margin-bottom: 8px;
    }

    .footer-bottom .links {
        font-size: 12px;
        color: var(--text-light);
    }

.footer-content a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
}

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

code {
    background: var(--bg-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 14px;
    color: var(--accent-primary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }

    .container {
        padding: 0 20px;
    }

    .main-content {
        padding: 100px 0 60px;
    }

    .nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .newsletter-content {
        padding: 24px;
    }

    .subscribe-form-inline {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

        .subscribe-form-inline input {
            width: 100%;
            padding: 16px;
        }

        .subscribe-form-inline button {
            width: 100%;
            padding: 16px;
        }

    .featured-image img {
        height: 200px;
    }

    .section h2 {
        font-size: 20px;
    }

    .newsletter-title {
        font-size: 24px;
    }
}

/* ========================================
   CONTENT GATING STYLES
   ======================================== */

/* Gated content container */
.article-content.gated-content {
    position: relative;
}

/* Content fade effect */
.article-content.gated-content .content-wrapper {
    position: relative;
    max-height: 800px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.article-content.gated-content .content-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95), white);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Unlocked state */
.article-content.gated-content.unlocked .content-wrapper {
    max-height: none;
}

.article-content.gated-content.unlocked .content-wrapper::after {
    opacity: 0;
}

/* Content gate box */
.content-gate {
    position: sticky;
    bottom: 0;
    background: white;
    border: 3px solid var(--accent-primary);
    border-radius: 16px;
    padding: 48px 40px;
    margin: 40px 0 0 0;
    box-shadow: 0 -10px 40px rgba(107, 33, 168, 0.15), 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 100;
    animation: gateSlideUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.content-gate.hidden {
    display: none;
}

@keyframes gateSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.content-gate h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.content-gate p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Gate form */
.content-gate-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto 24px;
    justify-content: center;
    align-items: stretch;
}

.content-gate-form input[type="email"] {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.content-gate-form input[type="email"]:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(107, 33, 168, 0.1);
}

.content-gate-form button {
    background: var(--gradient-primary);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.content-gate-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Gate benefits */
.content-gate-benefits {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: var(--text-muted);
}

.content-gate-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Unlock success message */
.content-gate.unlocking {
    border-color: #16a34a;
}

.content-gate.unlocking h3 {
    color: #16a34a;
}

/* Mobile responsiveness for gating */
@media (max-width: 768px) {
    .content-gate {
        padding: 32px 24px;
        margin: 24px -20px 0 -20px;
        border-radius: 16px 16px 0 0;
        border-left: none;
        border-right: none;
    }

    .content-gate h3 {
        font-size: 24px;
    }

    .content-gate p {
        font-size: 16px;
    }

    .content-gate-form {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
    }

    .content-gate-form input[type="email"],
    .content-gate-form button {
        width: 100%;
        padding: 16px 20px;
    }

    .content-gate-benefits {
        flex-direction: column;
        gap: 12px;
    }

    .article-content.gated-content .content-wrapper {
        max-height: 600px;
    }

    .article-content.gated-content .content-wrapper::after {
        height: 200px;
    }
}

/* ========================================
   MARKDOWN NEWSLETTER CONTENT STYLES
   ======================================== */

.newsletter-header-bens {
    padding: 40px 0 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 32px;
}

.newsletter-title-bens {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.newsletter-byline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.byline-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.byline-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    object-fit: cover;
}

.byline-info {
    display: flex;
    flex-direction: column;
}

.byline-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #6b21a8;
    color: white;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.byline-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.issue-meta-bens {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.3;
}

/* Mobile adjustments for newsletter header */
@media (max-width: 640px) {
    .newsletter-header-bens {
        padding: 24px 0 20px;
    }

    .newsletter-title-bens {
        font-size: 24px;
    }

    .newsletter-byline {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .byline-social {
        gap: 8px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .article-content p,
    .article-content li {
        font-size: 17px;
        line-height: 1.75;
    }

    .article-content h2 {
        font-size: 21px;
    }

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

/* Article content wrapper */
.article-content {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #333333;
}

.article-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6b21a8;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 8px;
}

.article-content h3 {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 12px 0 12px 0;
}

.article-content p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.7;
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 28px;
}

.article-content li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

.article-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

.article-content a {
    color: #6b21a8;
    text-decoration: none;
    font-weight: 600;
}

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

.article-content code {
    background: #f3e8ff;
    color: #6b21a8;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.article-content pre {
    background: #1a1a1a;
    color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

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

/* Horizontal Rule - Modern styling for markdown --- */
.article-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #c4b5fd, #c4b5fd, transparent);
    margin: 48px 0;
}

/* Divider */
.article-content .divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #c4b5fd, transparent);
    margin: 40px 0;
}

/* News Items - Each Item Gets Its Own Border */
.article-content .news-item {
    background: white;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
}

.article-content .news-item:last-child {
    margin-bottom: 20px;
}

.article-content .news-item h3 {
    font-size: 21px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
    margin-top: 0;
    letter-spacing: -0.02em;
}

.article-content .news-item p {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.article-content .news-item p:last-child {
    margin-bottom: 0;
}

.article-content .news-item a {
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
}

.article-content .news-item a:hover {
    color: #000000;
    border-bottom-color: #000000;
}

/* Images */
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 32px auto;
}

/* SIGNATURE SECTION */
.article-content .signature-section {
    margin-top: 48px;
    background: transparent;
}

.article-content .signature-message {
    margin-bottom: 24px;
}

.article-content .signature-message p {
    font-size: 15px;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 12px;
}

.article-content .signature-message p:last-child {
    margin-bottom: 0;
}

.article-content .signature-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 24px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    gap: 32px;
}

.article-content .signature-feedback {
    flex: 1;
}

.article-content .signature-feedback p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.article-content .feedback-buttons {
    display: flex;
    gap: 8px;
}

.article-content .feedback-btn {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    display: inline-block;
}

.article-content .feedback-btn:hover {
    border-color: #6b21a8;
    color: #6b21a8;
    background: #faf5ff;
}

.article-content .signature-block {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.article-content .signature-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(107, 33, 168, 0.2);
}

.article-content .signature-info {
    display: flex;
    flex-direction: column;
}

.article-content .signature-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.article-content .signature-company {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.3;
}

/* Mobile adjustments for signature */
@media (max-width: 640px) {
    .article-content img {
        margin: 24px auto;
    }

    .article-content .signature-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .article-content .signature-block {
        justify-content: center;
    }
}
/* Emote Comments Section */
.emote-section {
    margin: 48px 0 32px;
    padding: 32px 0;
    border-top: 2px solid var(--border-color);
}

.emote-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

#emote-container {
    margin: 0 auto;
    max-width: 100%;
}

/* Ensure Emote widget matches theme */
#emote-container iframe {
    border-radius: 12px;
}

@media (max-width: 640px) {
    .emote-section {
        margin: 32px 0 24px;
        padding: 24px 0;
    }

    .emote-title {
        font-size: 19px;
    }
}

/* Emote Custom Theme - Match Infolia Design */

/* Main container */
.emote-root {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Textarea styling - Increased specificity to override Emote's CSS */
#emote-textarea-container-root.emote-textarea-container,
.emote-textarea-container,
div.emote-textarea-container {
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    background: var(--bg-primary) !important;
    transition: border-color 0.3s ease !important;
}

#emote-textarea-container-root.emote-textarea-container:focus-within,
.emote-textarea-container:focus-within {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1) !important;
}

textarea#emote-textarea-root,
#emote-textarea-root.emote-textarea,
#emote-textarea-root {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 15px !important;
    color: var(--text-primary) !important;
    border: none !important;
    padding: 12px !important;
    line-height: 1.6 !important;
    background: transparent !important;
}

textarea#emote-textarea-root::placeholder,
#emote-textarea-root::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.7 !important;
}

/* Submit button - Purple gradient - Increased specificity */
button#emote-submit-button-root.emote-button.emote-submit-button,
button#emote-submit-button-root.emote-submit-button,
#emote-submit-button-root.emote-button,
.emote-submit-button,
button.emote-submit-button {
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: 8px !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

button#emote-submit-button-root.emote-button.emote-submit-button:hover,
button#emote-submit-button-root.emote-submit-button:hover,
#emote-submit-button-root.emote-button:hover,
.emote-submit-button:hover,
button.emote-submit-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md) !important;
}

button#emote-submit-button-root:active,
.emote-submit-button:active {
    transform: translateY(0) !important;
}

/* Anonymous checkbox */
.emote-anonymous-checkbox-container {
    color: var(--text-secondary) !important;
    font-size: 14px !important;
}

.emote-anonymous-checkbox-container input[type="checkbox"] {
    accent-color: var(--accent-primary) !important;
}

/* Markdown button */
.emote-markdown-button {
    color: var(--accent-primary) !important;
    font-size: 13px !important;
}

/* Comments area */
.emote-comments {
    border-top: 1px solid var(--border-color) !important;
    margin-top: 24px !important;
    padding-top: 24px !important;
}

/* Individual comment */
.emote-comment {
    border-bottom: 1px solid var(--border-color) !important;
    padding: 16px 0 !important;
}

.emote-comment-author {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.emote-comment-text {
    color: var(--text-secondary) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.emote-comment-date {
    color: var(--text-muted) !important;
    font-size: 13px !important;
}

/* Footer - Subtle branding */
.emote-footer {
    margin-top: 24px !important;
    padding-top: 16px !important;
    border-top: 1px solid var(--border-color) !important;
}

.emote-logo-container {
    text-align: center !important;
}

.emote-logo {
    color: var(--text-muted) !important;
    font-size: 12px !important;
    opacity: 0.6 !important;
    transition: opacity 0.3s ease !important;
}

.emote-logo:hover {
    opacity: 1 !important;
}

/* Language selector */
.emote-option-lang-selector {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
}

.emote-lang {
    color: var(--text-secondary) !important;
    padding: 8px 12px !important;
}

.emote-lang:hover {
    background: rgba(107, 33, 168, 0.1) !important;
    color: var(--accent-primary) !important;
}

.emote-lang.emote-selected {
    background: var(--accent-primary) !important;
    color: white !important;
}

/* Error box */
.emote-error-box {
    background: #fee2e2 !important;
    border: 1px solid #ef4444 !important;
    color: #991b1b !important;
    border-radius: 8px !important;
    padding: 12px !important;
    margin-bottom: 16px !important;
}

/* ========================================
   TABLE STYLES FOR MARKDOWN CONTENT
   ======================================== */

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
    border: 1px solid #d1d5db;
}

.article-content table th {
    background: #f9fafb;
    color: #1a1a1a;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #d1d5db;
}

.article-content table td {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    color: #333333;
    background: white;
}

.article-content table tbody tr:nth-child(even) td {
    background: #f9fafb;
}

.article-content table tbody tr:hover td {
    background: #f3f4f6;
}

/* ========================================
   HIDE DUPLICATE HEADERS FROM OLD STORED HTML
   ======================================== */

/* Old format newsletters have headers baked into WebHtml from old templates */
.article-content .newsletter-header {
    display: none !important;
}

.article-content .newsletter-title {
    display: none !important;
}

.article-content .newsletter-meta {
    display: none !important;
}

.article-content .newsletter-tagline {
    display: none !important;
}

/* Hide old footer elements baked into stored HTML */
.article-content .footer-content,
.article-content .footer-bottom,
.article-content .archive-link,
.article-content .engagement-section {
    display: none !important;
}


.article-content .newsletter-content .image-caption {
    display: none !important;
}

/* Remove border/shadow from old newsletter-content container */
.article-content .newsletter-content {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* ========================================
   NEWSLETTER ENGAGEMENT SECTION
   ======================================== */

.newsletter-engagement {
    margin-top: 32px;
/*    padding-top: 32px;
    border-top: 1px solid #d1d5db;*/
    background: transparent;
}

.engagement-message {
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 24px;
}

.engagement-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 24px;
    gap: 32px;
}

.feedback-section {
    flex: 1;
}

.feedback-question {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.feedback-buttons {
    display: flex;
    gap: 8px;
}

.feedback-btn {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    display: inline-block;
}

.feedback-btn:hover {
    border-color: #6b21a8;
    color: #6b21a8;
    background: #faf5ff;
}

/* Remove old colored button styles */
.feedback-loved,
.feedback-okay,
.feedback-notgreat {
    background: white;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.feedback-loved:hover,
.feedback-okay:hover,
.feedback-notgreat:hover {
    border-color: #6b21a8;
    color: #6b21a8;
    background: #faf5ff;
    transform: none;
}

.author-signature {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.signature-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(107, 33, 168, 0.2);
}

.signature-info {
    display: flex;
    flex-direction: column;
}

.signature-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.signature-org {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.3;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .engagement-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .feedback-buttons {
        flex-wrap: wrap;
    }

    .author-signature {
        margin-top: 16px;
    }
}
