/* Blog Post Page Styles */

.blog-post-main { padding-top: 80px; }

/* Hero */
.post-hero {
    height: 60vh;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,0.9) 0%, rgba(26,18,8,0.3) 60%, transparent 100%);
}

.post-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 3rem;
}

.blog-category-hero {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.post-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    flex-wrap: wrap;
}

/* Body */
.post-body-wrap {
    padding: 3rem 1.5rem 5rem;
}

.post-body {
    max-width: 760px;
    margin: 0 auto;
}

/* Share bar */
.post-share-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-share-bar span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-fb-large {
    font-size: 0.875rem !important;
    padding: 0.55rem 1.25rem !important;
}

/* Post content */
.post-intro {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.post-body h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin: 2.5rem 0 1rem;
}

.post-body p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.post-img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    aspect-ratio: 16/8;
    object-fit: cover;
}

/* Pros/Cons */
.post-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.pros, .cons {
    padding: 1.25rem;
    border-radius: var(--radius);
}

.pros {
    background: #f0fdf4;
    border: 1px solid #86efac;
}

.cons {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.pros h4, .cons h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    font-size: 0.875rem;
    color: var(--text-body);
    padding: 0.2rem 0;
}

/* Tip box */
.post-tip {
    background: var(--primary-light);
    border: 1px solid rgba(232,147,13,0.25);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-body);
}

/* Seasonal grid */
.post-seasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.season {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.season h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.season p {
    font-size: 0.875rem;
    margin: 0;
}

/* Lists */
.post-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1.5rem;
}

.post-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
}

.post-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.post-numbered {
    counter-reset: list-counter;
}

.post-numbered li {
    counter-increment: list-counter;
}

.post-numbered li::before {
    content: counter(list-counter) '.';
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

/* CTA box */
.post-cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, #2A1E0E 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
}

.post-cta-box h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.post-cta-box p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

/* Share bottom */
.post-share-bottom {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
}

.post-share-bottom p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* Footer adjustment for blog pages */
.footer { margin-top: 0; }

@media (max-width: 640px) {
    .post-pros-cons { grid-template-columns: 1fr; }
    .post-seasons { grid-template-columns: 1fr; }
    .post-hero-content h1 { font-size: 1.8rem; }
}
