/* ================================
   INSIGHTS POST TEMPLATE - OPTIMIZED FOR 100% ZOOM
   Thought Leadership Posts with Author
   ================================ */

:root {
    --insights-primary: #2B4150;
    --insights-accent: #5CC2CF;
    --insights-secondary: #207C7E;
    --insights-green: #6EB510;
    --insights-light-blue: #E8F8FA;
    --insights-text: #333333;
    --insights-text-light: #666666;
    --insights-border: #E5E5E5;
}

/* ================================
   Hero Section
   ================================ */
.insights-post-hero {
    position: relative;
    padding: 80px 0 60px; /* REDUCED from 120px 0 80px */
    background: var(--insights-primary);
    overflow: hidden;
}

/* Lines pattern underneath hero text - transparent overlay */
.insights-post-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -3%;
    width: 100%;
    height: 100%;
    background-image: url('https://arrowheadprstg.wpengine.com/wp-content/uploads/2026/01/lineelement.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 41%;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

@keyframes floatBlock {
    0%, 100% {
        transform: rotate(22.5deg) translateY(0) translateX(0);
    }
    50% {
        transform: rotate(22.5deg) translateY(-30px) translateX(20px);
    }
}

.insights-post-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED from 24px */
    position: relative;
    z-index: 2;
}

/* Category Badge - REDUCED SIZE */
.insights-post-category {
    display: inline-block;
    padding: 6px 18px; /* REDUCED from 8px 20px */
    background: #6EB510;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* REDUCED from 16px */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 20px; /* REDUCED from 24px */
}

/* Post Title - REDUCED SIZE */
.insights-post-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 48px; /* REDUCED from 56px */
    font-weight: 900;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0 0 28px 0; /* REDUCED from 32px */
    animation: fadeInTyping 1.5s ease-out;
    max-width: 800px;
}

@keyframes fadeInTyping {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Post Excerpt - REDUCED SIZE */
.insights-post-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 18px; /* REDUCED from 22px */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 36px 0; /* REDUCED from 40px */
    font-weight: 400;
}

/* Post Meta - REDUCED SPACING */
.insights-post-meta {
    display: flex;
    align-items: center;
    gap: 20px; /* REDUCED from 24px */
    flex-wrap: wrap;
    padding-top: 28px; /* REDUCED from 32px */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
}

.insights-post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.insights-post-meta-icon {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

/* ================================
   Content Area
   ================================ */
.insights-post-content-wrapper {
    background: #FFFFFF;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Removed decorative blocks */
.insights-post-content-wrapper::before {
    display: none;
}

.insights-post-content-wrapper::after {
    display: none;
}

.insights-post-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED from 24px */
    position: relative;
    z-index: 10;
}

/* Featured Image (if used) */
.insights-post-featured-image {
    width: 100%;
    max-width: 1200px;
    margin: -60px auto 60px;
    padding: 0 40px; /* INCREASED from 24px */
    position: relative;
    z-index: 10;
}

.insights-post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Article Content - REDUCED SIZES */
.insights-post-content {
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* REDUCED from 18px */
    line-height: 1.8;
    color: #333333;
    max-width: 900px;
    margin: 0 auto;
}

.insights-post-content h2 {
    font-family: 'Urbanist', sans-serif;
    font-size: 32px; /* REDUCED from 36px */
    font-weight: 800;
    color: #2B4150;
	max-width: 750px;
    margin: 52px 0 20px 0; /* REDUCED from 60px 0 24px */
    line-height: 1.3;
}

.insights-post-content h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px; /* REDUCED from 28px */
    font-weight: 700;
    color: #2B4150;
    margin: 44px 0 18px 0; /* REDUCED from 48px 0 20px */
    line-height: 1.4;
}

.insights-post-content h4 {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px; /* REDUCED from 22px */
    font-weight: 700;
    color: #2B4150;
    margin: 36px 0 14px 0; /* REDUCED from 40px 0 16px */
}

.insights-post-content p {
    margin: 0 0 24px 0; /* REDUCED from 28px */
}

.insights-post-content strong {
    font-weight: 700;
    color: #2B4150;
}

.insights-post-content a {
    color: #1D95D1;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.insights-post-content a:hover {
    color: #6EB510;
}

.insights-post-content ul,
.insights-post-content ol {
    margin: 0 0 24px 0; /* REDUCED from 28px */
    padding-left: 32px;
}

.insights-post-content li {
    margin-bottom: 12px;
}

/* Blockquote - REDUCED SIZE */
.insights-post-content blockquote {
    margin: 44px 0; /* REDUCED from 48px */
    padding: 28px 36px; /* REDUCED from 32px 40px */
    background: #E8F8FA;
    border-left: 6px solid #5CC2CF;
    font-size: 20px; /* REDUCED from 22px */
    font-style: italic;
    line-height: 1.6;
    color: #2B4150;
    border-radius: 0 8px 8px 0;
}

.insights-post-content blockquote p:last-child {
    margin-bottom: 0;
}

.insights-post-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 36px 0; /* REDUCED from 40px */
}

.insights-post-content figure {
    margin: 36px 0; /* REDUCED from 40px */
}

.insights-post-content figcaption {
    font-size: 14px;
    color: #666666;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

/* Pullquote - REDUCED SIZE */
.insights-pullquote {
    margin: 52px 0; /* REDUCED from 60px */
    padding: 40px; /* REDUCED from 48px */
    background: linear-gradient(135deg, #2B4150 0%, #207C7E 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.insights-pullquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 24px;
    font-family: 'Urbanist', sans-serif;
    font-size: 160px; /* REDUCED from 180px */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.insights-pullquote-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px; /* REDUCED from 28px */
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ================================
   Author Section
   ================================ */
.insights-author-section {
    margin: 80px 0;
    padding: 40px; /* REDUCED from 48px */
    background: linear-gradient(90deg, #F0F7F8 0%, #D4EDF0 100%);
    border-radius: 12px;
    border: 2px solid #E5E5E5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

/* Removed decorative block */
.insights-author-section::before {
    display: none;
}

.insights-author-header {
    display: flex;
    gap: 28px; /* REDUCED from 32px */
    align-items: flex-start;
    margin-bottom: 20px; /* REDUCED from 24px */
}

.insights-author-photo {
    flex-shrink: 0;
}

/* Author Photo - REDUCED SIZE */
.insights-author-photo img {
    width: 120px; /* REDUCED from 140px */
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.insights-author-info {
    flex: 1;
}

.insights-author-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1D95D1;
    margin-bottom: 8px;
}

/* Author Name - REDUCED SIZE */
.insights-author-name {
    font-family: 'Urbanist', sans-serif;
    font-size: 28px; /* REDUCED from 32px */
    font-weight: 800;
    color: #2B4150;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.insights-author-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1D95D1;
    margin: 0 0 16px 0;
}

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

/* Author Social Links - REDUCED SIZE */
.insights-author-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; /* REDUCED from 40px */
    height: 36px;
    background: #FFFFFF;
    border-radius: 50%;
    color: #1D95D1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.insights-author-social-link:hover {
    background: #FFFFFF;
    color: #6EB510;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 181, 16, 0.3);
}

.insights-author-bio {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

/* ================================
   Share Section
   ================================ */
.insights-share-section {
    margin: 60px auto;
    padding: 36px; /* REDUCED from 40px */
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

/* Removed decorative block */
.insights-share-section::before {
    display: none;
}

/* Share Title - REDUCED SIZE */
.insights-share-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px; /* REDUCED from 24px */
    font-weight: 700;
    color: #2B4150;
    margin: 0 0 20px 0; /* REDUCED from 24px */
}

.insights-share-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Share Buttons - REDUCED PADDING */
.insights-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px; /* REDUCED from 12px 28px */
    background: #E8F8FA;
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.insights-share-btn:hover {
    background: #6EB510;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.insights-share-btn svg {
    width: 18px;
    height: 18px;
}

/* ================================
   Related Insights
   ================================ */
.insights-related-section {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 3px solid #E5E5E5;
}

/* Related Title - REDUCED SIZE */
.insights-related-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 32px; /* REDUCED from 36px */
    font-weight: 800;
    color: #2B4150;
    text-align: center;
    margin: 0 0 52px 0; /* REDUCED from 60px */
}

.insights-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED from 24px */
}

.insights-related-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.insights-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.insights-related-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #E8F8FA;
}

/* Related Card Content - REDUCED PADDING */
.insights-related-card-content {
    padding: 20px; /* REDUCED from 24px */
}

/* Related Card Category - REDUCED SIZE */
.insights-related-card-category {
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* REDUCED from 15px */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1d95d1;
    margin-bottom: 10px; /* REDUCED from 12px */
}

/* Related Card Title - REDUCED SIZE */
.insights-related-card-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px; /* REDUCED from 20px */
    font-weight: 700;
    color: #2B4150;
    line-height: 1.3;
    margin: 0 0 10px 0; /* REDUCED from 12px */
}

.insights-related-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* ================================
   CTA Section
   ================================ */
.insights-cta-section {
    margin-top: 100px;
    padding: 52px 40px; /* REDUCED from 60px 24px, INCREASED horizontal */
    background: #F5F5F5;
    border-radius: 0;
    text-align: center;
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

/* CTA Title - REDUCED SIZE */
.insights-cta-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 36px; /* REDUCED from 48px */
    font-weight: 900;
    color: #2B4150;
    margin: 0 0 20px 0; /* REDUCED from 24px */
    line-height: 1.2;
}

/* CTA Description - REDUCED SIZE */
.insights-cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* REDUCED from 18px */
    line-height: 1.7;
    color: #2B4150;
    margin: 0 0 28px 0; /* REDUCED from 32px */
    opacity: 0.8;
}

/* CTA Button - REDUCED SIZE */
.insights-cta-btn {
    display: inline-block;
    padding: 14px 36px; /* REDUCED from 16px 40px */
    background: #6EB510;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(110, 181, 16, 0.3);
}

.insights-cta-btn:hover {
    background: #1D95D1;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(29, 149, 209, 0.4);
    color: #FFFFFF;
}

/* ================================
   Responsive Design
   ================================ */
@media screen and (max-width: 768px) {
    .insights-post-hero-container,
    .insights-post-container,
    .insights-post-featured-image,
    .insights-related-grid,
    .insights-cta-section {
        padding-left: 20px; /* Mobile padding */
        padding-right: 20px;
    }
    
    .insights-post-hero {
        padding: 80px 0 48px; /* INCREASED from 80px 0 60px */
    }
    
    .insights-post-title {
        font-size: 40px !important; /* REDUCED from 36px */
    }
    
    .insights-post-excerpt {
        font-size: 16px; /* REDUCED from 18px */
    }
    
    /* Hide lines pattern on mobile */
    .insights-post-hero::before {
        display: none;
    }
    
    .insights-post-meta {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .insights-post-featured-image {
        margin: -40px auto 40px;
    }
    
    .insights-post-content {
        font-size: 16px; /* REDUCED from 17px */
    }
    
    .insights-post-content h2 {
        font-size: 26px; /* REDUCED from 28px */
        margin: 36px 0 18px 0; /* REDUCED from 40px 0 20px */
    }
    
    .insights-post-content h3 {
        font-size: 22px; /* REDUCED from 24px */
    }
    
    .insights-post-content blockquote {
        padding: 20px 24px; /* REDUCED from 24px 28px */
        font-size: 18px; /* REDUCED from 19px */
    }
    
    .insights-pullquote {
        padding: 28px 20px; /* REDUCED from 32px 24px */
    }
    
    .insights-pullquote-text {
        font-size: 20px; /* REDUCED from 22px */
    }
    
    .insights-author-section {
        padding: 28px 20px; /* REDUCED from 32px 24px */
    }
    
    .insights-author-header {
        flex-direction: column;
        gap: 20px; /* REDUCED from 24px */
        align-items: center;
        text-align: center;
    }
    
    .insights-author-photo img {
        width: 90px; /* REDUCED from 100px */
        height: 90px;
    }
    
    .insights-author-name {
        font-size: 24px; /* REDUCED from 26px */
    }
    
    .insights-author-social {
        justify-content: center;
    }
    
    .insights-share-section {
        padding: 28px 20px; /* REDUCED from 32px 24px */
    }
    
    .insights-share-buttons {
        flex-direction: column;
    }
    
    .insights-share-btn {
        width: 100%;
        justify-content: center;
    }
    
    .insights-related-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-cta-section {
        padding: 36px 20px; /* REDUCED from 40px 24px */
    }
    
    .insights-cta-title {
        font-size: 28px;
    }
}