/* =============================================
   FLAVORNEST BLOG — Modern & Clean Theme
   ============================================= */

/* --- RESET & VARIABLES --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:    #92c23b;
    --primary-dk: #388e3c;
    --primary-lt: #e8f5e9;
    --text:       #1b2a1b;
    --text-muted: #6b7280;
    --bg:         #ffffff;
    --bg-soft:    #f4f9f0;
    --bg-card:    #ffffff;
    --border:     #ddecd0;
    --radius:     12px;
    --radius-sm:  8px;
    --shadow:     0 2px 12px rgba(56,142,60,.08);
    --shadow-hover: 0 8px 32px rgba(56,142,60,.16);
    --font-head:  'Playfair Display', Georgia, serif;
    --font-body:  'DM Sans', system-ui, sans-serif;
    --max-w:      1240px;
    --sidebar-w:  320px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
}

/* RTL support */
[dir="rtl"] .hero-cta::after { content: ' ←'; }
[dir="rtl"] .breadcrumb span { transform: scaleX(-1); display: inline-block; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* --- LAYOUT --- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

.layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-w);
    gap: 40px;
    align-items: start;
    margin-top: 32px;
}

@media (max-width: 900px) {
    .layout-with-sidebar { grid-template-columns: 1fr; }
    .sidebar { order: 2; }
}

/* --- TOPBAR --- */
.topbar {
    background: var(--text);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.topbar-tagline { opacity: .7; font-size: 12px; }
.lang-switcher { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.lang-btn {
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.7);
    transition: all .2s;
    font-weight: 500;
}
.lang-btn:hover, .lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* --- HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}
/* Fallback in case SVG doesn't load */
.logo-icon { font-size: 28px; }
.logo-name {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}
.logo-sub { font-size: 11px; color: var(--text-muted); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    flex-wrap: wrap;
}
.main-nav a {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all .2s;
    white-space: nowrap;
}
.main-nav a:hover {
    background: var(--bg-soft);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        gap: 2px;
        margin-left: 0;
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 10px 14px; border-radius: var(--radius-sm); }
    .site-header { position: relative; }
}

/* --- MAIN --- */
.site-main { padding: 0 0 60px; }

/* --- TRENDING BAR --- */
.trending-bar {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 20px;
    margin: 24px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}
.trending-label {
    background: var(--primary-dk);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.trending-bar strong { color: var(--primary-dk); }

/* --- HERO FEATURED --- */
.hero-featured { margin-top: 28px; }
.hero-card { display: block; border-radius: 20px; overflow: hidden; }
.hero-image {
    background-size: cover;
    background-position: center;
    height: 480px;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: transform .4s;
}
.hero-card:hover .hero-image { transform: scale(1.01); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 32px;
    color: #fff;
    width: 100%;
    max-width: 700px;
}
.hero-badges { display: flex; gap: 8px; margin-bottom: 14px; }
.badge-featured {
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-cat {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(22px, 4vw, 36px);
    line-height: 1.2;
    margin-bottom: 12px;
}
.hero-excerpt {
    font-size: 15px;
    opacity: .85;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hero-cta {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s;
}
.hero-card:hover .hero-cta { background: var(--primary-dk); }

@media (max-width: 600px) {
    .hero-image { height: 320px; }
    .hero-content { padding: 20px; }
}

/* --- CATEGORY PILLS --- */
.category-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.pill {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all .2s;
    white-space: nowrap;
}
.pill:hover { border-color: var(--primary); color: var(--primary); }
.pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* --- POSTS GRID --- */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.post-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow .25s, transform .25s;
    border: 1px solid var(--border);
}
.post-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.card-image-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    height: 200px;
}
.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.post-card:hover .card-image { transform: scale(1.05); }
.card-badge-featured {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fbbf24;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.card-cat-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.card-body { padding: 18px; }
.card-title {
    font-family: var(--font-head);
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 8px;
}
.card-title a { color: var(--text); transition: color .2s; }
.card-title a:hover { color: var(--primary); }
.card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

/* --- PAGINATION --- */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.page-btn {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all .2s;
}
.page-btn:hover, .page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* --- SIDEBAR --- */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 80px; }

.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.widget-title {
    font-family: var(--font-head);
    font-size: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
}

/* AD WIDGETS */
.ad-widget { background: var(--bg-soft); }
.ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    background: repeating-linear-gradient(45deg, #f0f0f0, #f0f0f0 10px, #f8f8f8 10px, #f8f8f8 20px);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    border: 2px dashed var(--border);
    border-radius: var(--radius-sm);
    margin: 12px;
}
.ad-placeholder.inpost { min-height: 120px; margin: 24px 0; }

/* PRODUCTS */
.products-list { padding: 12px; display: flex; flex-direction: column; gap: 12px; }
.product-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all .2s;
    background: #fff;
}
.product-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.product-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.product-info { flex: 1; min-width: 0; }
.product-source {
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    letter-spacing: .5px;
}
.product-source.amazon { background: #ff9500; color: #fff; }
.product-source.iherb { background: #63b32e; color: #fff; }
.product-title {
    font-size: 12px;
    font-weight: 600;
    margin: 4px 0 2px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price { font-size: 14px; font-weight: 700; color: var(--primary); }
.product-btn {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
}
.product-card:hover .product-btn { color: var(--primary); }

/* POPULAR POSTS */
.popular-posts { padding: 8px 12px 12px; }
.popular-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    transition: background .2s;
}
.popular-item:hover { background: var(--bg-soft); }
.popular-num {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    opacity: .3;
    line-height: 1;
    width: 28px;
    flex-shrink: 0;
    text-align: center;
}
.popular-item:hover .popular-num { opacity: 1; }
.popular-title { font-size: 13px; font-weight: 500; line-height: 1.35; }
.popular-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* CATEGORY WIDGET */
.cat-widget { padding: 8px 12px 12px; }
.cat-widget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
    color: var(--text);
}
.cat-widget-item:hover {
    background: color-mix(in srgb, var(--cat-color, var(--primary)) 10%, transparent);
    color: var(--cat-color, var(--primary));
}
.cat-count {
    background: var(--bg-soft);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    color: var(--text-muted);
}

/* --- CATEGORY HERO --- */
.cat-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--cat-color) 8%, white), white);
    border: 2px solid color-mix(in srgb, var(--cat-color) 20%, transparent);
    margin: 28px 0 0;
}
.cat-hero-icon { font-size: 52px; }
.cat-hero-title { font-family: var(--font-head); font-size: 32px; }
.cat-hero-count { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* --- SINGLE POST --- */
.single-post { min-width: 0; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--border); }

.post-header { margin-bottom: 24px; }
.post-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.post-cat-label {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.post-date, .post-views { font-size: 13px; color: var(--text-muted); }
.post-title {
    font-family: var(--font-head);
    font-size: clamp(24px, 4vw, 40px);
    line-height: 1.2;
    margin-bottom: 14px;
}
.post-excerpt {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    border-left: 3px solid var(--primary);
    padding-left: 16px;
}

.post-thumbnail-wrap {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    max-height: 460px;
}
.post-thumbnail { width: 100%; height: 460px; object-fit: cover; }

/* SHARE BUTTONS */
.share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}
.share-bar.bottom { margin-top: 32px; margin-bottom: 0; }
.share-label { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-right: 4px; }
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all .2s;
    text-decoration: none;
}
.share-btn.pinterest { background: #E60023; color: #fff; }
.share-btn.facebook  { background: #1877F2; color: #fff; }
.share-btn.twitter   { background: #1DA1F2; color: #fff; }
.share-btn.whatsapp  { background: #25D366; color: #fff; }
.share-btn.copy-link { background: var(--bg-soft); color: var(--text); border: 1px solid var(--border); }
.share-btn:hover { opacity: .88; transform: translateY(-1px); }

/* POST CONTENT */
.post-content {
    line-height: 1.85;
    font-size: 17px;
    color: #2d2d2d;
    margin-bottom: 32px;
}
.post-content h2 {
    font-family: var(--font-head);
    font-size: 26px;
    margin: 36px 0 14px;
    color: var(--text);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}
.post-content h3 { font-size: 20px; margin: 28px 0 10px; color: var(--text); }
.post-content p { margin-bottom: 18px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 18px; }
.post-content li { margin-bottom: 6px; }
.post-content a { color: var(--primary); text-decoration: underline; }
.post-content img { border-radius: var(--radius); margin: 24px 0; }
.post-content blockquote {
    border-left: 4px solid var(--primary);
    margin: 24px 0;
    padding: 16px 20px;
    background: var(--bg-soft);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-muted);
}

/* RELATED POSTS */
.related-posts { margin: 40px 0; }
.related-posts h3 {
    font-family: var(--font-head);
    font-size: 22px;
    margin-bottom: 16px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.related-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: all .2s; }
.related-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.related-card img { width: 100%; height: 130px; object-fit: cover; }
.related-title {
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--text);
}
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

/* --- COMMENTS --- */
.comments-section { margin-top: 48px; }
.comments-title {
    font-family: var(--font-head);
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.comment-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.comment {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.reply-av { width: 32px; height: 32px; font-size: 13px; background: #6366f1; }
.comment-body { flex: 1; background: var(--bg-soft); border-radius: var(--radius); padding: 14px 16px; }
.comment-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}
.comment-meta strong { color: var(--text); }
.comment-meta span { color: var(--text-muted); }
.comment-text { font-size: 15px; line-height: 1.65; }
.reply-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
    padding: 0;
    font-family: var(--font-body);
}
.reply-btn:hover { text-decoration: underline; }
.reply-form-wrap { margin-top: 14px; }
.reply-comment { margin-top: 12px; margin-left: 36px; }

/* COMMENT FORM */
.comment-form-section {
    background: var(--bg-soft);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.comment-form-section h4 { font-family: var(--font-head); font-size: 20px; margin-bottom: 20px; }

.comment-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.comment-form.compact .form-row { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }

.comment-form input,
.comment-form textarea,
.comment-form select {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: #fff;
    transition: border-color .2s;
    resize: vertical;
}
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-note { font-size: 12px; color: var(--text-muted); }

.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .2s;
    align-self: flex-start;
}
.btn-submit:hover { background: var(--primary-dk); transform: translateY(-1px); }

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.alert.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* --- FOOTER --- */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,.8);
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding: 52px 0 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
    margin-bottom: 12px;
}
.footer-logo-img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
}
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.2);
    transition: all .2s;
    color: rgba(255,255,255,.7);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-links h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.footer-links a {
    font-size: 13px;
    padding: 4px 0;
    color: rgba(255,255,255,.6);
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: #fff; }
.post-count { font-size: 11px; opacity: .5; }

.footer-disclaimer h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.footer-disclaimer p { font-size: 12px; line-height: 1.7; opacity: .6; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 16px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: .5;
    flex-wrap: wrap;
    gap: 8px;
}

/* --- EMPTY STATE --- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.empty-state p { font-size: 17px; margin-bottom: 20px; }

/* --- INPOST AD --- */
.inpost-ad { margin: 32px 0; }
