/*
 * IMPORTANT: For editing rules and coding guidelines, see AI_documents/Rules/Rules_for_the_AI.txt
 * For project overview and details, see AI_documents/Project_Overview_Doc.txt
 * 
 * Production Directory: http://ainspire.ai/css/whitepaper_page.css
 * Development Directory: http://localhost:8000/css/whitepaper_page.css
 * 
 * Used in Whitepaper pages 
 * /templates/whitepaper_page.php
 */ 

/* Whitepaper Page Specific Styles */

/* Heading Reset for Semantic HTML - Preserve Visual Styling */
h1.whitepaper-title,
h2.hidden-semantic,
h2.whitepaper-subtitle,
h3.value-title-wp,
h3.summary-title,
h4.related-title,
h4.summary-text,
h4.value-text,
h5.tag {
    margin: 0 !important;
    padding: 0 !important;
    font-weight: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    text-transform: inherit !important;
    letter-spacing: inherit !important;
    font-family: inherit !important;
    border: none !important;
    background: none !important;
    display: block !important;
}

.whitepaper-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%);
    z-index: 1;
}

.whitepaper-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.whitepaper-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 60px 80px;
    display: grid;
    /* ROLLBACK: Original was: grid-template-columns: 1fr 1.5fr; */
    grid-template-columns: 1.5fr 1fr; /* NEW: 60/40 layout for wider PDF viewer */
    gap: 40px;
    align-items: start;
}

.whitepaper-cover {
    position: relative;
    width:100%;
    margin: 0 auto;
}

.cover-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 8.5/11;
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Magazine cover overlay for background images */
.cover-image.has-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.cover-image > * {
    position: relative;
    z-index: 2;
}

.magazine-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #3b82f6;
}

.magazine-title {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: white;
}

.cover-image:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(59, 130, 246, 0.3);
}

.whitepaper-info {
    color: white;
}

.whitepaper-category {
    background: rgba(59, 130, 246, 0.1);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.whitepaper-title,
h1.whitepaper-title {
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    letter-spacing: -1px !important;
}

.whitepaper-subtitle,
h2.whitepaper-subtitle {
    font-size: 20px !important;
    color: #a0a0a0 !important;
    line-height: 1.5 !important;
    margin-bottom: 40px !important;
    font-weight: 300 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.tags-section {
    margin-bottom: 40px;
}

.tags-label {
    color: #3b82f6 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 15px !important;
    display: block !important;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag,
h5.tag {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #e2e8f0 !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    display: inline-block !important;
}

.tag:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.value-section-wp {
    margin-bottom: 40px;
}

.value-title-wp,
h3.value-title-wp {
    color: #3b82f6 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.value-point:last-child {
    border-bottom: none;
}

.value-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-text,
h4.value-text {
    color: #e2e8f0 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin: 0 !important;
}

.summary-section {
    margin-bottom: 50px;
}

.summary-title,
h3.summary-title {
    color: #3b82f6 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.summary-text,
h4.summary-text {
    color: #e2e8f0 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.meta-info {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    color: #a0a0a0;
    font-size: 14px;
}

.meta-label {
    color: #3b82f6;
    font-weight: 600;
    display: inline-block;
    margin-right: 8px;
}

.download-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #fff;
}

.related-section {
    margin-top: 100px;
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    background: #000;
}

.related-title,
h4.related-title {
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 40px !important;
    text-align: center !important;
}

.whitepaper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.whitepaper-grid-item {
    position: relative;
}

.whitepaper-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.whitepaper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whitepaper-card:hover::before {
    opacity: 1;
}

.whitepaper-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

.whitepaper-card-header {
    padding: 25px 25px 15px;
    display: flex;
        background: #ffffff0f;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.whitepaper-card-category {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.whitepaper-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.whitepaper-card-meta span {
    color: #a0a0a0;
    font-size: 12px;
    font-weight: 500;
}

.whitepaper-card-content {
    padding: 20px 25px;
    flex: 1;
}

.whitepaper-card-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.whitepaper-card:hover .whitepaper-card-title {
    color: #3b82f6;
}

.whitepaper-card-desc {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.whitepaper-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.whitepaper-card-tag {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.whitepaper-card:hover .whitepaper-card-tag {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #fff;
}

.whitepaper-card-footer {
    padding: 15px 25px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.download-link {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whitepaper-card:hover .download-link {
    color: #93c5fd;
    transform: translateX(5px);
}

/* Main content background matching existing site */
.whitepaper-main {
    background: #000;
    min-height: 100vh;
    position: relative;
}

/* Animated background elements */
.whitepaper-main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 85%, rgba(59, 130, 246, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* NEW: Desktop-only elements */
@media (min-width: 769px) {
    .cover-image,
    .whitepaper-cover > .meta-info {
        display: none;
    }
    
    .pdf-meta-top {
        display: block;
    }
    
    .whitepaper-info .download-section .download-btn:first-child {
        display: none;
    }
}

/* NEW: PDF Viewer Styles for Left Column */
.pdf-viewer-container {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid #3b82f6;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.pdf-viewer {
    width: 100%;
    height: 900px;
    border: none;
    display: block;
}

.pdf-meta-top {
    /* ROLLBACK: This replaces the meta-info positioning */
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
}

.pdf-download-section {
    /* ROLLBACK: New download section below PDF */
    margin-top: 20px;
    text-align: center;
}

.pdf-download-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.pdf-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.pdf-download-btn:hover::before {
    left: 100%;
}

.pdf-download-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whitepaper-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 120px 20px 60px;
    }

    .whitepaper-title {
        font-size: 36px;
    }

    .whitepaper-subtitle {
        font-size: 18px;
    }

    .meta-info {
        flex-direction: column;
        gap: 15px;
    }

    .download-section {
        flex-direction: column;
    }

    .download-btn, .secondary-btn {
        text-align: center;
        justify-content: center;
    }

    .whitepaper-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .whitepaper-card-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .whitepaper-card-meta {
        text-align: left;
    }
    
    /* Hide PDF viewer on mobile, show original layout */
    .pdf-viewer-container,
    .pdf-download-section {
        display: none !important;
    }

    /* Show whitepaper-cover content on mobile */
    .whitepaper-cover {
        display: block !important;
    }
    
    /* ROLLBACK: Restore original mobile magazine cover */
    .cover-image {
        display: flex;
        aspect-ratio: 8.5/11;
        max-width: 400px;
        margin: 0 auto 20px auto;
    }
    
    .meta-info {
        display: flex;
        gap: 30px;
        margin-bottom: 40px;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 15px;
    }
    
    /* ROLLBACK: Restore download section on mobile */
    .download-section {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }
}

/* NEW WHITEPAPER HERO SECTION */
.whitepaper-hero-new {
    position: relative;
    background: linear-gradient(135deg, rgb(59 130 246 / 43%) 0%, rgb(30 64 175 / 8%) 30%, rgb(37 99 235 / 5%) 60%, rgb(247 247 247 / 3%) 100%);
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.whitepaper-hero-new .whitepaper-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    height: 100%;
    align-items: center;
    width: 100%;
}

/* Left Side - Cover Image (30%) */
.whitepaper-hero-new .hero-cover {
    flex: 0 0 30%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whitepaper-hero-new .hero-cover-image {
    width: 100%; 
    aspect-ratio: 1 / 1.5;
    max-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateY(5deg) translateY(-10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    color: white;
    margin:20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.whitepaper-hero-new .hero-cover-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-20px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.whitepaper-hero-new .hero-cover-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgb(0 0 0 / 20%);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    align-self: flex-start;
    margin-top: 9%;
    margin-left: 6%;
}

.whitepaper-hero-new .hero-cover-title {
   position: fixed;
    top: 24%;
    font-size: 12px;
    width: 90%;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 2.2;
    background: rgb(0 0 0 / 43%);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    align-self: flex-start;
    margin-top: 9%;
    margin-left: 6%;
}

/* Right Side - Information (70%) */
.whitepaper-hero-new .hero-info {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    color: white;
}

.whitepaper-hero-new .hero-category {
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: -10px;
}

.whitepaper-hero-new .hero-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #fff;
}

.whitepaper-hero-new .hero-subtitle {
    font-size: 20px;
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 300;
}

.whitepaper-hero-new .hero-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.whitepaper-hero-new .hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.whitepaper-hero-new .hero-meta .meta-separator {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.whitepaper-hero-new .hero-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.whitepaper-hero-new .hero-topic-tag {
    background: rgba(37, 99, 235, 0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.whitepaper-hero-new .hero-topic-tag:hover {
    background: rgba(37, 99, 235, 0.4);
    border-color: rgba(37, 99, 235, 0.6);
}

.whitepaper-hero-new .hero-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.whitepaper-hero-new .hero-btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.whitepaper-hero-new .hero-btn-primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.whitepaper-hero-new .hero-btn-primary:hover {
    background: #60a5fa;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.whitepaper-hero-new .hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.whitepaper-hero-new .hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whitepaper-hero-new {
        height: auto;
        min-height: 500px;
        padding: 30px 0;
    }

    .whitepaper-hero-new .whitepaper-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .whitepaper-hero-new .hero-cover {
        flex: none;
        height: 200px;
    }

    .whitepaper-hero-new .hero-cover-image {
        width: 150px;
        height: 200px;
        transform: none;
    }

    .whitepaper-hero-new .hero-cover-image:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .whitepaper-hero-new .hero-info {
        flex: none;
        align-items: center;
    }

    .whitepaper-hero-new .hero-title {
        font-size: 24px;
        text-align: center;
    }

    .whitepaper-hero-new .hero-meta {
        justify-content: center;
    }

    .whitepaper-hero-new .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .whitepaper-hero-new .hero-btn {
        width: 200px;
        justify-content: center;
    }
}