/* ================================
   AB Performance - Blog Post CSS
   ================================ */

.ab-performance-blog-post-section {
    background-color: #f8f8f8;
    padding: 60px 20px 80px;
}

.ab-performance-blog-post-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Header */
.ab-performance-blog-post-header {
    margin-bottom: 40px;
}

.ab-performance-blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.ab-performance-blog-post-meta span {
    font-size: 14px;
    color: #777777;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ab-performance-blog-post-meta i {
    font-size: 13px;
    color: #e1303a;
}

.ab-performance-blog-post-header h1 {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

/* Content */
.ab-performance-blog-post-content {
    font-size: 17px;
    color: #333333;
    line-height: 1.9;
}

.ab-performance-blog-post-content p {
    margin-bottom: 25px;
}

.ab-performance-blog-post-content p:last-child {
    margin-bottom: 0;
}

.ab-performance-blog-post-content a {
    color: #e1303a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ab-performance-blog-post-content a:hover {
    color: #c72730;
    text-decoration: underline;
}

/* Images */
.ab-performance-blog-post-image {
    margin: 40px auto;
    max-width: 600px;
}

.ab-performance-blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.ab-performance-blog-post-caption {
    text-align: center;
    font-size: 15px;
    color: #777777;
    font-style: italic;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Share Section */
.ab-performance-blog-post-share {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e8e8e8;
    text-align: center;
}

.ab-performance-blog-post-share h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.ab-performance-blog-post-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ab-performance-blog-post-share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.ab-performance-blog-post-share-facebook {
    background-color: #1877f2;
}

.ab-performance-blog-post-share-facebook:hover {
    background-color: #0c63d4;
    transform: translateY(-3px);
}

.ab-performance-blog-post-share-twitter {
    background-color: #000000;
}

.ab-performance-blog-post-share-twitter:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px);
}

.ab-performance-blog-post-share-linkedin {
    background-color: #0a66c2;
}

.ab-performance-blog-post-share-linkedin:hover {
    background-color: #084a8f;
    transform: translateY(-3px);
}

.ab-performance-blog-post-share-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.ab-performance-blog-post-share-instagram:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.ab-performance-blog-post-share-copy {
    background-color: #555555;
}

.ab-performance-blog-post-share-copy:hover {
    background-color: #333333;
    transform: translateY(-3px);
}

/* Back to Blog */
.ab-performance-blog-post-back {
    margin-top: 40px;
    text-align: center;
}

.ab-performance-blog-post-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e1303a;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(225, 48, 58, 0.3);
}

.ab-performance-blog-post-back-btn:hover {
    background-color: #c72730;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 58, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .ab-performance-blog-post-container {
        max-width: 900px;
    }
    
    .ab-performance-blog-post-image {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .ab-performance-blog-post-section {
        padding: 40px 20px 60px;
    }
    
    .ab-performance-blog-post-container {
        padding: 40px 35px;
    }
    
    .ab-performance-blog-post-header h1 {
        font-size: 36px;
    }
    
    .ab-performance-blog-post-content {
        font-size: 16px;
    }
    
    .ab-performance-blog-post-image {
        max-width: 450px;
    }
    
    .ab-performance-blog-post-share {
        margin-top: 50px;
        padding-top: 35px;
    }
}

@media (max-width: 480px) {
    .ab-performance-blog-post-section {
        padding: 30px 15px 50px;
    }
    
    .ab-performance-blog-post-container {
        padding: 30px 25px;
    }
    
    .ab-performance-blog-post-meta {
        gap: 15px;
    }
    
    .ab-performance-blog-post-meta span {
        font-size: 13px;
    }
    
    .ab-performance-blog-post-header h1 {
        font-size: 28px;
    }
    
    .ab-performance-blog-post-content {
        font-size: 15px;
    }
    
    .ab-performance-blog-post-image {
        margin: 30px auto;
        max-width: 100%;
    }
    
    .ab-performance-blog-post-caption {
        font-size: 14px;
    }
    
    .ab-performance-blog-post-share h3 {
        font-size: 18px;
    }
    
    .ab-performance-blog-post-share-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}