/*
Theme Name: EKK Minimal v3
Theme URI: https://adwokatkarczewska.pl/
Author: Marek
Description: Minimalny motyw WordPress dla kancelarii
Version: 3.0
Text Domain: ekk-minimal-v3
*/
<style>
       :root {
    --ink: #4f504e;
    --ink-soft: #3b403e;
    --muted: #6a655d;
	--paper: #f4f2eb;
	--paper-2: #fbf8f2;

    --sage-800: #6f7f78;
    --sage-700: #7c8f86;
    --sage-600: #b9c6bf;

    --gold-1: #ecd28f;
    --gold-2: #c9a961;
    --gold-3: #b48836;

    --gold-gradient: linear-gradient(
        135deg,
        #f3d892 0%,
        #e4c374 35%,
        #d6b25c 60%,
        #f5e2a0 100%
    );

    --radius: 10px;
    --border: rgba(31, 35, 33, 0.12);
    --shadow-soft: 0 6px 22px rgba(0, 0, 0, 0.08);
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

    body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.9;
    color: var(--ink);
    overflow-x: hidden;
    background: #f4f2eb;
}


        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 14px;
            background: rgba(31, 35, 33, 0.96);
            color: rgba(251, 250, 247, 0.96);
            padding: 10px 14px;
            border-radius: 10px;
            z-index: 99999;
            transition: top 0.2s ease;
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 0.4px;
        }

        .skip-link:focus {
            top: 12px;
        }

.gold-gradient {
    background-image: linear-gradient(
        135deg,
        #f3d892 0%,
  #e4c374 35%,
  #d6b25c 60%,
  #f5e2a0 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* to robi robotę */
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

        @supports not (-webkit-background-clip: text) {
            .gold-gradient {
                color: var(--gold-2);
            }
        }

        .top-nav {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(31, 35, 33, 0.10);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: background 0.25s ease, border-color 0.25s ease;
        }

        .top-nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            border-bottom-color: rgba(31, 35, 33, 0.14);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 78px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .logo-placeholder {
            height: 44px;
            min-width: 44px;
            padding: 0 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: var(--gold-gradient);
            border: 1px solid rgba(251, 250, 247, 0.28);
        }

        .logo-mark {
            font-family: "Georgia", serif;
            font-size: 15px;
            letter-spacing: 1.5px;
            color: rgba(251, 250, 247, 0.92);
            font-weight: 500;
        }

        .logo-text {
            display: none;
        }

        .logo-link {
            text-decoration: none;
            border-bottom: none;
            display: inline-flex;
            align-items: center;
        }

        .logo-link:hover {
            text-decoration: none;
            border-bottom: none;
        }

        .main-menu a[aria-current="page"] {
            border-bottom-color: rgba(201, 169, 97, 0.85);
        }

        .main-menu {
            display: flex;
            list-style: none;
            gap: 28px;
            align-items: center;
        }

        .main-menu a {
            text-decoration: none;
            color: rgba(31, 35, 33, 0.86);
            font-weight: 500;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            transition: color 0.2s;
            padding: 6px 0;
            border-bottom: 1px solid transparent;
        }

        .main-menu a:hover {
            color: var(--sage-800);
            border-bottom-color: rgba(201, 169, 97, 0.55);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: transparent;
            border: 0;
            padding: 6px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--sage-700);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

    .hero {
    margin-top: 78px;
    min-height: 88vh;
    background: linear-gradient(180deg, #8a9891 0%, #798881 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 84px 20px;
}

        .hero-content {
            max-width: 860px;
        }

        .hero .hero-kicker {
            font-size: 0.92rem;
            font-weight: 500;
            margin-bottom: 14px;
            letter-spacing: 2.6px;
            text-transform: uppercase;
            color: rgba(251, 250, 247, 0.92);
        }

.hero h1 {
    font-size: 3.15rem;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: -0.6px;
    font-family: "Georgia", serif;
    line-height: 1.15;
    position: relative;
    display: inline-block;
}

        .hero h1::after {
            content: "";
            display: block;
            width: 100%;
            height: 1px;
            margin: 18px auto 0;
            background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.65) 20%, rgba(201, 169, 97, 0.65) 80%, transparent 100%);
            opacity: 0.9;
        }

        .hero-tagline {
            font-size: 1.2rem;
            margin-bottom: 36px;
            font-weight: 300;
            font-style: italic;
            color: rgba(251, 250, 247, 0.90);
        }

        .hero-contact {
            margin-top: 28px;
            font-size: 1rem;
            line-height: 2;
            color: rgba(251, 250, 247, 0.88);
        }

        .hero-contact p {
            margin: 6px 0;
        }

        .hero a {
            color: rgba(251, 250, 247, 0.92);
        }

       .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    min-height: 50px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 97, 0.95);
    background: transparent;
    color: rgba(251, 250, 247, 0.96);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn::before {
    content: none;
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(201, 169, 97, 0.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 169, 97, 1);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
}
.hero .btn {
    margin-top: 36px;
}
        .btn-secondary {
            color: var(--ink);
        }

        .btn-secondary:hover {
            background: rgba(201, 169, 97, 0.08);
        }

        section {
            padding: 86px 40px;
            background: var(--paper);
        }

        h2.section-title {
            font-size: 2.35rem;
            text-align: center;
            margin-bottom: 56px;
            color: var(--ink);
            font-weight: 400;
            letter-spacing: -0.6px;
            font-family: "Georgia", serif;
        }

        h3 {
            font-family: "Georgia", serif;
            letter-spacing: -0.2px;
        }

        .kancelaria-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

    .kancelaria-image {
    background: url('https://srv112312.seohost.com.pl/wp-content/uploads/2026/04/IMG_0147-scaled-1.jpeg') center/cover no-repeat;
    border-radius: 12px;
    min-height: 420px;
}

        .kancelaria-text h3 {
            font-size: 2rem;
            margin-bottom: 26px;
            color: var(--ink);
            font-weight: 400;
        }

        .kancelaria-text p {
            margin-bottom: 18px;
            color: rgba(31, 35, 33, 0.78);
            font-size: 1.02rem;
        }

        .cta-buttons {
            margin-top: 30px;
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .kancelaria-text .btn {
            color: var(--ink);
        }

        .kancelaria-text .btn:hover {
            background: rgba(201, 169, 97, 0.12);
        }

        .about-content {
            display: grid;
            grid-template-columns: 420px 1fr;
            gap: 70px;
            align-items: start;
        }

       .about-image {
    background: url('https://srv112312.seohost.com.pl/wp-content/uploads/2026/04/cup-of-coffee-g708366763_1280.jpg') center/cover no-repeat;
    border-radius: 12px;
    min-height: 420px;
}

        .about-text {
            color: rgba(31, 35, 33, 0.78);
            font-size: 1.02rem;
        }

        .about-text p {
            margin-bottom: 18px;
        }

        .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 34px;
}

.service-card {
    background: #838b86;
    padding: 34px 30px 32px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease;
    min-height: 238px;
}

.service-card:hover {
    transform: translateY(-2px);
    background: #a4b5ad ;
}

.service-card h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
    color: rgba(251, 250, 247, 0.96) ;
    font-weight: 500;
    font-family: "Georgia", serif;
}

.service-card p {
    color: rgba(251, 250, 247, 0.92) ;
    line-height: 1.85;
    font-size: 1.02rem;
}

/* ICONS */

.service-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.service-icon svg {
    width: 54px;
    height: 54px;
    display: block;
}

.service-icon .stroke {
    fill: none;
    stroke: #e0c575;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            align-items: start;
        }

        .contact-info,
        .contact-form {
            background: rgba(251, 250, 247, 0.80);
            padding: 36px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: none;
        }

        .contact-info h3,
        .contact-form h3 {
            font-size: 1.65rem;
            margin-bottom: 22px;
            color: var(--ink);
            font-weight: 500;
        }

        .contact-info p {
            margin-bottom: 16px;
            color: rgba(31, 35, 33, 0.78);
            font-size: 1.02rem;
            line-height: 1.85;
        }

        .hs-embed-wrap {
            border: 1px solid rgba(31, 35, 33, 0.12);
            border-radius: 12px;
            background: rgba(251, 250, 247, 0.88);
            padding: 18px;
        }

        .hs-placeholder {
            border: 1px dashed rgba(31, 35, 33, 0.22);
            border-radius: 12px;
            padding: 26px;
            text-align: left;
            background: rgba(251, 250, 247, 0.80);
        }

        .hs-placeholder-title {
            font-family: "Georgia", serif;
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

        .hs-placeholder-text {
            color: rgba(31, 35, 33, 0.72);
            font-size: 0.98rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .hs-placeholder-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .hs-placeholder-actions .btn-secondary {
            font-size: 12px;
            padding: 12px 22px;
        }

        .hs-form-frame {
            min-height: 340px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 26px;
            margin-top: 34px;
        }

        .blog-card {
            background: rgba(251, 250, 247, 0.80);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: none;
            transition: transform 0.2s ease;
        }

        .blog-card:hover {
            transform: translateY(-2px);
        }

        .blog-image {
            width: 100%;
            height: 210px;
            background-size: cover;
            background-position: center;
            filter: saturate(0.95);
        }

        .blog-content {
            padding: 26px;
        }

        .blog-date {
            color: rgba(31, 35, 33, 0.55);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .blog-content h3 {
            font-size: 1.35rem;
            margin-bottom: 12px;
            color: var(--ink);
            font-weight: 500;
            line-height: 1.35;
        }

        .blog-content p {
            color: rgba(31, 35, 33, 0.76);
            line-height: 1.8;
            margin-bottom: 14px;
        }

        .blog-link {
            background-image: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: underline;
            text-underline-offset: 2px;
            font-weight: 600;
        }

        footer {
            background: rgba(31, 35, 33, 0.96);
            color: rgba(251, 250, 247, 0.90);
            text-align: center;
            padding: 54px 20px;
        }

        footer a {
            color: rgba(231, 207, 139, 0.92);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-top: 14px;
        }

        .footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(231, 207, 139, 0.22);
            text-decoration: none;
            transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
        }

        .footer-socials a svg {
            width: 18px;
            height: 18px;
        }

        .footer-socials a svg path {
            fill: rgba(231, 207, 139, 0.92);
        }

        .footer-socials a:hover {
            background: rgba(231, 207, 139, 0.14);
            border-color: rgba(231, 207, 139, 0.34);
            transform: translateY(-1px);
        }

        footer p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(31, 35, 33, 0.98);
            color: rgba(251, 250, 247, 0.92);
            padding: 22px 18px;
            border-top: 1px solid rgba(251, 250, 247, 0.12);
            z-index: 9999;
            display: none;
        }

        .cookie-banner.show {
            display: block;
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .cookie-text {
            flex: 1;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .cookie-text a {
            color: var(--gold-2);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 11px 22px;
            border-radius: 999px;
            cursor: pointer;
            font-weight: 700;
            font-size: 0.85rem;
            transition: transform 0.18s, background 0.18s, border-color 0.18s;
            font-family: inherit;
        }

        .cookie-btn-accept {
            background: rgba(201, 169, 97, 0.18);
            color: rgba(251, 250, 247, 0.96);
            border: 1px solid rgba(201, 169, 97, 0.55);
        }

        .cookie-btn-accept:hover {
            transform: translateY(-1px);
            background: rgba(201, 169, 97, 0.26);
        }

        .cookie-btn-decline {
            background: transparent;
            color: rgba(251, 250, 247, 0.92);
            border: 1px solid rgba(251, 250, 247, 0.18);
        }

        .cookie-btn-decline:hover {
            background: rgba(251, 250, 247, 0.06);
            transform: translateY(-1px);
        }

        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.6rem;
            }

            .kancelaria-content,
            .about-content {
                gap: 46px;
            }

            .about-content {
                grid-template-columns: 360px 1fr;
            }
        }

        @media (max-width: 968px) {
            .menu-toggle {
                display: flex;
            }

            .nav-container {
                padding: 0 18px;
            }

            .main-menu {
                position: fixed;
                top: 78px;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                border-bottom: 1px solid rgba(31, 35, 33, 0.10);
                flex-direction: column;
                gap: 0;
                padding: 14px 18px 18px;
                transform: translateY(-8px);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.18s ease, transform 0.18s ease;
            }

            .main-menu.active {
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
            }

            .main-menu li {
                width: 100%;
            }

            .main-menu a {
                display: block;
                padding: 14px 0;
                width: 100%;
                border-bottom: 1px solid rgba(31, 35, 33, 0.08);
            }

            .main-menu li:last-child a {
                border-bottom: none;
            }

            .hero h1 {
                font-size: 2.05rem;
            }
            .hero h1 {
                font-size: 2.05rem;
            }

            .hero-tagline {
                font-size: 1.06rem;
            }

            .kancelaria-content,
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .about-image,
            .kancelaria-image {
                height: 380px;
            }

            section {
                padding: 70px 26px;
            }

            h2.section-title {
                font-size: 2rem;
            }

            .services-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 1.7rem;
            }

            .hero-tagline {
                font-size: 1rem;
                margin-bottom: 28px;
            }

            section {
                padding: 60px 18px;
            }

            h2.section-title {
                font-size: 1.75rem;
                margin-bottom: 42px;
            }

            .contact-info,
            .contact-form,
            .service-card {
                padding: 26px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .cta-buttons .btn {
                width: 100%;
                text-align: center;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                width: 100%;
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
            }
        }
/* === BLOG PREVIEW === */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 34px;
}

.blog-card {
    background: #f8f5f1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(79, 80, 78, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.blog-image-link {
    display: block;
    text-decoration: none;
}

.blog-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-image-placeholder {
    background: linear-gradient(135deg, #e7cf8b 0%, #c9a961 55%, #e8d8a3 100%);
}

.blog-content {
    padding: 28px 26px 30px;
}

.blog-date {
    color: #7b7b76;
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.blog-content h3 {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 14px;
    font-family: "Georgia", serif;
    font-weight: 500;
}

.blog-content h3 a {
    color: #2c2c2c;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #2c2c2c;
    text-decoration: none;
}

.blog-content p {
    color: #4f504e;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 18px;
}

.blog-link {
    color: #c3a14f;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.blog-link:hover {
    color: #ad8a38;
}
.blog-more {
    text-align: center;
    margin-top: 60px;
}

/* === MOBILE MENU FIX === */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #6f7f78;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex !important;
    }

    .nav-container {
        padding: 0 18px;
    }

    .main-menu {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(31, 35, 33, 0.10);
        flex-direction: column;
        gap: 0;
        padding: 14px 18px 18px;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
        z-index: 999;
    }

    .main-menu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-menu li {
        width: 100%;
    }

    .main-menu a {
        display: block;
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(31, 35, 33, 0.08);
    }

    .main-menu li:last-child a {
        border-bottom: none;
    }
}
/* === LOGO FIX === */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    display: block;
    height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
}
/* === SINGLE POST === */

.single-post-section {
    padding: 140px 20px 100px;
    background: #f4f2eb;
}

.single-post-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.single-post-article {
    background: #faf7f2;
    border: 1px solid rgba(79, 80, 78, 0.10);
    border-radius: 14px;
    padding: 42px 42px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.single-post-top {
    margin-bottom: 30px;
}

.single-post-back {
    display: inline-block;
    margin-bottom: 18px;
    color: #b89447;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.single-post-back:hover {
    color: #9f7d33;
}

.single-post-date {
    color: #7a7974;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.single-post-title {
    font-family: "Georgia", serif;
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0;
}

.single-post-featured-image {
    margin: 0 0 34px;
    border-radius: 12px;
    overflow: hidden;
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content {
    color: #4f504e;
    font-size: 1.08rem;
    line-height: 1.9;
}

.single-post-content p {
    margin-bottom: 1.35em;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    font-family: "Georgia", serif;
    color: #2c2c2c;
    line-height: 1.3;
    margin: 1.8em 0 0.7em;
}

.single-post-content h2 {
    font-size: 2rem;
}

.single-post-content h3 {
    font-size: 1.55rem;
}

.single-post-content h4 {
    font-size: 1.25rem;
}

.single-post-content ul,
.single-post-content ol {
    margin: 0 0 1.4em 1.4em;
}

.single-post-content li {
    margin-bottom: 0.55em;
}

.single-post-content a {
    color: #b89447;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.single-post-content strong {
    color: #2c2c2c;
}

.single-post-content blockquote {
    margin: 2em 0;
    padding: 1.1em 1.3em;
    border-left: 3px solid #c9a961;
    background: rgba(201, 169, 97, 0.08);
    border-radius: 8px;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .single-post-section {
        padding: 120px 16px 70px;
    }

    .single-post-article {
        padding: 28px 22px 34px;
    }

    .single-post-title {
        font-size: 2.1rem;
    }

    .single-post-content {
        font-size: 1rem;
        line-height: 1.8;
    }
}
/* === BLOG CARD TUNING === */

.blog-content h3 {
    font-size: 1.55rem;
    line-height: 1.28;
    margin-bottom: 16px;
    font-family: "Georgia", serif;
    font-weight: 600;
}

.blog-content p {
    color: #4f504e;
    line-height: 1.8;
    font-size: 1.02rem;
    margin-bottom: 18px;
}

.blog-date {
    color: #7b7b76;
    font-size: 0.92rem;
    margin-bottom: 16px;
}
.blog-image {
    height: 120px;
}

.blog-image-placeholder {
    background: linear-gradient(135deg, #e7cf8b 0%, #c9a961 55%, #e8d8a3 100%);
}
@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .blog-card {
        max-width: 100%;
    }

    .blog-more {
        margin-top: 34px;
    }
}
.blog-archive-section {
    padding: 140px 20px 100px;
    background: #f4f2eb;
}

.blog-pagination {
    margin-top: 40px;
}
@media (max-width: 968px) {
    .main-menu {
        padding: 18px 0 20px;
    }

    .main-menu a {
        display: block;
        width: 100%;
        padding: 18px 24px;
        border-bottom: 1px solid rgba(31, 35, 33, 0.08);
        font-size: 15px;
        letter-spacing: 0.8px;
    }

    .logo {
        padding-left: 18px;
    }

    .menu-toggle {
        margin-right: 18px;
    }
}
/* === PAGE === */

.page-section {
    padding: 140px 20px 100px;
    background: #f4f2eb;
}

.page-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.page-article {
    background: #faf7f2;
    border: 1px solid rgba(79, 80, 78, 0.10);
    border-radius: 14px;
    padding: 42px 42px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.page-title {
    font-family: "Georgia", serif;
    font-size: 2.6rem;
    line-height: 1.15;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 28px;
}

.page-content {
    color: #4f504e;
    font-size: 1.06rem;
    line-height: 1.9;
}

.page-content p {
    margin-bottom: 1.2em;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    font-family: "Georgia", serif;
    color: #2c2c2c;
    line-height: 1.3;
    margin: 1.7em 0 0.7em;
}

.page-content h2 {
    font-size: 1.9rem;
}

.page-content h3 {
    font-size: 1.5rem;
}

.page-content ol,
.page-content ul {
    margin: 0 0 1.4em 1.4em;
}

.page-content li {
    margin-bottom: 0.55em;
}

.page-content a {
    color: #b89447;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-content strong {
    color: #2c2c2c;
}

@media (max-width: 768px) {
    .page-section {
        padding: 120px 16px 70px;
    }

    .page-article {
        padding: 28px 22px 34px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-content {
        font-size: 1rem;
        line-height: 1.8;
    }
}
    </style>