/* Post Styles */
.post-hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--primary-dark);
    overflow: hidden;
}
.post-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}
.post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.post-category {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.post-title {
    font-family: var(--font-elegant);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}
.post-meta {
    display: flex;
    gap: 25px;
    color: #ccc;
    font-size: 0.95rem;
}
.post-meta i {
    margin-right: 8px;
    color: var(--accent-gold);
}
.post-content-section {
    padding: 60px 0;
    background: #f9f9f9;
}
.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}
.post-main {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.post-body .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}
.post-body h2 {
    font-family: var(--font-elegant);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}
.post-body h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}
.post-body p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}
.post-body ul, .post-body ol {
    margin: 20px 0;
    padding-left: 30px;
}
.post-body li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #444;
}
.post-body blockquote {
    border-left: 4px solid var(--accent-gold);
    background: #f9f9f9;
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}
.post-cta {
    background: linear-gradient(135deg, var(--primary-dark), #002244);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}
.post-cta h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.8rem;
}
.post-cta p {
    color: #ddd;
    margin-bottom: 25px;
}
.btn-cta {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}
.btn-cta:hover {
    background: #f4e4a6;
    transform: translateY(-2px);
}
.promo-badge {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-left: 8px;
    font-weight: 700;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
@media (max-width: 992px) {
    .post-layout {
        grid-template-columns: 1fr;
    }
    .post-main {
        padding: 30px;
    }
    .post-title {
        font-size: 2rem;
    }
}
