/* Blog Post Article */
.blog-post {
    background: var(--bg-primary);
    padding-bottom: 100px;
}

.blog-post .container {
    max-width: 800px;
}

/* Post Hero Image */
.post-hero-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 50px;
}

/* Post Header */
.post-header {
    margin-bottom: 30px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.post-category {
    color: var(--accent);
    font-weight: 600;
}

.post-header h1 {
    font-size: 2.5rem;
    color: var(--text-heading);
    line-height: 1.3;
    margin-bottom: 15px;
}

.post-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Post Content */
.post-content h2 {
    font-size: 1.8rem;
    color: var(--text-heading);
    text-align: left;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 700;
}

.post-content h3 {
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.post-content h4 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 600;
}

.post-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.post-content .post-lead {
    font-size: 1.15rem;
    color: var(--text-heading);
    line-height: 1.8;
    margin-bottom: 25px;
}

.post-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.post-content ul li {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.post-content ul li strong {
    color: var(--text-heading);
}

.post-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 20px 30px;
    margin: 35px 0;
    background: var(--bg-card);
    border-radius: 0 12px 12px 0;
}

.post-content blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.post-content blockquote cite {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
}

/* Service Highlights (Codecubica services section) */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 25px;
    margin: 30px 0 40px;
}

.service-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    padding: 25px;
    transition: all var(--transition-speed) ease;
}

.service-highlight:hover {
    border-color: var(--border-accent-hover);
    transform: translateY(-3px);
}

.service-highlight h4 {
    margin-bottom: 10px;
}

.service-highlight p {
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
}

/* Post CTA */
.post-cta {
    text-align: center;
    padding: 50px 40px;
    margin-top: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
}

.post-cta h3 {
    font-size: 1.6rem !important;
    color: var(--text-heading);
    margin-top: 0 !important;
    margin-bottom: 10px;
}

.post-cta p {
    color: var(--text-muted);
    margin-bottom: 25px !important;
}

.post-cta .cta-button {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.post-cta .cta-button.primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    text-decoration: none;
}

.post-cta .cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* Post image support */
.post-content img {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 1.8rem;
    }

    .post-subtitle {
        font-size: 1.05rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.15rem;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .post-cta {
        padding: 35px 25px;
    }

    .post-cta h3 {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 480px) {
    .post-header h1 {
        font-size: 1.5rem;
    }

    .post-meta {
        gap: 12px;
    }

    .post-content blockquote {
        padding: 15px 20px;
    }
}
