/* Blog Post Styles */

.blog-post {
    padding: 60px 0;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 2.8rem;
    color: var(--dusk);
    margin: 16px 0 20px;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--muted);
    font-size: 0.9rem;
}

.post-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    max-width: 700px;
    margin: 0 auto;
}

.post-content .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
    font-weight: 500;
}

.post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.post-content h2 {
    font-size: 1.8rem;
    color: var(--dusk);
    margin: 40px 0 20px;
}

.post-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.post-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.post-content strong {
    color: var(--dusk);
}

.quick-facts {
    background: var(--cloud);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.quick-facts h3 {
    font-size: 1.2rem;
    color: var(--dusk);
    margin-bottom: 16px;
}

.quick-facts ul {
    list-style: none;
    padding: 0;
}

.quick-facts li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.quick-facts li:last-child {
    border-bottom: none;
}

/* Inline CTA Styles */
.inline-cta {
    background: linear-gradient(135deg, var(--sky), #3d8eb9);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    color: white;
}

.inline-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.inline-cta p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 20px;
    color: white;
}

.inline-cta .btn {
    background: white;
    color: var(--sky);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.inline-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.inline-cta-alt {
    background: var(--dusk);
}

.inline-cta-alt .btn {
    background: var(--sunset);
    color: white;
}

/* Related Posts CTA */
.related-cta {
    background: var(--cloud);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.related-cta h3 {
    font-size: 1.2rem;
    color: var(--dusk);
    margin-bottom: 20px;
}

.related-cta-links {
    display: grid;
    gap: 12px;
}

.related-cta-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-cta-link:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.related-cta-link .category-tag {
    background: var(--sky);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.related-cta-link .category-tag.cat-bars { background: var(--sunset); }
.related-cta-link .category-tag.cat-restaurants { background: #8b5cf6; }
.related-cta-link .category-tag.cat-events { background: var(--sand); color: var(--dusk); }

/* Share and Subscribe Box */
.share-subscribe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.share-box, .subscribe-box {
    background: var(--cloud);
    padding: 25px;
    border-radius: 12px;
}

.share-box h4, .subscribe-box h4 {
    font-size: 1rem;
    color: var(--dusk);
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.twitter { background: #1da1f2; color: white; }
.share-btn.facebook { background: #4267b2; color: white; }
.share-btn.copy { background: var(--muted); color: white; }

.subscribe-box form {
    display: flex;
    gap: 10px;
}

.subscribe-box input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.subscribe-box button {
    background: var(--sunset);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.subscribe-box button:hover {
    background: #d13655;
}

@media (max-width: 600px) {
    .share-subscribe {
        grid-template-columns: 1fr;
    }
    
    .subscribe-box form {
        flex-direction: column;
    }
}

.post-footer {
    max-width: 700px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share {
    display: flex;
    gap: 16px;
    align-items: center;
}

.share span {
    color: var(--muted);
}

.share a {
    color: var(--sky);
    text-decoration: none;
}

.share a:hover {
    text-decoration: underline;
}

.back-link {
    color: var(--sunset);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}