/**
 * Four Peaks AI Blog Post Styles
 * Clean, professional, readable layout optimized for long-form content
 * Works alongside your existing theme + Elementor styles
 */

.fpab-single-post {
    background: #fff;
}

/* Container for consistent readable width */
.fpab-container {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Hero Image */
.fpab-hero {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

.fpab-hero-image {
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
    display: block;
}

/* Hero with overlay title (dramatic layout) */
.fpab-hero-overlay {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
}

.fpab-hero-overlay .fpab-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.fpab-hero-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(10, 37, 64, 0.35), rgba(10, 37, 64, 0.85));
    width: 100%;
    padding: 60px 0 50px;
    color: #fff;
}

.fpab-hero-content .entry-title {
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 700;
}

.fpab-post-meta {
    font-size: 15px;
    opacity: 0.9;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Title area when image is separate */
.fpab-title-area {
    padding-top: 20px;
    padding-bottom: 30px;
}

.fpab-title-area .entry-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0a2540;
}

/* Main readable content */
.fpab-main-content {
    font-size: 17.5px;
    line-height: 1.75;
    color: #2c3338;
}

.fpab-main-content h2 {
    font-size: 28px;
    margin-top: 2.2em;
    margin-bottom: 0.6em;
    color: #0a2540;
    font-weight: 700;
}

.fpab-main-content h3 {
    font-size: 23px;
    margin-top: 1.8em;
    margin-bottom: 0.5em;
    color: #1a3a5c;
}

.fpab-main-content p {
    margin-bottom: 1.3em;
}

.fpab-main-content ul,
.fpab-main-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.4em;
}

.fpab-main-content li {
    margin-bottom: 0.5em;
}

/* Branded CTA Box - Four Peaks style */
.fpab-cta-box {
    margin: 60px 0 40px;
    background: #f8f9fc;
    border: 1px solid #e0e5f0;
    border-radius: 12px;
    padding: 45px 50px;
    text-align: center;
}

.fpab-cta-box h3 {
    font-size: 26px;
    color: #0a2540;
    margin-bottom: 12px;
}

.fpab-cta-box p {
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto 24px;
    color: #4a5568;
}

.fpab-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.fpab-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.fpab-btn-primary {
    background: #0a2540;
    color: #fff;
}

.fpab-btn-primary:hover {
    background: #152f52;
    color: #fff;
}

.fpab-btn-secondary {
    background: transparent;
    color: #0a2540;
    border: 2px solid #0a2540;
}

.fpab-btn-secondary:hover {
    background: #0a2540;
    color: #fff;
}

.fpab-cta-note {
    font-size: 14px !important;
    color: #718096 !important;
    margin-top: 8px;
}

/* Post footer */
.fpab-post-footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .fpab-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .fpab-hero-content .entry-title,
    .fpab-title-area .entry-title {
        font-size: 28px;
    }
    
    .fpab-cta-box {
        padding: 35px 25px;
    }
}