/* ================================================================
   KOKKEN BLOG STYLES
   Single posts · Blog archive · Related posts · TOC · FAQ
   Αρχείο: Kokken/blog/blog.css
   ================================================================ */

/* ── Variables ── */
:root {
    --kok-red:          #c0392b;
    --kok-red-hover:    #a93226;
    --kok-dark:         #1a1a1a;
    --kok-body-text:    #2c2c2c;
    --kok-mid:          #555555;
    --kok-light:        #f7f7f7;
    --kok-border:       #e8e8e8;
    --kok-white:        #ffffff;
    --kok-radius:       8px;
    --kok-shadow:       0 2px 12px rgba(0,0,0,0.07);
    --kok-shadow-hover: 0 8px 28px rgba(0,0,0,0.13);
    --kok-max:          1100px;
    --kok-font-body:    Georgia, 'Times New Roman', serif;
    --kok-font-ui:      -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ================================================================
   SINGLE POST — WRAPPER
   ================================================================ */
.kokken-article-wrap {
    max-width: var(--kok-max);
    margin: 0 auto;
    padding: 0 40px 80px;
}

/* ================================================================
   ARTICLE HEADER
   ================================================================ */
.article-header {
    padding: 48px 0 32px;
    border-bottom: 1px solid var(--kok-border);
    margin-bottom: 36px;
}

.article-title {
    font-family: var(--kok-font-ui);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--kok-dark);
    margin: 0 0 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: var(--kok-font-ui);
    font-size: 13px;
    color: var(--kok-mid);
}

.meta-category {
    display: inline-block;
    background: var(--kok-red);
    color: var(--kok-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition: background 0.2s;
}

.meta-category:hover { background: var(--kok-red-hover); color: var(--kok-white); }

.meta-separator { color: var(--kok-border); font-size: 16px; }
.meta-reading-time, .meta-date { color: var(--kok-mid); }

/* ================================================================
   FEATURED IMAGE
   ================================================================ */
.article-featured-image {
    margin: 0 0 40px;
    border-radius: var(--kok-radius);
    overflow: hidden;
    line-height: 0;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.article-featured-image:hover img { transform: scale(1.01); }

/* ================================================================
   ARTICLE BODY
   ================================================================ */
.article-body {
    font-family: var(--kok-font-body);
    font-size: 17.5px;
    line-height: 1.85;
    color: var(--kok-body-text);
}

.article-body .lead-paragraph {
    font-size: 20px;
    line-height: 1.75;
    color: #333;
    border-left: 4px solid var(--kok-red);
    padding-left: 20px;
    margin: 0 0 32px;
    font-style: italic;
}

.article-body p { margin: 0 0 24px; }
.article-body p:last-child { margin-bottom: 0; }

.article-body h2 {
    font-family: var(--kok-font-ui);
    font-size: 24px;
    font-weight: 700;
    color: var(--kok-dark);
    margin: 44px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--kok-light);
    position: relative;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.article-body h2::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 48px; height: 2px;
    background: var(--kok-red);
}

.article-body h3 {
    font-family: var(--kok-font-ui);
    font-size: 19px;
    font-weight: 700;
    color: var(--kok-dark);
    margin: 32px 0 14px;
    line-height: 1.4;
}

.article-body strong { font-weight: 700; color: var(--kok-dark); }

.article-body a {
    color: var(--kok-red);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.article-body a:hover { color: var(--kok-red-hover); }

.article-body ul, .article-body ol {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
}

.article-body ul li, .article-body ol li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 11px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--kok-red);
}

.article-body ol { counter-reset: kok-counter; }
.article-body ol li { counter-increment: kok-counter; }
.article-body ol li::before {
    content: counter(kok-counter) '.';
    position: absolute;
    left: 0;
    color: var(--kok-red);
    font-weight: 700;
    font-family: var(--kok-font-ui);
    font-size: 14px;
}

/* ── Inline images ── */
.article-body figure,
.article-body .article-inline-image {
    margin: 36px 0;
    border-radius: var(--kok-radius);
    overflow: hidden;
    line-height: 0;
}

.article-body figure img,
.article-body .article-inline-image img {
    width: 100%; height: auto;
    display: block;
    border-radius: var(--kok-radius);
}

.article-body figure figcaption,
.article-body .article-inline-image figcaption {
    font-family: var(--kok-font-ui);
    font-size: 13px;
    color: var(--kok-mid);
    padding: 10px 0 0;
    font-style: italic;
    line-height: 1.5;
}

/* ── Contact info block ── */
.article-body .contact-info {
    background: var(--kok-light);
    border: 1px solid var(--kok-border);
    border-radius: var(--kok-radius);
    padding: 28px 32px;
    margin: 36px 0;
    font-family: var(--kok-font-ui);
    font-size: 15px;
}
.article-body .contact-info h3 {
    font-size: 13px; text-transform: uppercase;
    letter-spacing: 1px; color: var(--kok-mid);
    margin: 0 0 16px; font-weight: 700;
}
.article-body .contact-info p { margin: 0 0 10px; font-size: 15px; line-height: 1.6; }
.article-body .contact-info p:last-child { margin: 0; }
.article-body .contact-info a { color: var(--kok-red); text-decoration: none; font-weight: 500; }
.article-body .contact-info a:hover { text-decoration: underline; }

/* ── Opening hours ── */
.article-body .opening-hours {
    background: var(--kok-white);
    border: 1px solid var(--kok-border);
    border-radius: var(--kok-radius);
    padding: 28px 32px;
    margin: 24px 0 36px;
    font-family: var(--kok-font-ui);
}
.article-body .opening-hours h3 {
    font-size: 13px; text-transform: uppercase;
    letter-spacing: 1px; color: var(--kok-mid);
    margin: 0 0 16px; font-weight: 700;
}
.article-body .opening-hours ul {
    margin: 0; padding: 0; list-style: none;
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
}
.article-body .opening-hours ul li { padding: 0; margin: 0; font-size: 14px; }
.article-body .opening-hours ul li::before { display: none; }

/* ── Business CTA ── */
.article-body .business-cta, .business-cta {
    background: #111;
    border-radius: var(--kok-radius);
    padding: 40px 44px;
    margin: 48px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.article-body .business-cta::before, .business-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kok-red), #e74c3c, var(--kok-red));
}
.business-cta h3 {
    font-family: var(--kok-font-ui);
    font-size: 22px; font-weight: 700;
    color: #fff; margin: 0 0 12px; letter-spacing: -0.02em;
}
.business-cta p {
    font-family: var(--kok-font-ui);
    font-size: 15px; color: #999;
    margin: 0 0 28px; line-height: 1.6;
    max-width: 480px; margin-left: auto; margin-right: auto;
}
.business-cta .btn, .article-body .business-cta .btn {
    display: inline-block;
    font-family: var(--kok-font-ui);
    font-weight: 700; font-size: 13px;
    padding: 13px 28px; border-radius: 5px;
    text-decoration: none; transition: all 0.2s;
    letter-spacing: 0.5px; text-transform: uppercase;
    margin: 0 6px;
}
.business-cta .btn-primary {
    background: var(--kok-red); color: white;
    box-shadow: 0 4px 14px rgba(192,57,43,0.35);
}
.business-cta .btn-primary:hover {
    background: var(--kok-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.45); color: white;
}
.business-cta .btn-secondary {
    background: transparent; color: #ccc; border: 1px solid #444;
}
.business-cta .btn-secondary:hover { border-color: #888; color: white; transform: translateY(-2px); }

/* ================================================================
   SHARE BUTTONS
   ================================================================ */
.share-buttons {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    padding: 28px 0;
    border-top: 1px solid var(--kok-border);
    border-bottom: 1px solid var(--kok-border);
    margin: 40px 0;
    font-family: var(--kok-font-ui);
}
.share-label { font-size: 13px; font-weight: 600; color: var(--kok-mid); margin: 0; white-space: nowrap; }
.share-links { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-share {
    display: inline-block; padding: 7px 16px; border-radius: 5px;
    font-size: 13px; font-weight: 600; text-decoration: none;
    transition: all 0.2s; letter-spacing: 0.2px;
}
.btn-facebook { background: #1877f2; color: white; }
.btn-facebook:hover { background: #166fe5; color: white; transform: translateY(-1px); }
.btn-twitter { background: #1da1f2; color: white; }
.btn-twitter:hover { background: #1a91da; color: white; transform: translateY(-1px); }
.btn-linkedin { background: #0a66c2; color: white; }
.btn-linkedin:hover { background: #004182; color: white; transform: translateY(-1px); }

/* ================================================================
   ARTICLE TAGS
   ================================================================ */
.article-tags {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin: 0 0 48px; font-family: var(--kok-font-ui);
}
.article-tags .tag {
    display: inline-block;
    background: var(--kok-light); color: var(--kok-dark);
    padding: 5px 14px; border-radius: 20px;
    font-size: 12px; font-weight: 500;
    border: 1px solid var(--kok-border);
    text-decoration: none; transition: all 0.2s;
}
.article-tags .tag:hover { background: var(--kok-red); color: white; border-color: var(--kok-red); }

/* ================================================================
   KOKKEN CTA (bottom of post)
   ================================================================ */
.kokken-cta {
    background: var(--kok-light);
    border: 1px solid var(--kok-border);
    border-left: 4px solid var(--kok-red);
    border-radius: var(--kok-radius);
    padding: 28px 32px;
    margin: 0 0 48px;
    font-family: var(--kok-font-ui);
}
.kokken-cta h3 { font-size: 18px; font-weight: 700; color: var(--kok-dark); margin: 0 0 10px; }
.kokken-cta p  { font-size: 14px; color: var(--kok-mid); margin: 0 0 20px; line-height: 1.6; }
.kokken-cta .btn {
    display: inline-block; background: var(--kok-red); color: white;
    padding: 11px 26px; border-radius: 5px;
    font-size: 14px; font-weight: 700;
    text-decoration: none; transition: all 0.2s;
}
.kokken-cta .btn:hover { background: var(--kok-red-hover); transform: translateY(-1px); color: white; }

/* ================================================================
   PREV / NEXT NAVIGATION
   ================================================================ */
.kokken-post-nav {
    margin-top: 40px; padding-top: 32px; border-top: 2px solid #f0f0f0;
}
.post-nav-inner { display: flex; gap: 16px; justify-content: space-between; }
.post-nav-item {
    display: flex; flex-direction: column; gap: 6px; flex: 1;
    padding: 18px 20px;
    border: 1px solid #e8e8e8; border-radius: 8px;
    text-decoration: none; background: #fff;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.post-nav-item:hover {
    border-color: var(--kok-red);
    box-shadow: 0 4px 16px rgba(192,57,43,0.12);
    transform: translateY(-2px);
}
.post-nav-prev { text-align: left; }
.post-nav-next { text-align: right; }
.post-nav-empty { flex: 1; }
.post-nav-label {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--kok-red);
}
.post-nav-title { font-size: 15px; font-weight: 600; color: var(--kok-dark); line-height: 1.4; }

/* ================================================================
   RELATED POSTS
   ================================================================ */
.related-posts {
    margin-top: 60px; padding-top: 40px;
    border-top: 2px solid var(--kok-light);
}
.related-posts-container { max-width: var(--kok-max); margin: 0 auto; }
.related-posts-title {
    font-family: var(--kok-font-ui); font-size: 20px; font-weight: 700;
    color: var(--kok-dark); margin: 0 0 28px; letter-spacing: -0.01em;
}
.related-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
    border: 1px solid var(--kok-border); border-radius: var(--kok-radius);
    overflow: hidden; transition: all 0.25s;
    background: var(--kok-white);
}
.related-card:hover { box-shadow: var(--kok-shadow-hover); transform: translateY(-3px); }
.related-card-image { display: block; overflow: hidden; line-height: 0; }
.related-card-image img {
    width: 100%; height: 160px; object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.related-card:hover .related-card-image img { transform: scale(1.04); }
.related-card-content { padding: 16px 18px; font-family: var(--kok-font-ui); }
.related-card-title {
    font-size: 15px; font-weight: 600; line-height: 1.4;
    margin: 0 0 8px; color: var(--kok-dark);
}
.related-card-title a { text-decoration: none; color: inherit; transition: color 0.2s; }
.related-card:hover .related-card-title a { color: var(--kok-red); }
.related-card-date { font-size: 12px; color: var(--kok-mid); }

/* ================================================================
   FLOATING TOC BUTTON
   ================================================================ */
#kokken-toc-btn {
    position: fixed; bottom: 30px; left: 30px;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--kok-dark); color: white;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
    transition: all 0.3s ease;
    z-index: 998; opacity: 0; transform: translateY(10px); pointer-events: none;
}
#kokken-toc-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#kokken-toc-btn:hover {
    background: var(--kok-red); transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 22px rgba(192,57,43,0.35);
}

#kokken-toc-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease; z-index: 998;
}
#kokken-toc-overlay.active { opacity: 1; visibility: visible; }

#kokken-toc-panel {
    position: fixed; left: 20px; bottom: 96px;
    width: 270px;
    background: var(--kok-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 2px solid var(--kok-border);
    border-left: 3px solid var(--kok-red);
    opacity: 0; visibility: hidden;
    transform: translateY(10px) scale(0.97);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999; max-height: 70vh;
    display: flex; flex-direction: column; overflow: hidden;
}
#kokken-toc-panel.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.toc-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-bottom: 1px solid var(--kok-border); flex-shrink: 0;
}
.toc-panel-header span {
    font-family: var(--kok-font-ui);
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px; color: var(--kok-mid);
}
.toc-panel-close {
    background: none; border: none; font-size: 22px; line-height: 1;
    color: var(--kok-mid); cursor: pointer; padding: 0;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s;
}
.toc-panel-close:hover { color: var(--kok-red); }

.toc-panel-links { overflow-y: auto; padding: 6px 0; }
.toc-panel-links a {
    display: block; padding: 9px 16px;
    font-family: var(--kok-font-ui); font-size: 13.5px; line-height: 1.4;
    color: var(--kok-dark); text-decoration: none;
    border-left: 2px solid transparent; transition: all 0.18s ease;
}
.toc-panel-links a.toc-sub { padding-left: 28px; font-size: 12.5px; color: var(--kok-mid); }
.toc-panel-links a:hover {
    background: var(--kok-light); border-left-color: var(--kok-red);
    padding-left: 20px; color: var(--kok-red);
}
.toc-panel-links a.toc-sub:hover { padding-left: 32px; }
.toc-panel-links a.active {
    color: var(--kok-red); border-left-color: var(--kok-red);
    font-weight: 600; background: rgba(192,57,43,0.04);
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.article-faq { margin: 48px 0 0; border-top: 2px solid var(--kok-light); padding-top: 40px; }
.faq-title {
    font-family: var(--kok-font-ui); font-size: 22px; font-weight: 700;
    color: var(--kok-dark); margin: 0 0 24px; letter-spacing: -0.01em;
    border-bottom: none !important; padding-bottom: 0 !important;
}
.article-faq .faq-title::after { display: none !important; }
.faq-item {
    border: 1px solid var(--kok-border); border-radius: var(--kok-radius);
    margin-bottom: 10px; overflow: hidden; transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--kok-shadow); }
.faq-item.open { border-color: #d0d0d0; box-shadow: var(--kok-shadow); }
.faq-question {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    padding: 18px 20px; background: var(--kok-white);
    border: none; cursor: pointer; text-align: left;
    font-family: var(--kok-font-ui); font-size: 15px; font-weight: 600;
    color: var(--kok-dark); line-height: 1.4; transition: background 0.15s;
}
.faq-question:hover { background: #fafafa; }
.faq-item.open .faq-question { background: #fafafa; color: var(--kok-red); }
.faq-icon {
    flex-shrink: 0; width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 300; color: var(--kok-mid);
    border: 1px solid var(--kok-border); border-radius: 50%;
    transition: all 0.25s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--kok-red); border-color: var(--kok-red); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; padding: 0 20px; }
.faq-answer.open { max-height: 500px; padding: 0 20px 18px; }
.faq-answer p { font-family: var(--kok-font-ui); font-size: 14px; line-height: 1.7; color: #444; margin: 12px 0 0; border-top: 1px solid var(--kok-border); padding-top: 14px; }
.faq-answer p a { color: var(--kok-red); text-decoration: underline; text-underline-offset: 2px; }
.faq-answer p a:hover { color: var(--kok-red-hover); }

/* ================================================================
   BLOG ARCHIVE GRID (/blog/ page)
   ================================================================ */
.kokken-blog-page { font-family: var(--kok-font-ui); }

.kokken-blog-header {
    background: var(--kok-dark); color: white;
    padding: 52px 20px; text-align: center;
}
.kokken-blog-header h1 {
    font-size: 32px; font-weight: 800; margin: 0 0 10px;
    color: white; letter-spacing: -0.02em;
}
.kokken-blog-header p { font-size: 16px; color: #999; margin: 0; }

.kokken-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

/* Filter buttons */
.kokken-blog-filters {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 36px; padding-bottom: 28px;
    border-bottom: 1px solid var(--kok-border);
}
.kok-filter-btn {
    padding: 7px 18px; border-radius: 20px;
    border: 1px solid var(--kok-border);
    text-decoration: none; font-size: 13px; font-weight: 600;
    color: var(--kok-mid); background: white;
    cursor: pointer; transition: all 0.2s;
    font-family: var(--kok-font-ui);
}
.kok-filter-btn:hover, .kok-filter-btn.active {
    background: var(--kok-red); color: white; border-color: var(--kok-red);
}

/* Blog grid */
.kokken-blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-bottom: 52px;
    transition: opacity 0.2s;
}
.kokken-blog-card {
    background: white; border: 1px solid var(--kok-border);
    border-radius: var(--kok-radius); overflow: hidden;
    box-shadow: var(--kok-shadow); transition: all 0.25s;
    display: flex; flex-direction: column;
}
.kokken-blog-card:hover { transform: translateY(-4px); box-shadow: var(--kok-shadow-hover); }

.kokken-blog-card .card-img-link { display: block; overflow: hidden; line-height: 0; }
.kokken-blog-card .card-img {
    width: 100%; height: 210px; object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.kokken-blog-card:hover .card-img { transform: scale(1.04); }
.kokken-blog-card .card-img-placeholder {
    width: 100%; height: 210px; background: var(--kok-light);
    display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.kokken-blog-card .card-body {
    padding: 20px 22px; flex: 1; display: flex; flex-direction: column;
}
.kokken-blog-card .card-cat a {
    display: inline-block; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--kok-red); text-decoration: none; margin-bottom: 10px;
}
.kokken-blog-card .card-title {
    font-size: 17px; font-weight: 700; line-height: 1.4;
    color: var(--kok-dark); text-decoration: none;
    margin-bottom: 10px; display: block; transition: color 0.2s;
    letter-spacing: -0.01em;
}
.kokken-blog-card .card-title:hover { color: var(--kok-red); }
.kokken-blog-card .card-excerpt {
    font-size: 14px; color: var(--kok-mid); line-height: 1.65;
    flex: 1; margin-bottom: 18px;
}
.kokken-blog-card .card-footer {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid var(--kok-border); padding-top: 12px;
    font-size: 12px; color: #999; gap: 6px;
}
.kokken-blog-card .card-read-more {
    color: var(--kok-red); font-weight: 700; font-size: 13px;
    text-decoration: none; white-space: nowrap;
}
.kokken-blog-card .card-read-more:hover { text-decoration: underline; }

/* Pagination */
.kokken-blog-pagination { display: flex; justify-content: center; }
.kokken-blog-pagination .page-numbers {
    display: flex; gap: 6px; list-style: none; margin: 0; padding: 0;
}
.kokken-blog-pagination .page-numbers li a,
.kokken-blog-pagination .page-numbers li span {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--kok-border);
    border-radius: 6px; font-size: 14px; font-weight: 600;
    color: var(--kok-mid); text-decoration: none; transition: all 0.2s;
}
.kokken-blog-pagination .page-numbers li a:hover,
.kokken-blog-pagination .page-numbers li .current {
    background: var(--kok-red); color: white; border-color: var(--kok-red);
}

.kokken-no-posts {
    text-align: center; padding: 60px 20px;
    color: var(--kok-mid); font-size: 16px;
    background: var(--kok-light); border-radius: var(--kok-radius);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1140px) {
    .kokken-article-wrap,
    .kokken-blog-container { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 900px) {
    .related-posts-grid  { grid-template-columns: 1fr 1fr; }
    .kokken-blog-grid    { grid-template-columns: 1fr 1fr; gap: 20px; }
    .article-title       { font-size: 28px; }
    .article-body .opening-hours ul { grid-template-columns: 1fr; }
    .business-cta        { padding: 32px 24px; }
    .post-nav-inner      { flex-direction: column; gap: 12px; }
    .post-nav-next       { text-align: left; }
}

@media (max-width: 640px) {
    .kokken-article-wrap,
    .kokken-blog-container { padding-left: 16px; padding-right: 16px; }
    .article-header   { padding: 32px 0 24px; }
    .article-title    { font-size: 24px; }
    .article-body     { font-size: 16px; }
    .article-body .lead-paragraph { font-size: 17px; }
    .article-body h2  { font-size: 20px; }
    .article-body .contact-info,
    .article-body .opening-hours { padding: 20px; }
    .related-posts-grid  { grid-template-columns: 1fr; }
    .kokken-blog-grid    { grid-template-columns: 1fr; gap: 16px; }
    .business-cta        { padding: 28px 20px; }
    .business-cta h3     { font-size: 18px; }
    .business-cta .btn   { display: block; margin: 8px 0; }
    .share-buttons       { flex-direction: column; align-items: flex-start; gap: 10px; }
    .kokken-blog-header h1 { font-size: 26px; }
    #kokken-toc-btn      { bottom: 70px; left: 14px; width: 42px; height: 42px; }
    #kokken-toc-panel    { left: 15px; bottom: 126px; width: calc(100vw - 30px); max-width: 300px; }
    .post-nav-item       { padding: 14px 16px; }
    .post-nav-title      { font-size: 14px; }
}
