:root {
    --primary-bg: #FCFBF7;
    --secondary-bg: #F5F5F0;
    --accent-color: #8BA888;
    --soft-accent: #FADADD;
    --warm-neutral: #F3E5AB;
    --text-primary: #2D2D2D;
    --text-secondary: #5E5E5E;
    --text-muted: #8C8C8C !important;
    --border-color: #E8E8E1;
    --status-success: #A3B18A;
    --radius-lg: 12px;
    --radius-md: 8px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-muted {
    color: var(--text-muted);
}

.card-custom {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.btn-primary-custom {
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 24px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.btn-primary-custom:hover {
    opacity: 0.9;
    color: #ffffff;
}

* {
    box-sizing: border-box;
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 60px;
    }
}

/* ===== header ===== */
.zd-header-nav {
    background-color: #FCFBF7 !important;
    border-bottom: 1px solid #E8E8E1;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    z-index: 1050;
}

.zd-header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.zd-header-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2D2D2D;
    letter-spacing: -0.02em;
}

.zd-header-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    color: #5E5E5E !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.zd-header-nav .nav-link:hover {
    color: #8BA888 !important;
}

.zd-toggler-icon {
    font-size: 1.5rem;
    color: #2D2D2D;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .zd-header-nav .navbar-collapse {
        background-color: #FCFBF7;
        padding: 1.5rem 0;
        border-top: 1px solid #E8E8E1;
        margin-top: 0.75rem;
    }

    .zd-header-nav .nav-link {
        font-size: 0.875rem;
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #F5F5F0;
    }

    .zd-header-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* ===== hero ===== */
.zdrowa-zmiana-hero {
    position: relative;
    background-color: #000000;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.zdrowa-zmiana-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.65;
}

.zdrowa-zmiana-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.zdrowa-zmiana-hero .hero-glow {
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.12) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 3;
    pointer-events: none;
}

.zdrowa-zmiana-hero .hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 168, 136, 0.15);
    border: 1px solid #8BA888;
    color: #8BA888;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
}

.zdrowa-zmiana-hero .hero-title {
    color: #FFFFFF !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.zdrowa-zmiana-hero .hero-text {
    color: #E0E0E0;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 540px;
}

.zdrowa-zmiana-hero .hero-btn {
    background-color: #8BA888;
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.zdrowa-zmiana-hero .hero-btn:hover {
    background-color: #7a9677;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(139, 168, 136, 0.25);
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .zdrowa-zmiana-hero {
        min-height: 80vh;
    }

    .zdrowa-zmiana-hero .hero-title {
        font-size: 1.125rem !important;
    }

    .zdrowa-zmiana-hero .hero-text {
        font-size: 0.9375rem;
        margin-bottom: 30px;
    }

    .zdrowa-zmiana-hero .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

@media (min-width: 768px) {
    .zdrowa-zmiana-hero .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .zdrowa-zmiana-hero .hero-title {
        font-size: 3.75rem;
    }
}

/* ===== categories-overview ===== */
.categories-overview-section {
    background-color: #FCFBF7;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.categories-overview-section__main-title {
    color: #2D2D2D;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
}

.categories-overview-section__subtitle {
    color: #5E5E5E;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

.categories-overview-section__card {
    background: #FFFFFF;
    border: 1px solid #E8E8E1;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: translateY(20px);
}

.categories-overview-section__card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.categories-overview-section__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.categories-overview-section__image-box {
    width: 100%;
    height: 220px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    overflow: hidden;
    position: relative;
}

.categories-overview-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.categories-overview-section__card:hover .categories-overview-section__img {
    transform: scale(1.05);
}

.categories-overview-section__content {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.categories-overview-section__icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #F5F5F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #8BA888;
    font-size: 1.5rem;
}

.categories-overview-section__card-title {
    color: #2D2D2D;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.categories-overview-section__card-text {
    color: #5E5E5E;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.categories-overview-section__btn {
    background-color: #8BA888;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    border: none;
}

.categories-overview-section__btn:hover {
    background-color: #7a9477;
    color: #FFFFFF;
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .categories-overview-section__main-title {
        font-size: 1.75rem;
    }

    .categories-overview-section__subtitle {
        font-size: 1rem;
    }

    .categories-overview-section__image-box {
        height: 180px;
    }
}

/* ===== latest-articles ===== */
.latest-articles-section {
    background-color: #FCFBF7;
    padding: 80px 0;
}

.latest-articles-section .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #2D2D2D;
    font-size: 2.25rem;
    line-height: 1.2;
}

.latest-articles-section .section-subtitle {
    font-family: 'Inter', sans-serif;
    color: #5E5E5E;
    font-size: 1.125rem;
    line-height: 1.6;
}

.latest-articles-section .article-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E8E8E1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-articles-section .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.latest-articles-section .article-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.latest-articles-section .article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-articles-section .article-card:hover .article-img {
    transform: scale(1.05);
}

.latest-articles-section .article-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #8BA888;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.latest-articles-section .article-meta {
    font-size: 0.8125rem;
    color: #8C8C8C;
    font-family: 'Inter', sans-serif;
}

.latest-articles-section .article-meta i {
    color: #8BA888;
    vertical-align: middle;
}

.latest-articles-section .article-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #2D2D2D;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.latest-articles-section .article-btn {
    display: inline-block;
    background-color: #8BA888;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: none;
}

.latest-articles-section .article-btn:hover {
    background-color: #7a9477;
    color: #FFFFFF;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .latest-articles-section {
        padding: 60px 0;
    }

    .latest-articles-section .section-title {
        font-size: 1.75rem;
    }

    .latest-articles-section .article-img-wrapper {
        height: 200px;
    }
}

/* ===== about-snippet ===== */
.about-snippet {
    background-color: #FCFBF7;
    padding: 80px 0;
    overflow: hidden;
}

.about-snippet__content {
    padding: 20px 0;
}

.about-snippet__badge {
    background-color: #FADADD;
    color: #2D2D2D;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-snippet__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-snippet__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #5E5E5E;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-snippet__list {
    margin-bottom: 2.5rem;
}

.about-snippet__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #2D2D2D;
    font-weight: 500;
    font-size: 1rem;
}

.about-snippet__list i {
    color: #8BA888;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-snippet__btn {
    background-color: #8BA888;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(139, 168, 136, 0.2);
}

.about-snippet__btn:hover {
    background-color: #7A9777;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 168, 136, 0.3);
}

.about-snippet__image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #E8E8E1;
}

.about-snippet__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-snippet__image-container:hover .about-snippet__img {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .about-snippet {
        padding: 60px 0;
    }

    .about-snippet__title {
        font-size: 1.875rem;
    }

    .about-snippet__img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .about-snippet {
        padding: 40px 0;
    }

    .about-snippet__title {
        font-size: 1.5rem;
    }

    .about-snippet__text {
        font-size: 1rem;
    }

    .about-snippet__img {
        height: 320px;
    }

    .about-snippet__btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== footer ===== */
.zdrowa-zmiana-footer {
    background-color: #F5F5F0;
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
}

.zdrowa-zmiana-footer .footer-logo {
    max-width: 50px;
    height: auto;
    display: block;
}

.zdrowa-zmiana-footer .footer-brand-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5E5E5E;
    max-width: 300px;
}

.zdrowa-zmiana-footer .footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.zdrowa-zmiana-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.zdrowa-zmiana-footer .footer-links a {
    color: #5E5E5E;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.zdrowa-zmiana-footer .footer-links a:hover {
    color: #8BA888;
    transform: translateX(4px);
}

.zdrowa-zmiana-footer .border-top {
    border-color: #E8E8E1 !important;
}

.zdrowa-zmiana-footer .footer-copyright {
    font-size: 0.75rem;
    color: #8C8C8C;
}

@media (max-width: 767px) {
    .zdrowa-zmiana-footer .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .zdrowa-zmiana-footer .footer-brand-section {
        text-align: center;
    }

    .zdrowa-zmiana-footer .footer-logo {
        margin: 0 auto 1rem;
    }

    .zdrowa-zmiana-footer .footer-brand-description {
        margin: 0 auto;
    }
}

.zd-category-section {
    background-color: #FCFBF7;
}

.zd-post-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E1;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.zd-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.zd-post-image-container {
    width: 100%;
    max-width: 300px;
    min-height: 200px;
    position: relative;
}

.zd-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.zd-post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.zd-post-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #8C8C8C;
    display: flex;
    gap: 1rem;
}

.zd-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.zd-post-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2D2D2D;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.zd-post-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #5E5E5E;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.zd-post-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #8BA888;
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.zd-sidebar-block {
    background: #FFFFFF;
    border: 1px solid #E8E8E1;
    border-radius: 12px;
    padding: 1.5rem;
}

.zd-sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #2D2D2D;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #F5F5F0;
}

.zd-sidebar-list li {
    margin-bottom: 0.75rem;
}

.zd-sidebar-list a {
    color: #5E5E5E;
    text-decoration: none;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.zd-sidebar-list a:hover {
    color: #8BA888;
}

.zd-sidebar-promo {
    background: #F5F5F0;
    border-color: #8BA888;
}

.zd-sidebar-text {
    font-size: 0.875rem;
    color: #5E5E5E;
    margin-bottom: 1.25rem;
}

.zd-sidebar-btn {
    display: block;
    width: 100%;
    background: #8BA888;
    color: #FFFFFF;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.3s ease;
}

.zd-sidebar-btn:hover {
    background: #7a9677;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .zd-post-image-container {
        max-width: 100%;
        height: 200px;
    }

    .zd-post-title {
        font-size: 1.125rem;
    }
}


/* ===== PAGE: privacy ===== */
#policy-content-container {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  background-color: #FCFBF7;
  color: #2D2D2D;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

#policy-content-container .privacy-body-wrapper {
  padding: 40px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E8E8E1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

#policy-content-container h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2D2D2D;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid #8BA888;
  padding-left: 1rem;
}

#policy-content-container p {
  margin-bottom: 1.25rem;
  color: #5E5E5E;
  font-size: 1rem;
}

#policy-content-container ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: none;
}

#policy-content-container ul li {
  position: relative;
  margin-bottom: 0.75rem;
  color: #5E5E5E;
}

#policy-content-container ul li::before {
  content: "•";
  color: #8BA888;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

#policy-content-container strong {
  color: #2D2D2D;
  font-weight: 600;
}

@media (max-width: 768px) {
  #policy-content-container {
    padding: 30px 15px;
  }
  
  #policy-content-container .privacy-body-wrapper {
    padding: 20px;
  }

  #policy-content-container h2 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }

  #policy-content-container p, #policy-content-container li {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

/* ===== PAGE: terms ===== */
#policy-content-container {
  padding: 60px 20px;
  background-color: #FCFBF7;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #2D2D2D;
}

#policy-content-container .terms-inner-wrapper {
  max-width: 850px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #E8E8E1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

#policy-content-container .terms-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E8E1;
}

#policy-content-container .terms-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F5F5F0;
  color: #5E5E5E;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

#policy-content-container h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 20px;
  margin-top: 40px;
}

#policy-content-container p {
  line-height: 1.7;
  color: #5E5E5E;
  margin-bottom: 1.5rem;
}

#policy-content-container .terms-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

#policy-content-container .terms-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #5E5E5E;
}

#policy-content-container .terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #8BA888;
  border-radius: 50%;
}

#policy-content-container .terms-alert {
  display: flex;
  gap: 15px;
  background-color: #F3E5AB;
  padding: 20px;
  border-radius: 8px;
  align-items: center;
  margin: 25px 0;
}

#policy-content-container .terms-alert i {
  font-size: 1.5rem;
  color: #2D2D2D;
}

#policy-content-container .terms-alert p {
  margin-bottom: 0;
  font-weight: 500;
  color: #2D2D2D;
}

#policy-content-container .terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

#policy-content-container .terms-card {
  padding: 25px;
  background: #FCFBF7;
  border: 1px solid #E8E8E1;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

#policy-content-container .terms-card:hover {
  transform: translateY(-2px);
}

#policy-content-container .terms-card i {
  font-size: 2rem;
  color: #8BA888;
  margin-bottom: 15px;
  display: block;
}

#policy-content-container .terms-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

#policy-content-container .terms-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #policy-content-container {
    padding: 30px 15px;
  }
  
  #policy-content-container .terms-inner-wrapper {
    padding: 25px;
  }
  
  #policy-content-container h2 {
    font-size: 1.35rem;
  }
  
  #policy-content-container .terms-grid {
    grid-template-columns: 1fr;
  }

  #policy-content-container h3 {
    font-size: 1.1rem;
  }
}

/* ===== PAGE: disclaimer ===== */
#policy-content-container {
  font-family: 'Inter', sans-serif;
  background-color: #FCFBF7;
  color: #2D2D2D;
}

#policy-content-container .disclaimer-article {
  border-color: #E8E8E1 !important;
  line-height: 1.6;
}

#policy-content-container .badge {
  background-color: #FADADD;
  color: #2D2D2D;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

#policy-content-container h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #2D2D2D;
  font-size: 2.25rem;
}

#policy-content-container h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: #2D2D2D;
  border-bottom: 2px solid #F3E5AB;
  display: inline-block;
  padding-bottom: 0.25rem;
}

#policy-content-container .text-accent {
  color: #8BA888;
}

#policy-content-container .lead {
  font-weight: 500;
  color: #5E5E5E;
}

#policy-content-container p {
  color: #5E5E5E;
  margin-bottom: 1.25rem;
}

#policy-content-container .last-updated {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#policy-content-container section {
  position: relative;
}

#policy-content-container .bg-light {
  background-color: #F5F5F0 !important;
  border: 1px solid #E8E8E1;
}

@media (max-width: 768px) {
  #policy-content-container h1 {
    font-size: 1.75rem;
  }
  #policy-content-container h2 {
    font-size: 1.25rem;
  }
  #policy-content-container .disclaimer-article {
    padding: 1.5rem !important;
  }
}

/* ===== PAGE: cookies ===== */
.cookies-policy-block { color: #2D2D2D; font-family: 'Inter', sans-serif; line-height: 1.6; padding: 40px 0; } .cookies-policy-block h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.25rem; font-weight: 700; color: #2D2D2D; margin-bottom: 1.5rem; margin-top: 3rem; } .cookies-policy-block h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 600; color: #8BA888; margin-bottom: 1rem; } .cookies-policy-block .policy-section { margin-bottom: 3rem; } .cookies-policy-block p { font-size: 1rem; color: #5E5E5E; margin-bottom: 1rem; } .cookies-policy-block .cookie-card { background: #FFFFFF; padding: 1.5rem; border-radius: 12px; border: 1px solid #E8E8E1; height: 100%; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: transform 0.3s ease; } .cookies-policy-block .cookie-card:hover { transform: translateY(-2px); } .cookies-policy-block .policy-list { list-style: none; padding-left: 0; } .cookies-policy-block .policy-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #5E5E5E; } .cookies-policy-block .policy-list li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 8px; height: 8px; background-color: #8BA888; border-radius: 50%; } @media (max-width: 767px) { .cookies-policy-block h2 { font-size: 1.5rem; } .cookies-policy-block h3 { font-size: 1.1rem; } .cookies-policy-block { padding: 20px 0; } }

/* ===== PAGE: about ===== */
.about-content-section {
  background-color: #FCFBF7;
}
.about-content-section__heading {
  color: #2D2D2D;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.about-content-section__paragraph {
  color: #5E5E5E;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}
.about-content-section__image-container img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.about-content-section__image-container img:hover {
  transform: translateY(-5px);
}

.core-values-section {
  background-color: #F5F5F0;
}
.core-values-section__heading {
  color: #2D2D2D;
  font-weight: 700;
}
.core-values-section__card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E1 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.core-values-section__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.core-values-section__icon-box {
  width: 60px;
  height: 60px;
  background-color: #8BA888;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 1.75rem;
}
.core-values-section__card-title {
  color: #2D2D2D;
  font-size: 1.25rem;
  font-weight: 600;
}
.core-values-section__card-text {
  color: #5E5E5E;
  font-size: 0.95rem;
  line-height: 1.5;
}

.main-comment-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E1;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

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

.comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F5F5F0;
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #2D2D2D;
    font-size: 1.1rem;
}

.comment-date {
    font-size: 0.875rem;
    color: #8C8C8C;
    font-family: 'Inter', sans-serif;
}

.comment-text {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #5E5E5E;
    margin-bottom: 16px;
}

.btn-comment-action {
    background: none;
    border: none;
    padding: 0;
    color: #8C8C8C;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.btn-comment-action:hover {
    color: #8BA888;
}

.reply-comment-card {
    background: #F5F5F0;
    border-radius: 10px;
    padding: 16px;
    border-left: 3px solid #8BA888;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reply-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #2D2D2D;
    font-size: 0.95rem;
}

.reply-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #5E5E5E;
    margin-bottom: 8px;
}


/* ===== PAGE TEMPLATE: odchudzanie ===== */
.zd-detail-wrapper {
    background-color: #FCFBF7;
}

.zd-detail-hero {
    padding: 120px 0 80px;
    background-position: center;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.zd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.zd-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.zd-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto;
}

.zd-hero-meta {
    font-size: 0.875rem;
    font-weight: 500;
}

.zd-article-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2D2D2D;
}

.zd-article-body h2,
.zd-article-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #2D2D2D;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.zd-article-body p {
    margin-bottom: 1.5rem;
}

.zd-article-body ul,
.zd-article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.zd-article-body li {
    margin-bottom: 0.5rem;
}

.zd-sidebar-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E8E8E1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.zd-sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D2D2D;
}

.zd-sidebar-list a {
    text-decoration: none;
    color: #5E5E5E;
    font-size: 0.9375rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.zd-sidebar-list a:hover {
    color: #8BA888;
    transform: translateX(5px);
}

.zd-sidebar-cta {
    background-color: #8BA888;
    color: #FFFFFF;
}

.zd-sidebar-cta i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.zd-sidebar-cta h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.zd-comment-form-container {
    background-color: #F5F5F0;
    border: 1px solid #E8E8E1;
}

.zd-comment-form-container .form-control {
    border-radius: 8px;
    border: 1px solid #E8E8E1;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
}

.zd-comment-form-container .form-control:focus {
    border-color: #8BA888;
    box-shadow: 0 0 0 4px rgba(139, 168, 136, 0.1);
}

.zd-primary-btn {
    background-color: #8BA888;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zd-primary-btn:hover {
    background-color: #7a9677;
    transform: translateY(-2px);
}

.zd-secondary-btn {
    background-color: #FFFFFF;
    color: #8BA888;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-comment-card {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E8E8E1;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2D2D2D;
}

.comment-date {
    font-size: 0.75rem;
    color: #8C8C8C;
}

.btn-comment-action {
    background: none;
    border: none;
    color: #5E5E5E;
    font-size: 0.875rem;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.btn-comment-action:hover {
    color: #8BA888;
}

.btn-comment-action.active i {
    color: #E74C3C;
}

.reply-comment-card {
    background-color: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #E8E8E1;
}

@media (max-width: 767px) {
    .zd-hero-title {
        font-size: 1.75rem !important;
    }

    .zd-hero-subtitle {
        font-size: 1rem;
    }

    .zd-detail-hero {
        padding: 80px 15px 40px;
    }

    .zd-main-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .reply-comment-card {
        margin-left: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: zdrowe-jedzenie ===== */
.zd-detail-wrapper {
    background-color: #FCFBF7;
}

.zd-detail-hero {
    padding: 120px 0 80px;
    background-position: center;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.zd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.zd-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.zd-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto;
}

.zd-hero-meta {
    font-size: 0.875rem;
    font-weight: 500;
}

.zd-article-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2D2D2D;
}

.zd-article-body h2,
.zd-article-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #2D2D2D;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.zd-article-body p {
    margin-bottom: 1.5rem;
}

.zd-article-body ul,
.zd-article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.zd-article-body li {
    margin-bottom: 0.5rem;
}

.zd-sidebar-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E8E8E1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.zd-sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D2D2D;
}

.zd-sidebar-list a {
    text-decoration: none;
    color: #5E5E5E;
    font-size: 0.9375rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.zd-sidebar-list a:hover {
    color: #8BA888;
    transform: translateX(5px);
}

.zd-sidebar-cta {
    background-color: #8BA888;
    color: #FFFFFF;
}

.zd-sidebar-cta i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.zd-sidebar-cta h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.zd-comment-form-container {
    background-color: #F5F5F0;
    border: 1px solid #E8E8E1;
}

.zd-comment-form-container .form-control {
    border-radius: 8px;
    border: 1px solid #E8E8E1;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
}

.zd-comment-form-container .form-control:focus {
    border-color: #8BA888;
    box-shadow: 0 0 0 4px rgba(139, 168, 136, 0.1);
}

.zd-primary-btn {
    background-color: #8BA888;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zd-primary-btn:hover {
    background-color: #7a9677;
    transform: translateY(-2px);
}

.zd-secondary-btn {
    background-color: #FFFFFF;
    color: #8BA888;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-comment-card {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E8E8E1;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2D2D2D;
}

.comment-date {
    font-size: 0.75rem;
    color: #8C8C8C;
}

.btn-comment-action {
    background: none;
    border: none;
    color: #5E5E5E;
    font-size: 0.875rem;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.btn-comment-action:hover {
    color: #8BA888;
}

.btn-comment-action.active i {
    color: #E74C3C;
}

.reply-comment-card {
    background-color: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #E8E8E1;
}

@media (max-width: 767px) {
    .zd-hero-title {
        font-size: 1.75rem !important;
    }

    .zd-hero-subtitle {
        font-size: 1rem;
    }

    .zd-detail-hero {
        padding: 80px 15px 40px;
    }

    .zd-main-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .reply-comment-card {
        margin-left: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: aktywnosc ===== */
.zd-detail-wrapper {
    background-color: #FCFBF7;
}

.zd-detail-hero {
    padding: 120px 0 80px;
    background-position: center;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.zd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.zd-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.zd-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto;
}

.zd-hero-meta {
    font-size: 0.875rem;
    font-weight: 500;
}

.zd-article-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2D2D2D;
}

.zd-article-body h2,
.zd-article-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #2D2D2D;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.zd-article-body p {
    margin-bottom: 1.5rem;
}

.zd-article-body ul,
.zd-article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.zd-article-body li {
    margin-bottom: 0.5rem;
}

.zd-sidebar-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E8E8E1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.zd-sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D2D2D;
}

.zd-sidebar-list a {
    text-decoration: none;
    color: #5E5E5E;
    font-size: 0.9375rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.zd-sidebar-list a:hover {
    color: #8BA888;
    transform: translateX(5px);
}

.zd-sidebar-cta {
    background-color: #8BA888;
    color: #FFFFFF;
}

.zd-sidebar-cta i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.zd-sidebar-cta h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.zd-comment-form-container {
    background-color: #F5F5F0;
    border: 1px solid #E8E8E1;
}

.zd-comment-form-container .form-control {
    border-radius: 8px;
    border: 1px solid #E8E8E1;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
}

.zd-comment-form-container .form-control:focus {
    border-color: #8BA888;
    box-shadow: 0 0 0 4px rgba(139, 168, 136, 0.1);
}

.zd-primary-btn {
    background-color: #8BA888;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zd-primary-btn:hover {
    background-color: #7a9677;
    transform: translateY(-2px);
}

.zd-secondary-btn {
    background-color: #FFFFFF;
    color: #8BA888;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-comment-card {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E8E8E1;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2D2D2D;
}

.comment-date {
    font-size: 0.75rem;
    color: #8C8C8C;
}

.btn-comment-action {
    background: none;
    border: none;
    color: #5E5E5E;
    font-size: 0.875rem;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.btn-comment-action:hover {
    color: #8BA888;
}

.btn-comment-action.active i {
    color: #E74C3C;
}

.reply-comment-card {
    background-color: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #E8E8E1;
}

@media (max-width: 767px) {
    .zd-hero-title {
        font-size: 1.75rem !important;
    }

    .zd-hero-subtitle {
        font-size: 1rem;
    }

    .zd-detail-hero {
        padding: 80px 15px 40px;
    }

    .zd-main-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .reply-comment-card {
        margin-left: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: przepisy ===== */
.zd-detail-wrapper {
    background-color: #FCFBF7;
}

.zd-detail-hero {
    padding: 120px 0 80px;
    background-position: center;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.zd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.zd-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.zd-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto;
}

.zd-hero-meta {
    font-size: 0.875rem;
    font-weight: 500;
}

.zd-article-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2D2D2D;
}

.zd-article-body h2,
.zd-article-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #2D2D2D;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.zd-article-body p {
    margin-bottom: 1.5rem;
}

.zd-article-body ul,
.zd-article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.zd-article-body li {
    margin-bottom: 0.5rem;
}

.zd-sidebar-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E8E8E1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.zd-sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D2D2D;
}

.zd-sidebar-list a {
    text-decoration: none;
    color: #5E5E5E;
    font-size: 0.9375rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.zd-sidebar-list a:hover {
    color: #8BA888;
    transform: translateX(5px);
}

.zd-sidebar-cta {
    background-color: #8BA888;
    color: #FFFFFF;
}

.zd-sidebar-cta i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.zd-sidebar-cta h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.zd-comment-form-container {
    background-color: #F5F5F0;
    border: 1px solid #E8E8E1;
}

.zd-comment-form-container .form-control {
    border-radius: 8px;
    border: 1px solid #E8E8E1;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
}

.zd-comment-form-container .form-control:focus {
    border-color: #8BA888;
    box-shadow: 0 0 0 4px rgba(139, 168, 136, 0.1);
}

.zd-primary-btn {
    background-color: #8BA888;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zd-primary-btn:hover {
    background-color: #7a9677;
    transform: translateY(-2px);
}

.zd-secondary-btn {
    background-color: #FFFFFF;
    color: #8BA888;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-comment-card {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E8E8E1;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2D2D2D;
}

.comment-date {
    font-size: 0.75rem;
    color: #8C8C8C;
}

.btn-comment-action {
    background: none;
    border: none;
    color: #5E5E5E;
    font-size: 0.875rem;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.btn-comment-action:hover {
    color: #8BA888;
}

.btn-comment-action.active i {
    color: #E74C3C;
}

.reply-comment-card {
    background-color: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #E8E8E1;
}

@media (max-width: 767px) {
    .zd-hero-title {
        font-size: 1.75rem !important;
    }

    .zd-hero-subtitle {
        font-size: 1rem;
    }

    .zd-detail-hero {
        padding: 80px 15px 40px;
    }

    .zd-main-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .reply-comment-card {
        margin-left: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: historie ===== */
.zd-detail-wrapper {
    background-color: #FCFBF7;
}

.zd-detail-hero {
    padding: 120px 0 80px;
    background-position: center;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.zd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.zd-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.zd-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto;
}

.zd-hero-meta {
    font-size: 0.875rem;
    font-weight: 500;
}

.zd-article-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2D2D2D;
}

.zd-article-body h2,
.zd-article-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #2D2D2D;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.zd-article-body p {
    margin-bottom: 1.5rem;
}

.zd-article-body ul,
.zd-article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.zd-article-body li {
    margin-bottom: 0.5rem;
}

.zd-sidebar-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E8E8E1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.zd-sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D2D2D;
}

.zd-sidebar-list a {
    text-decoration: none;
    color: #5E5E5E;
    font-size: 0.9375rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.zd-sidebar-list a:hover {
    color: #8BA888;
    transform: translateX(5px);
}

.zd-sidebar-cta {
    background-color: #8BA888;
    color: #FFFFFF;
}

.zd-sidebar-cta i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.zd-sidebar-cta h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.zd-comment-form-container {
    background-color: #F5F5F0;
    border: 1px solid #E8E8E1;
}

.zd-comment-form-container .form-control {
    border-radius: 8px;
    border: 1px solid #E8E8E1;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
}

.zd-comment-form-container .form-control:focus {
    border-color: #8BA888;
    box-shadow: 0 0 0 4px rgba(139, 168, 136, 0.1);
}

.zd-primary-btn {
    background-color: #8BA888;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zd-primary-btn:hover {
    background-color: #7a9677;
    transform: translateY(-2px);
}

.zd-secondary-btn {
    background-color: #FFFFFF;
    color: #8BA888;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-comment-card {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E8E8E1;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2D2D2D;
}

.comment-date {
    font-size: 0.75rem;
    color: #8C8C8C;
}

.btn-comment-action {
    background: none;
    border: none;
    color: #5E5E5E;
    font-size: 0.875rem;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.btn-comment-action:hover {
    color: #8BA888;
}

.btn-comment-action.active i {
    color: #E74C3C;
}

.reply-comment-card {
    background-color: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #E8E8E1;
}

@media (max-width: 767px) {
    .zd-hero-title {
        font-size: 1.75rem !important;
    }

    .zd-hero-subtitle {
        font-size: 1rem;
    }

    .zd-detail-hero {
        padding: 80px 15px 40px;
    }

    .zd-main-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .reply-comment-card {
        margin-left: 1.5rem !important;
    }
}