/*
Theme Name: Balkon Blog
Theme URI:
Author:
Description: Elegáns blog sablon prémium, természetes designnal. Playfair Display és Lato betűtípusokkal, krém-zöld-arany színvilággal.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: balkon-blog
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --bg:         #F8F4ED;
    --bg-white:   #FFFFFF;
    --green-dark: #1A2E14;
    --green-mid:  #2D4A22;
    --gold:       #C9A84C;
    --brown:      #8B7355;
    --text:       #6B6B5E;
    --text-dark:  #2C2C2A;
    --font-serif: 'Playfair Display', serif;
    --font-sans:  'Lato', sans-serif;
    --max-w:      1280px;
    --px:         1.5rem;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-weight: 300;
    background-color: var(--bg);
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--green-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brown); }
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }

::selection { background: var(--gold); color: var(--green-dark); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--px);
    padding-right: var(--px);
}

.section-py    { padding-top: 8rem; padding-bottom: 8rem; }
.section-py-sm { padding-top: 5rem; padding-bottom: 5rem; }

.bg-cream { background: var(--bg); }
.bg-white  { background: var(--bg-white); }
.bg-dark   { background: var(--green-dark); }

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
                transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* ============================================================
   CATEGORY BADGES
   ============================================================ */
.cat-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.25rem 0.75rem;
    line-height: 1.6;
    transition: background 0.2s, color 0.2s;
    border-radius: 2rem;
}
.cat-badge:hover { background: var(--gold); color: var(--green-dark); }

.cat-badge-dark {
    background: var(--green-dark);
    color: var(--gold);
    border-color: var(--green-dark);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.25s;
    cursor: pointer;
    line-height: 1;
    border-radius: 0.625rem;
}

.btn-primary { background: var(--gold); color: var(--green-dark); }
.btn-primary:hover { background: var(--bg); color: var(--green-dark); }

.btn-outline { border: 1px solid var(--green-dark); color: var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--bg); }

.btn-outline-light { border: 1px solid rgba(248,244,237,0.35); color: var(--bg); }
.btn-outline-light:hover { background: rgba(248,244,237,0.1); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    transition: box-shadow 0.3s;
}

.site-header__bg {
    position: absolute;
    inset: 0;
    background: rgba(248,244,237,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(139,115,85,0.12);
    transition: background 0.3s;
}

.site-header.scrolled { box-shadow: 0 2px 12px rgba(26,46,20,0.07); }
.site-header.scrolled .site-header__bg { background: rgba(255,255,255,0.97); }

.site-header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
}

/* Logo */
.site-logo {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--green-dark);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
}
.site-logo__initials { color: var(--brown); font-style: italic; }
.site-logo__img { height: 36px; width: auto; display: block; }

/* Desktop nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}
.site-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.site-nav .nav-list li a {
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    color: var(--text-dark);
    transition: color 0.2s;
}
.site-nav .nav-list li a:hover { color: var(--brown); }

.site-nav__cta {
    border: 1px solid var(--green-dark);
    color: var(--green-dark);
    padding: 0.625rem 1.5rem;
    font-size: 0.8125rem;
    font-family: var(--font-sans);
    letter-spacing: 0.04em;
    transition: all 0.25s;
    white-space: nowrap;
}
.site-nav__cta:hover { background: var(--green-dark); color: var(--bg); }

/* Mobile toggle */
.nav-toggle {
    display: none;
    color: var(--green-dark);
    position: relative;
    z-index: 1;
    padding: 0.5rem;
}

/* Mobile overlay nav */
.mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 45;
    padding: 7rem var(--px) 3rem;
    gap: 0;
    overflow-y: auto;
    /* Alapállapot: rejtett, jobbról csúszik be */
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-nav__close {
    position: absolute;
    top: 1.75rem;
    right: var(--px);
    color: var(--green-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}
.mobile-nav__close:hover { color: var(--gold); }

.mobile-nav-list { list-style: none; }
.mobile-nav-list li a {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--green-dark);
    border-bottom: 1px solid rgba(139,115,85,0.15);
    padding: 1.25rem 0;
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-list li a:hover { color: var(--gold); padding-left: 0.5rem; }

.mobile-nav__cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
    align-self: flex-start;
}

body.nav-open { overflow: hidden; }

@media (max-width: 900px) {
    .site-nav { display: none; }
    .nav-toggle { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
    background: var(--green-dark);
}

.hero__bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1A2E14 0%, #2D4A22 55%, #1A2E14 100%);
    opacity: 0.88;
}

.hero__texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
}

.hero__thumb {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 5rem var(--px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 3rem var(--px) 4rem;
    }
    .hero__content { order: 1; }
    .hero__image {
        order: 2;
        display: flex;
    }
    .hero__image-frame img {
        height: 220px;
    }
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.hero__eyebrow .line {
    display: block;
    width: 3rem;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}
.hero__cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 300;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 400;
    color: var(--bg);
    line-height: 1.1;
    margin-bottom: 2rem;
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__excerpt {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(248,244,237,0.8);
    max-width: 36rem;
    margin-bottom: 3rem;
    line-height: 1.85;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Hero image column */
.hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero__image::before {
    content: '';
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero__image-frame {
    position: relative;
    width: 100%;
    border: 1px solid rgba(201,168,76,0.2);
    overflow: hidden;
    border-radius: 0.875rem;
}
.hero__image-frame a { display: block; }
.hero__image-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}
@media (max-width: 900px) {
    .hero__image-frame img {
        height: 240px !important;
    }
}
.hero__image-frame:hover img { transform: scale(1.03); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.section-header__eyebrow {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 300;
    color: var(--brown);
    margin-bottom: 1rem;
}
.section-header__title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
}

/* ============================================================
   POST CARDS (GRID)
   ============================================================ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
@media (max-width: 1024px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .posts-grid { grid-template-columns: 1fr; } }

.post-card {
    background: var(--bg-white);
    border: 1px solid rgba(139,115,85,0.15);
    overflow: hidden;
    transition: border-color 0.4s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border-radius: 0.875rem;
}
.post-card:hover {
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26,46,20,0.08);
}

.post-card__thumb {
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg);
    flex-shrink: 0;
}
.post-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.post-card:hover .post-card__thumb img { transform: scale(1.04); }

.post-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.post-card__cat { margin-bottom: 0.75rem; }

.post-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
    line-height: 1.35;
}
.post-card:hover .post-card__title { color: var(--green-mid); }
.post-card__title a { color: inherit; }

.post-card__excerpt {
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(107,107,94,0.7);
    padding-top: 1rem;
    border-top: 1px solid rgba(139,115,85,0.1);
    margin-top: auto;
}
.post-card__meta svg {
    width: 13px; height: 13px;
    stroke: var(--brown);
    flex-shrink: 0;
    fill: none;
}
.post-card__meta .meta-sep { margin: 0 0.25rem; opacity: 0.4; }

/* ============================================================
   TEXT LIST POSTS (dark section)
   ============================================================ */
.text-posts { max-width: 56rem; margin: 0 auto; }

.text-post {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(248,244,237,0.1);
}
.text-post:first-child { border-top: 1px solid rgba(248,244,237,0.1); }

.text-post__number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: rgba(248,244,237,0.07);
    line-height: 1;
    text-align: right;
    user-select: none;
    font-weight: 400;
    padding-top: 0.25rem;
}

.text-post__cat { margin-bottom: 0.6rem; }

.text-post__title {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
    line-height: 1.3;
}
.text-post__title a { color: var(--bg); }
.text-post:hover .text-post__title a { color: var(--gold); }

.text-post__excerpt {
    font-size: 0.875rem;
    color: rgba(248,244,237,0.65);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-post__link {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
}
.text-post:hover .text-post__link { gap: 0.7rem; }
.text-post__link svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.5; }

/* ============================================================
   FEATURED POST (side-by-side)
   ============================================================ */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 900px) {
    .featured-post { grid-template-columns: 1fr; gap: 2.5rem; }
}

.featured-post__thumb {
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(139,115,85,0.15);
    border-radius: 0.875rem;
}
.featured-post__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.featured-post:hover .featured-post__thumb img { transform: scale(1.03); }

.featured-post__kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brown);
    font-weight: 300;
}
.featured-post__kicker .line {
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--brown);
}

.featured-post__title {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.featured-post__title a { color: var(--green-dark); transition: color 0.2s; }
.featured-post__title a:hover { color: var(--green-mid); }

.featured-post__excerpt {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 2.25rem;
    color: var(--text);
}

/* ============================================================
   FEATURED SLIDER
   ============================================================ */
.featured-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.featured-slider__track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}

.featured-slide {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    /* szélesség JS-ben van beállítva */
}
@media (max-width: 900px) {
    .featured-slide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .featured-slide__thumb { order: 1; }
    .featured-slide__body  { order: 2; }
}

.featured-slide__body {}

.featured-slide__thumb {
    overflow: hidden;
    height: 380px;
    border: 1px solid rgba(139,115,85,0.15);
    border-radius: 0.875rem;
    flex-shrink: 0;
}
.featured-slide__thumb--empty {
    background: var(--bg);
}
.featured-slide__thumb a { display: block; height: 100%; }
.featured-slide__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s;
    display: block;
}
.featured-slide__thumb:hover img { transform: scale(1.03); }
@media (max-width: 900px) {
    .featured-slide__thumb { height: 220px; }
}

/* Controls */
.featured-slider__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(139,115,85,0.3);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    transition: all 0.2s;
    cursor: pointer;
    flex-shrink: 0;
}
.slider-btn:hover {
    background: var(--green-dark);
    color: var(--bg);
    border-color: var(--green-dark);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.slider-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(139,115,85,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
}
.slider-dot.active {
    background: var(--green-dark);
    width: 1.5rem;
    border-radius: 4px;
}

/* ============================================================
   ARCHIVE PAGE
   ============================================================ */
.archive-header {
    background: var(--green-dark);
    padding: 10rem var(--px) 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.archive-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1A2E14, #2D4A22, #1A2E14);
    opacity: 0.75;
    z-index: 0;
}
.archive-header .archive-header__inner { position: relative; z-index: 1; }

.archive-header__eyebrow {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 0.35rem 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(201,168,76,0.4);
    font-weight: 300;
}

.archive-header__title {
    color: var(--bg);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}
.archive-header__desc {
    color: rgba(248,244,237,0.65);
    font-weight: 300;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.8;
}
.archive-header__count {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(248,244,237,0.35);
    letter-spacing: 0.08em;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-header {
    background: var(--green-dark);
    padding: 10rem var(--px) 5rem;
    position: relative;
    overflow: hidden;
}
.single-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1A2E14, #2D4A22, #1A2E14);
    opacity: 0.82;
    z-index: 0;
}
.single-header .single-header__inner {
    position: relative;
    z-index: 1;
    max-width: 56rem;
    margin: 0 auto;
}

.single-header__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(248,244,237,0.45);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.single-header__breadcrumb a { transition: color 0.2s; }
.single-header__breadcrumb a:hover { color: var(--gold); }
.single-header__breadcrumb svg {
    width: 13px; height: 13px;
    opacity: 0.5;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.single-header__cats {
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.single-header__title {
    color: var(--bg);
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 1.75rem;
    line-height: 1.15;
}

.single-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    font-size: 0.8rem;
    color: rgba(248,244,237,0.45);
    font-weight: 300;
}
.single-header__meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.single-header__meta svg {
    width: 13px; height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.single-featured-img {
    max-width: 56rem;
    margin: 3.5rem auto;
    padding: 0 var(--px);
}
.single-featured-img img { width: 100%; height: auto; display: block; border-radius: 0.875rem; }

.single-content {
    max-width: 56rem;
    margin: 0 auto 4rem;
    padding: 0 var(--px);
}

/* Post content typography */
.entry-content {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
}
.entry-content p { margin-bottom: 1.5rem; }
.entry-content h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; color: var(--green-dark); }
.entry-content h3 { font-size: 1.375rem; margin: 2rem 0 0.75rem; color: var(--green-dark); }
.entry-content ul, .entry-content ol { margin: 1.25rem 0 1.25rem 1.5rem; }
.entry-content li { margin-bottom: 0.4rem; list-style: disc; }
.entry-content ol li { list-style: decimal; }
.entry-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.75rem;
    margin: 2rem 0;
    background: rgba(248,244,237,0.7);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--green-dark);
}
.entry-content img { max-width: 100%; height: auto; margin: 2rem 0; }
.entry-content a {
    color: var(--green-mid);
    border-bottom: 1px solid rgba(45,74,34,0.3);
    transition: border-color 0.2s, color 0.2s;
}
.entry-content a:hover { color: var(--gold); border-color: var(--gold); }
.entry-content strong { font-weight: 700; color: var(--text-dark); }
.entry-content code {
    background: rgba(26,46,20,0.07);
    padding: 0.15em 0.45em;
    font-size: 0.875em;
    font-family: monospace;
}
.entry-content pre {
    background: var(--green-dark);
    color: var(--bg);
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Tags */
.single-tags {
    max-width: 56rem;
    margin: 0 auto 3rem;
    padding: 2rem var(--px) 0;
    border-top: 1px solid rgba(139,115,85,0.15);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.single-tags > span {
    font-size: 0.75rem;
    color: var(--brown);
    font-weight: 300;
    margin-right: 0.25rem;
}

/* Post navigation */
.post-navigation {
    max-width: 56rem;
    margin: 0 auto 6rem;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 600px) { .post-navigation { grid-template-columns: 1fr; } }

.nav-post {
    background: var(--bg-white);
    border: 1px solid rgba(139,115,85,0.15);
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.3s;
    display: block;
}
.nav-post:hover {
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-2px);
}
.nav-post__dir {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brown);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 300;
}
.nav-post__dir svg {
    width: 12px; height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}
.nav-post__title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--green-dark);
    line-height: 1.4;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    padding: 3.5rem 0 1rem;
}
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(139,115,85,0.3);
    font-size: 0.875rem;
    color: var(--text);
    transition: all 0.2s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--green-dark);
    color: var(--bg);
    border-color: var(--green-dark);
}
.pagination .page-numbers.dots { border-color: transparent; cursor: default; }

/* ============================================================
   STATIC PAGE
   ============================================================ */
.page-header {
    background: var(--green-dark);
    padding: 10rem var(--px) 5rem;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1A2E14, #2D4A22, #1A2E14);
    opacity: 0.8;
    z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header__title { color: var(--bg); font-size: clamp(2rem, 4vw, 3rem); }

.page-content {
    max-width: 56rem;
    margin: 0 auto;
    padding: 5rem var(--px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--green-dark);
    color: var(--bg);
    padding: 5rem 0 2.5rem;
    border-top: 4px solid var(--gold);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 600px)  { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand-logo {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bg);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}
.footer__brand-logo em { color: var(--gold); font-style: italic; }
.footer__brand-logo-img { height: 40px; width: auto; display: block; }

.footer__brand-desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(248,244,237,0.55);
    max-width: 22rem;
    line-height: 1.75;
}

.footer__col-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer__links a,
.footer__links li a {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(248,244,237,0.75);
    transition: color 0.2s;
    list-style: none;
    display: block;
}
.footer__links a:hover,
.footer__links li a:hover { color: var(--bg); }
.footer__links .nav-list,
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links li { list-style: none; }

.footer__bottom {
    border-top: 1px solid rgba(139,115,85,0.2);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(248,244,237,0.35);
}
.footer__bottom a { transition: color 0.2s; }
.footer__bottom a:hover { color: rgba(248,244,237,0.7); }
.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer__bottom-links a { color: rgba(248,244,237,0.35); }

/* Recent posts in footer */
.footer-recent { display: flex; flex-direction: column; gap: 1.25rem; }

.footer-recent__item {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
}

.footer-recent__thumb {
    display: block;
    width: 2.25rem !important;
    height: 2.25rem !important;
    min-width: 2.25rem;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 0.375rem;
}
.footer-recent__thumb img {
    width: 2.25rem !important;
    height: 2.25rem !important;
    max-width: 2.25rem !important;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.footer-recent__item:hover .footer-recent__thumb img { transform: scale(1.08); }

.footer-recent__title {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(248,244,237,0.75);
    line-height: 1.5;
    transition: color 0.2s;
    display: block;
    min-width: 0;
    flex: 1;
}
.footer-recent__title:hover { color: var(--bg); }

/* ============================================================
   RELATED POSTS
   ============================================================ */
.related-posts {
    background: var(--bg-cream);
    border-top: 1px solid rgba(139,115,85,0.12);
    margin-top: 4rem;
    padding: 4rem 0;
}
.related-posts__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 var(--px);
}
.related-posts__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--green-dark);
    margin-bottom: 2rem;
}
.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
@media (max-width: 900px) { .related-posts__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .related-posts__grid { grid-template-columns: 1fr; } }

/* ============================================================
   SHARE BUTTONS
   ============================================================ */
.share-section {
    max-width: 56rem;
    margin: 0 auto 5rem;
    padding: 2rem var(--px) 0;
    border-top: 1px solid rgba(139,115,85,0.15);
    display: flex;
    justify-content: flex-end;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Pill gomb: link másolása */
.share-btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.125rem;
    background: rgba(139,115,85,0.08);
    border: 1px solid rgba(139,115,85,0.2);
    border-radius: 0.625rem;
    font-size: 0.8125rem;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
    white-space: nowrap;
}
.share-btn-copy:hover {
    background: rgba(139,115,85,0.18);
    border-color: rgba(139,115,85,0.4);
}
.share-btn-copy svg {
    width: 15px; height: 15px;
    flex-shrink: 0;
}
.share-btn-copy.copied {
    color: var(--green-mid);
}

/* Négyzetes ikon gomb: social */
.share-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.625rem;
    height: 2.625rem;
    background: rgba(139,115,85,0.08);
    border: 1px solid rgba(139,115,85,0.2);
    border-radius: 0.625rem;
    color: var(--text-dark);
    transition: all 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}
.share-btn-icon:hover {
    background: var(--green-dark);
    color: var(--bg);
    border-color: var(--green-dark);
}
.share-btn-icon svg {
    width: 18px; height: 18px;
    display: block;
    flex-shrink: 0;
}

/* ============================================================
   EMPTY / NO POSTS
   ============================================================ */
.no-posts {
    text-align: center;
    padding: 6rem var(--px);
}
.no-posts p {
    font-size: 1.125rem;
    color: var(--text);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
    .hero__inner { padding: 4rem var(--px); }
    .section-py { padding-top: 5rem; padding-bottom: 5rem; }
    .footer__grid { gap: 2rem; }
    .text-post { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
    .text-post__number { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    :root { --px: 1.25rem; }
    .btn { padding: 0.875rem 1.5rem; }
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   MOOVE GDPR COOKIE PLUGIN
   ============================================================ */
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    background-color: #F8F4ED !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
    border-radius: 0.625rem !important;
    color: #1A2E14 !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover {
    background-color: #ffffff !important;
    border-color: rgba(26,46,20,0.3) !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton,
.gdpr_cookie_settings_shortcode_content .gdpr-shr-button.button-green {
    border-radius: 0.625rem !important;
    color: #1A2E14 !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton:hover,
.gdpr_cookie_settings_shortcode_content .gdpr-shr-button.button-green:hover {
    background-color: #ffffff !important;
    border-color: rgba(26,46,20,0.3) !important;
}
