:root {
    --primary-accent: #4CAF50;
    --primary-accent-hover: #388E3C;
    --background-main: #FFFFFF;
    --background-secondary: #F9FBF9;
    --text-primary-light: #1A1C1A;
    --text-secondary-light: #5F635F;
    --border-color: #E0E4E0;
    --category-tag-bg: #E8F5E9;
    --category-tag-text: #2E7D32;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background-main);
    color: var(--text-primary-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.text-muted {
    color: var(--text-secondary-light) !important;
}

.editorial-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.ui-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.btn-accent {
    background-color: var(--primary-accent);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-accent:hover {
    background-color: var(--primary-accent-hover);
    transform: translateY(-1px);
}

.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-badge {
    background-color: var(--category-tag-bg);
    color: var(--category-tag-text);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== header ===== */
.blizej-domu-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E4E0;
    transition: box-shadow 0.3s ease;
    z-index: 1030;
}

.blizej-domu-header.header-scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.blizej-domu-header .brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1A1C1A;
    letter-spacing: -0.5px;
}

.blizej-domu-header .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1A1C1A;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blizej-domu-header .nav-link:hover {
    color: #2E7D32;
}

.blizej-domu-header .contact-btn {
    background-color: #4CAF50 !important;
    color: #FFFFFF !important;
    border-radius: 4px;
    padding: 0.6rem 1.5rem !important;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.blizej-domu-header .contact-btn:hover {
    background-color: #388E3C !important;
    transform: translateY(-1px);
}

.blizej-domu-header .navbar-toggler {
    color: #1A1C1A;
    font-size: 1.5rem;
}

@media (max-width: 991.98px) {
    .blizej-domu-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 0;
        margin-top: 1rem;
        border-top: 1px solid #E0E4E0;
    }

    .blizej-domu-header .nav-item {
        width: 100%;
        text-align: center;
    }

    .blizej-domu-header .me-lg-auto,
    .blizej-domu-header .ms-lg-auto {
        margin: 0 !important;
    }
}

/* ===== hero ===== */
.hero-section {
    background-color: #F9FBF9;
    overflow: hidden;
}

.hero-section .hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-color: #1A1C1A;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-section .hero-card-featured {
    height: 600px;
}

.hero-section .hero-card-small {
    height: 288px;
}

.hero-section .hero-card-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-section .hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    opacity: 0.85;
}

.hero-section .hero-card:hover .hero-card-img {
    transform: scale(1.08);
    opacity: 0.65;
}

.hero-section .hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 28, 26, 0.95);
    padding: 2.5rem 2rem;
    color: #FFFFFF;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.hero-section .hero-card-small .hero-card-overlay {
    padding: 1.5rem;
}

.hero-section .hero-category-tag {
    position: absolute;
    top: -16px;
    left: 2rem;
    background-color: #4CAF50;
    color: #FFFFFF;
    padding: 6px 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.hero-section .hero-card-small .hero-category-tag {
    left: 1.5rem;
}

.hero-section .hero-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 0.75rem;
}

.hero-section .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF !important;
    margin: 0;
}

.hero-section .hero-title-small {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF !important;
    margin: 0;
}

.hero-section .hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #E8F5E9;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-section .hero-desc-small {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #E8F5E9;
    margin: 0;
}

.hero-section .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4CAF50;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.hero-section .hero-cta:hover {
    gap: 12px;
    color: #388E3C;
}

@media (max-width: 991px) {
    .hero-section .hero-card-featured {
        height: 450px;
    }

    .hero-section .hero-card-small {
        height: 300px;
    }

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

@media (max-width: 767px) {
    .hero-section .hero-card-featured {
        height: 380px;
    }

    .hero-section .hero-title {
        font-size: 1.125rem;
    }

    .hero-section .hero-title-small {
        font-size: 1rem;
    }

    .hero-section .hero-desc {
        display: none;
    }

    .hero-section .hero-desc-small {
        display: none;
    }

    .hero-section .hero-card-overlay {
        padding: 1.25rem;
    }
}

/* ===== newsletter ===== */
.newsletter-section {
    background-color: #F9FBF9;
    position: relative;
    overflow: hidden;
}

.newsletter-section .newsletter-card {
    background-color: #FFFFFF;
    border: 1px solid #E0E4E0;
    border-radius: 4px;
    position: relative;
}

.newsletter-section .newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #4CAF50;
    border-radius: 4px 4px 0 0;
}

.newsletter-section .newsletter-icon-box {
    width: 64px;
    height: 64px;
    background-color: #E8F5E9;
    color: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
}

.newsletter-section .newsletter-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1A1C1A;
    line-height: 1.2;
}

.newsletter-section .newsletter-text {
    font-family: 'Inter', sans-serif;
    color: #5F635F;
    font-size: 1.125rem;
    line-height: 1.6;
}

.newsletter-section .form-control {
    border: 1px solid #E0E4E0;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #1A1C1A;
}

.newsletter-section .form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.newsletter-section .form-control::placeholder {
    color: #5F635F;
    opacity: 0.8;
}

.newsletter-section .newsletter-btn {
    background-color: #4CAF50;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    padding: 0.75rem 2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    width: 100%;
}

.newsletter-section .newsletter-btn:hover {
    background-color: #388E3C;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.newsletter-section .newsletter-error-msg {
    color: #d32f2f;
    font-size: 0.875rem;
    display: none;
    text-align: left;
}

.newsletter-section .newsletter-note {
    font-family: 'Inter', sans-serif;
    color: #5F635F;
    font-size: 0.875rem;
}

@media (max-width: 576px) {
    .newsletter-section .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-section .newsletter-text {
        font-size: 1rem;
    }
}

/* ===== latest-health ===== */
.latest-health-block {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.latest-health-block .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
    background: #FFFFFF;
}

.latest-health-block .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.latest-health-block .card:hover .js-card-img {
    transform: scale(1.05);
}

.latest-health-block .card-title a:hover {
    color: #4CAF50 !important;
    text-decoration: underline !important;
}

.latest-health-block .btn-floating {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #E0E4E0;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.latest-health-block .btn-floating:hover {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.latest-health-block .btn-floating:hover i {
    color: #FFFFFF !important;
}

.latest-health-block .btn-link {
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 2px;
}

.latest-health-block .btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.latest-health-block .btn-link:hover::after {
    width: 100%;
}

/* ===== latest-home ===== */
.latest-home-block {
    background-color: #F9FBF9;
    color: #1A1C1A;
    font-family: 'Inter', sans-serif;
}

.latest-home-block__title {
    font-family: 'Playfair Display', serif;
    color: #1A1C1A;
}

.latest-home-block__subtitle {
    color: #5F635F;
    max-width: 600px;
    font-size: 1.125rem;
}

.latest-home-block__card {
    background-color: #FFFFFF;
    border: 1px solid #E0E4E0;
    border-radius: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.latest-home-block__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.latest-home-block__image-container {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.latest-home-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.latest-home-block__card:hover .latest-home-block__image {
    transform: scale(1.05);
}

.latest-home-block__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.latest-home-block__card-title a {
    font-family: 'Playfair Display', serif;
    color: #1A1C1A;
    transition: color 0.3s ease;
}

.latest-home-block__card-title a:hover {
    color: #4CAF50;
}

.latest-home-block__excerpt {
    color: #5F635F;
    font-size: 0.95rem;
    line-height: 1.6;
}

.latest-home-block__share {
    border-top: 1px dashed #E0E4E0;
}

.latest-home-block__share-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #5F635F;
    text-transform: uppercase;
}

.latest-home-block__share-url {
    font-size: 0.75rem;
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
    word-wrap: break-word;
}

.latest-home-block__share-url:hover {
    color: #388E3C;
    text-decoration: underline;
}

.latest-home-block__btn {
    background-color: #4CAF50;
    color: #FFFFFF !important;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.latest-home-block__btn:hover {
    background-color: #388E3C;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

@media (max-width: 768px) {
    .latest-home-block__title {
        font-size: 1.75rem;
    }

    .latest-home-block__subtitle {
        font-size: 1rem;
    }
}

/* ===== footer ===== */
#footer-block {
    background-color: #FFFFFF;
    color: #1A1C1A;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #E0E4E0;
}

#footer-block .footer-disclaimer {
    background-color: #F9FBF9;
    border: 1px solid #E0E4E0;
    border-left: 4px solid #4CAF50;
    border-radius: 4px;
}

#footer-block .footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1A1C1A;
    margin-bottom: 1.5rem;
}

#footer-block .footer-text {
    color: #5F635F;
    font-size: 0.9375rem;
    line-height: 1.6;
}

#footer-block .footer-logo img {
    max-width: 50px;
    height: auto;
    object-fit: contain;
}

#footer-block .footer-link {
    color: #5F635F;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

#footer-block .footer-link:hover {
    color: #4CAF50;
    padding-left: 5px;
}

#footer-block .footer-link-inline {
    color: #5F635F;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer-block .footer-link-inline:hover {
    color: #4CAF50;
}

#footer-block .footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #5F635F;
    font-size: 0.9375rem;
}

#footer-block .footer-info-item i {
    color: #4CAF50;
    font-size: 1.2rem;
    flex-shrink: 0;
}

#footer-block .footer-bottom {
    border-color: #E0E4E0 !important;
}

@media (max-width: 767.98px) {
    #footer-block .footer-heading {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    #footer-block .footer-disclaimer {
        padding: 1.5rem !important;
    }
}

/* ===== PAGE: privacy ===== */
.policy-content-wrapper {
  padding: 2rem 0;
  color: #1A1C1A;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

.policy-content-wrapper .policy-header {
  border-bottom: none;
  margin-bottom: 3rem;
  padding-bottom: 0;
}

.policy-content-wrapper .policy-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5F635F;
  margin-bottom: 0.5rem;
}

.policy-content-wrapper .policy-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1A1C1A;
  margin-bottom: 1rem;
}

.policy-content-wrapper .policy-lead {
  font-size: 1.125rem;
  color: #5F635F;
  max-width: 800px;
}

.policy-content-wrapper .policy-toc {
  background-color: #F9FBF9;
  border: 1px solid #E0E4E0;
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 3rem;
}

.policy-content-wrapper .toc-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2E7D32;
}

.policy-content-wrapper .policy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-content-wrapper .policy-toc li {
  margin-bottom: 0.5rem;
}

.policy-content-wrapper .policy-toc a {
  color: #1A1C1A;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.policy-content-wrapper .policy-toc a:hover {
  color: #4CAF50;
  text-decoration: underline;
}

.policy-content-wrapper .policy-section {
  margin-bottom: 0;
}

.policy-content-wrapper .policy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #2E7D32;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0;
}

.policy-content-wrapper .policy-section h2::after {
  content: none;
}

.policy-content-wrapper .policy-link {
  color: #2E7D32;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.policy-content-wrapper .policy-link:hover {
  border-bottom-color: #4CAF50;
  color: #4CAF50;
}

.policy-content-wrapper .contact-box {
  background-color: #E8F5E9;
  padding: 2rem;
  border-radius: 4px;
  border-left: 4px solid #4CAF50;
  margin-top: 1.5rem;
}

.policy-content-wrapper .contact-box p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.policy-content-wrapper .contact-box p:last-child {
  margin-bottom: 0;
}

.policy-content-wrapper .contact-box a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-content-wrapper .contact-box a:hover {
  color: #2E7D32;
}

@media (max-width: 768px) {
  .policy-content-wrapper .policy-main-title {
    font-size: 1.8rem;
  }
  .policy-content-wrapper .policy-section h2 {
    font-size: 1.4rem;
  }
  .policy-content-wrapper {
    padding: 1rem;
  }
  .policy-content-wrapper .contact-box {
    padding: 1.25rem;
  }
}

/* ===== PAGE: terms ===== */
.policy-content-wrapper {
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  color: #1A1C1A;
}

.policy-content-wrapper .policy-container {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.policy-content-wrapper .policy-section {
  border-left: none;
  padding-left: 0;
}

.policy-content-wrapper .policy-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1A1C1A;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.policy-content-wrapper .policy-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #5F635F;
  margin-bottom: 1rem;
}

.policy-content-wrapper .policy-link {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.policy-content-wrapper .policy-link:hover {
  color: #388E3C;
  text-decoration: underline;
}

.policy-content-wrapper .contact-details {
  background-color: #F9FBF9;
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1rem;
  border: 1px solid #E0E4E0;
}

.policy-content-wrapper .contact-details p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #1A1C1A;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .policy-content-wrapper {
    padding: 2.5rem 1rem;
  }
  
  .policy-content-wrapper .policy-heading {
    font-size: 1.5rem;
  }
  
  .policy-content-wrapper .policy-text {
    font-size: 0.9375rem;
  }
  
  .policy-content-wrapper .policy-section {
    padding-left: 1rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.policy-content-wrapper {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  color: #1A1C1A;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}
.policy-content-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #1A1C1A;
  border-bottom: none;
  padding-bottom: 0;
}
.policy-content-wrapper h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: #2E7D32;
}
.policy-content-wrapper p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.policy-content-wrapper .last-updated-date {
  color: #5F635F;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.policy-content-wrapper .policy-list-standard {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.policy-content-wrapper .policy-list-standard li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}
.policy-content-wrapper .policy-list-standard li::before {
  content: '\2022';
  position: absolute;
  left: 0.25rem;
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.2;
}
.policy-content-wrapper .contact-details-box {
  border-radius: 0 8px 8px 0;
  transition: transform 0.3s ease;
}
.policy-content-wrapper .contact-details-box:hover {
  transform: translateX(5px);
}
.policy-content-wrapper a {
  color: #4CAF50;
  transition: color 0.2s ease;
}
.policy-content-wrapper a:hover {
  color: #388E3C;
}
@media (max-width: 768px) {
  .policy-content-wrapper {
    padding: 2.5rem 1rem;
  }
  .policy-content-wrapper h2 {
    font-size: 1.5rem;
  }
  .policy-content-wrapper h3 {
    font-size: 1.25rem;
  }
  .policy-content-wrapper p {
    font-size: 0.9375rem;
  }
}

/* ===== PAGE: cookies ===== */
.policy-content-wrapper {
  font-family: 'Inter', sans-serif;
  color: #1A1C1A;
  line-height: 1.8;
  background-color: #FFFFFF;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.policy-content-wrapper .policy-inner-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.policy-content-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1A1C1A;
  margin-bottom: 1.5rem;
  display: block;
}
.policy-content-wrapper .accent-line {
  display: none;
}
.policy-content-wrapper h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1C1A;
}
.policy-content-wrapper p {
  margin-bottom: 1.25rem;
  color: #5F635F;
}
.policy-content-wrapper .policy-icon-box {
  font-size: 3.5rem;
  color: #4CAF50;
}
.policy-content-wrapper .cookie-card {
  background-color: #F9FBF9;
  border: 1px solid #E0E4E0;
  transition: all 0.3s ease;
}
.policy-content-wrapper .cookie-card:hover {
  border-color: #4CAF50;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.08);
}
.policy-content-wrapper .cookie-card i {
  color: #4CAF50;
  font-size: 1.5rem;
}
.policy-content-wrapper .custom-list {
  list-style: none;
  padding-left: 0;
}
.policy-content-wrapper .custom-list li {
  position: relative;
  padding-left: 1.5rem;
}
.policy-content-wrapper .custom-list li::before {
  content: '•';
  color: #4CAF50;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.policy-content-wrapper .btn-browser {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: 1px solid #E0E4E0;
  color: #5F635F;
  text-decoration: none;
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.2s ease;
}
.policy-content-wrapper .btn-browser:hover {
  background-color: #E8F5E9;
  border-color: #4CAF50;
  color: #2E7D32;
}
.policy-content-wrapper .policy-contact-box {
  border-top: 4px solid #4CAF50 !important;
}
@media (max-width: 768px) {
  .policy-content-wrapper h2 {
    font-size: 1.6rem;
  }
  .policy-content-wrapper .policy-inner-container {
    padding: 0 1rem;
  }
}

/* ===== UNIFIED POLICY PAGES ===== */
.policy-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #1A1C1A;
}
.policy-content-wrapper .policy-article {
  max-width: 100%;
}
.policy-content-wrapper .policy-section h2,
.policy-content-wrapper h2,
.policy-content-wrapper .policy-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #1A1C1A;
  border-bottom: none;
  padding-bottom: 0;
}
.policy-content-wrapper h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #2E7D32;
}
.policy-content-wrapper p,
.policy-content-wrapper .policy-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #5F635F;
  margin-bottom: 1rem;
}
.policy-content-wrapper .policy-list,
.policy-content-wrapper .policy-list-standard,
.policy-content-wrapper ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.policy-content-wrapper .policy-list li,
.policy-content-wrapper .policy-list-standard li,
.policy-content-wrapper ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #5F635F;
}
.policy-content-wrapper .policy-list li::before,
.policy-content-wrapper .policy-list-standard li::before,
.policy-content-wrapper ul li::before {
  content: '\2022';
  position: absolute;
  left: 0.25rem;
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.2;
}
.policy-content-wrapper .policy-link,
.policy-content-wrapper a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.policy-content-wrapper .policy-link:hover,
.policy-content-wrapper a:hover {
  color: #388E3C;
  text-decoration: underline;
}
.policy-content-wrapper .contact-box,
.policy-content-wrapper .contact-details {
  background-color: #F9FBF9;
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1rem;
  border: 1px solid #E0E4E0;
}
.policy-content-wrapper .contact-box p,
.policy-content-wrapper .contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #1A1C1A;
}
.policy-content-wrapper .contact-box p:last-child,
.policy-content-wrapper .contact-details p:last-child {
  margin-bottom: 0;
}
.policy-content-wrapper .contact-box a,
.policy-content-wrapper .contact-details a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 768px) {
  .policy-content-wrapper {
    padding: 2.5rem 1rem;
  }
  .policy-content-wrapper .policy-section h2,
  .policy-content-wrapper h2,
  .policy-content-wrapper .policy-heading {
    font-size: 1.4rem;
  }
  .policy-content-wrapper h3 {
    font-size: 1.2rem;
  }
  .policy-content-wrapper p,
  .policy-content-wrapper .policy-text {
    font-size: 0.9375rem;
  }
}

/* ===== PAGE: blog ===== */
.blog-section {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
}

.blog-section__main-title {
  font-family: 'Playfair Display', serif;
  color: #1A1C1A;
  letter-spacing: -0.02em;
}

.blog-section__divider {
  width: 60px;
  height: 4px;
  background-color: #4CAF50;
  margin: 1.5rem auto;
}

.blog-section__subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
  background-color: #F9FBF9;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

.blog-card__image-wrapper {
  height: 240px;
  overflow: hidden;
}

.blog-card__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.08);
}

.blog-card__badge {
  background-color: #E8F5E9;
  color: #2E7D32;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  z-index: 2;
}

.blog-card__meta {
  font-size: 0.85rem;
}

.blog-card__link-title {
  transition: color 0.3s ease;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
}

.blog-card:hover .blog-card__link-title {
  color: #4CAF50 !important;
  text-decoration: underline !important;
}

.blog-card__read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-card__read-more:hover {
  padding-left: 5px !important;
  color: #388E3C !important;
}

.blog-card__share code {
  font-size: 0.7rem;
  color: #5F635F;
  border: 1px solid #E0E4E0;
}

.blog-filters .btn-outline-success {
  border-color: #4CAF50;
  color: #4CAF50;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.blog-filters .btn-outline-success.active,
.blog-filters .btn-outline-success:hover {
  background-color: #4CAF50;
  border-color: #4CAF50;
  color: #FFFFFF !important;
}

.blog-search .input-group-text {
  border-color: #E0E4E0;
}

.blog-search .form-control {
  border-color: #E0E4E0;
  padding: 0.6rem 1rem;
}

.blog-search .form-control:focus {
  box-shadow: none;
  border-color: #4CAF50;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #5F635F;
}

@media (max-width: 768px) {
  .blog-section__main-title {
    font-size: 2rem;
  }
  .blog-card__image-wrapper {
    height: 200px;
  }
}

/* ===== PAGE: health-and-beauty ===== */
.health-header-block .breadcrumb-item, .health-header-block .breadcrumb-item a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #5F635F;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.health-header-block .breadcrumb-item.active {
  color: #4CAF50;
}
.health-header-block h1 {
  font-family: 'Playfair Display', serif;
  color: #1A1C1A !important;
}
.health-header-block .header-divider {
  width: 60px;
  height: 4px;
  background-color: #4CAF50;
}
.health-grid-block {
  background-color: #FFFFFF;
}
.health-grid-block .js-filter-btn {
  background-color: #F9FBF9;
  color: #5F635F;
  border: 1px solid #E0E4E0;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}
.health-grid-block .js-filter-btn.active, .health-grid-block .js-filter-btn:hover {
  background-color: #4CAF50;
  color: #FFFFFF;
  border-color: #4CAF50;
}
.health-grid-block .search-box .form-control {
  border: 1px solid #E0E4E0;
  border-radius: 0;
  padding: 0.6rem 1rem;
  font-family: 'Inter', sans-serif;
}
.health-grid-block .card-img-wrapper {
  position: relative;
  aspect-ratio: 16/10;
}
.health-grid-block .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.health-grid-block .card:hover .card-img-top {
  transform: scale(1.05);
}
.health-grid-block .category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #E8F5E9;
  color: #2E7D32;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.health-grid-block .card-title {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}
.health-grid-block .card-title a {
  transition: color 0.3s ease;
}
.health-grid-block .card-title a:hover {
  color: #4CAF50 !important;
}
.health-grid-block .card-text {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  font-size: 0.95rem;
}
.health-grid-block .card-body {
  padding: 1.25rem 1.5rem;
}
.health-grid-block .card-title {
  padding: 0;
}
.health-grid-block .btn-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.3s ease;
}
.health-grid-block .btn-link:hover {
  gap: 12px !important;
}
@media (max-width: 768px) {
  .health-header-block .display-3 {
    font-size: 2.25rem;
  }
}

/* ===== PAGE: home-and-comfort ===== */
.hc-page-wrapper {
  background-color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  color: #1A1C1A;
}

.hc-main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #1A1C1A;
  line-height: 1.2;
}

.hc-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: #1A1C1A;
}

.hc-lead-text {
  font-size: 1.25rem;
  color: #5F635F;
  line-height: 1.6;
}

.hc-accent-color {
  color: #4CAF50;
}

.hc-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #E0E4E0;
}

.hc-breadcrumb .hc-link {
  color: #5F635F;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.hc-breadcrumb .hc-link:hover {
  color: #4CAF50;
}

.hc-search-group {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.hc-search-group .form-control {
  border: 1px solid #E0E4E0;
  padding: 12px 15px;
  font-family: 'Montserrat', sans-serif;
}

.hc-search-group .form-control:focus {
  box-shadow: none;
  border-color: #4CAF50;
}

.hc-post-card {
  background: #FFFFFF;
  border: 1px solid #E0E4E0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hc-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.hc-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.hc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hc-post-card:hover .hc-card-img {
  transform: scale(1.05);
}

.hc-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 4px 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
}

.hc-card-title-link {
  color: #1A1C1A;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

.hc-card-title-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #4CAF50;
  transition: width 0.3s ease;
}

.hc-post-card:hover .hc-card-title-link::after {
  width: 100%;
}

.hc-meta {
  font-size: 0.85rem;
  color: #5F635F;
  display: flex;
  gap: 15px;
}

.hc-meta i {
  color: #4CAF50;
  margin-right: 4px;
}

.hc-card-excerpt {
  color: #5F635F;
  font-size: 1rem;
  line-height: 1.5;
}

.hc-btn-primary {
  display: inline-block;
  padding: 8px 20px;
  background: #4CAF50;
  color: #FFFFFF !important;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.hc-btn-primary:hover {
  background: #388E3C;
}

.hc-newsletter-form .input-group {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hc-newsletter-form .hc-input {
  border: none;
  padding: 15px 25px;
  border-radius: 4px 0 0 4px !important;
}

.hc-btn-accent {
  background: #4CAF50;
  color: #FFFFFF;
  border: none;
  padding: 0 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 0 4px 4px 0 !important;
  transition: background 0.3s ease;
}

.hc-btn-accent:hover {
  background: #388E3C;
}

@media (max-width: 768px) {
  .hc-main-heading {
    font-size: 2.25rem;
  }
  .hc-section-heading {
    font-size: 1.75rem;
  }
  .hc-lead-text {
    font-size: 1.1rem;
  }
}

/* ===== PAGE: contacts ===== */
.contact-form-block { font-family: 'Inter', sans-serif; background-color: #F9FBF9; } .contact-form-block .section-title { font-family: 'Playfair Display', serif; color: #1A1C1A; font-weight: 700; position: relative; } .contact-form-block .section-description { color: #5F635F; line-height: 1.6; } .contact-form-block .contact-info-panel { background-color: transparent; } .contact-form-block .contact-icon-wrapper { color: #4CAF50; font-size: 1.5rem; line-height: 1; } .contact-form-block .contact-label { font-family: 'Montserrat', sans-serif; font-size: 0.875rem; font-weight: 600; color: #1A1C1A; text-transform: uppercase; margin-bottom: 0.25rem; } .contact-form-block .contact-value { color: #5F635F; font-size: 1rem; } .contact-form-block .contact-link { color: #5F635F; text-decoration: none; transition: color 0.3s ease; } .contact-form-block .contact-link:hover { color: #4CAF50; } .contact-form-block .contact-form-panel { border-color: #E0E4E0 !important; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); } .contact-form-block .form-outline .form-control { border-bottom: 2px solid #E0E4E0; border-radius: 0; padding-left: 0; padding-right: 0; transition: border-color 0.3s ease; } .contact-form-block .form-outline .form-control:focus { border-bottom-color: #4CAF50; box-shadow: none; } .contact-form-block .form-label { color: #5F635F; } .contact-form-block .form-outline .form-control:focus ~ .form-label { color: #4CAF50; } .contact-form-block .btn-submit { background-color: #4CAF50; border: none; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; transition: background-color 0.3s ease, transform 0.2s ease; } .contact-form-block .btn-submit:hover { background-color: #388E3C; transform: translateY(-2px); } .contact-form-block .form-check-input:checked { background-color: #4CAF50; border-color: #4CAF50; } @media (max-width: 991.98px) { .contact-form-block .contact-info-panel { padding-bottom: 2rem !important; } }

.comment-avatar-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-author-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1A1C1A;
    font-size: 1.125rem;
}

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

.comment-text-content {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1A1C1A;
}

.btn-comment-action {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4CAF50;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.btn-comment-action:hover {
    color: #388E3C;
}

.btn-comment-action.text-secondary {
    color: #5F635F;
}

.reply-comment-wrapper {
    border-left: 2px solid #E8F5E9 !important;
    background-color: #F9FBF9;
    border-radius: 0 8px 8px 0;
    padding-right: 1rem;
}

.avatar-sm {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    background: #2E7D32;
}

.reply-comment-wrapper .comment-author-name {
    font-size: 1rem;
}

.reply-comment-wrapper .comment-text-content {
    font-size: 0.9375rem;
    color: #5F635F;
}

.reply-comment-wrapper .comment-meta-date {
    font-size: 0.8rem;
}


/* ===== PAGE TEMPLATE: blog-posts ===== */
.blog-detail-template {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
}

.detail-hero {
    background-color: #F9FBF9;
    border-bottom: 1px solid #E0E4E0;
}

.detail-hero h1 {
    font-family: 'Playfair Display', serif;
    color: #1A1C1A;
}

.detail-hero .category-badge {
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-block;
}

.content-card {
    background: #fff;
    border: 1px solid #E0E4E0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.article-body-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A1C1A;
}

.article-body-content h2,
.article-body-content h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    color: #1A1C1A;
}

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

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

.share-btn-fb {
    background-color: #1877F2 !important;
    color: #fff !important;
}

.share-btn-tw {
    background-color: #1DA1F2 !important;
    color: #fff !important;
}

.share-btn-wa {
    background-color: #25D366 !important;
    color: #fff !important;
}

.share-btn-fb:hover,
.share-btn-tw:hover,
.share-btn-wa:hover {
    color: #fff !important;
    opacity: 1;
    filter: brightness(0.92);
}

.share-btn-fb:focus,
.share-btn-tw:focus,
.share-btn-wa:focus,
.share-btn-fb:active,
.share-btn-tw:active,
.share-btn-wa:active {
    color: #fff !important;
    opacity: 1;
    filter: brightness(0.85);
    box-shadow: none !important;
}

.share-btn-tw:focus-visible,
.share-btn-wa:focus-visible {
    color: #fff !important;
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
    opacity: 1;
}

.comment-avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4CAF50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.avatar-sm {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
}

.comment-author-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.comment-meta-date {
    font-size: 0.85rem;
    color: #5F635F;
}

.btn-comment-action {
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #4CAF50;
    transition: color 0.3s;
}

.btn-comment-action:hover {
    color: #388E3C;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #E0E4E0;
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    padding-bottom: 10px;
    display: inline-block;
}

.form-outline .form-control {
    background: #fff !important;
}

.form-outline .form-control::placeholder {
    color: #5F635F;
    opacity: 1;
    font-size: 1rem;
    text-align: left;
    line-height: 1.5;
}

.form-outline .form-label {
    color: #5F635F;
    font-size: 0.9rem;
    text-align: left;
}

.form-outline .form-control:focus ~ .form-label,
.form-outline .form-control:not(:placeholder-shown) ~ .form-label {
    color: #4CAF50;
}

.btn-primary {
    background-color: #4CAF50 !important;
    border-color: #4CAF50 !important;
    color: #fff !important;
    box-shadow: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #388E3C !important;
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 1.75rem;
    }

    .article-body-content {
        font-size: 1rem;
    }

    .content-card {
        padding: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: health-posts ===== */
.health-posts-detail {
    background-color: #FFFFFF;
    color: #1A1C1A;
    font-family: 'Inter', sans-serif;
}

.health-posts-detail .hero-detail-section {
    background-color: #F9FBF9;
    border-bottom: 1px solid #E0E4E0;
}

.health-posts-detail .category-badge {
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 6px 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.health-posts-detail h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1A1C1A !important;
    line-height: 1.2;
}

.health-posts-detail .meta-item {
    color: #5F635F;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.health-posts-detail .meta-item i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.health-posts-detail article {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #1A1C1A;
}

.health-posts-detail article h2,
.health-posts-detail article h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1A1C1A !important;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.health-posts-detail .share-box {
    background-color: #F9FBF9;
    border: 1px solid #E0E4E0;
}

.health-posts-detail .share-btn {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.health-posts-detail .share-btn.facebook {
    background-color: #1877F2;
    color: #FFFFFF;
}

.health-posts-detail .share-btn.twitter {
    background-color: #1A1C1A;
    color: #FFFFFF;
}

.health-posts-detail .share-btn.facebook:hover,
.health-posts-detail .share-btn.twitter:hover {
    opacity: 0.85;
    color: #FFFFFF;
}

.health-posts-detail .share-btn.facebook:focus,
.health-posts-detail .share-btn.twitter:focus,
.health-posts-detail .share-btn.facebook:active,
.health-posts-detail .share-btn.twitter:active {
    color: #FFFFFF;
    opacity: 0.8;
}

.health-posts-detail .sidebar-widget .widget-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.health-posts-detail .post-title-small {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    color: #1A1C1A;
    transition: color 0.2s ease;
}

.health-posts-detail .newsletter-box {
    background-color: #E8F5E9;
    border: 1px solid #C8E6C9;
}

.health-posts-detail .comment-form-container {
    background-color: #F9FBF9;
    border: 1px solid #E0E4E0;
}

.health-posts-detail .comment-avatar-circle {
    width: 48px;
    height: 48px;
    background-color: #4CAF50;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.health-posts-detail .avatar-sm {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}

.health-posts-detail .comment-author-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.health-posts-detail .comment-meta-date {
    font-size: 0.8rem;
    color: #5F635F;
}

.health-posts-detail .btn-comment-action {
    background: none;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4CAF50;
    padding: 0;
    transition: opacity 0.2s ease;
}

.health-posts-detail .btn-comment-action:hover {
    opacity: 0.7;
}

.health-posts-detail .accordion-button:not(.collapsed) {
    background-color: #E8F5E9;
    color: #2E7D32;
    box-shadow: none;
}

@media (max-width: 767.98px) {
    .health-posts-detail h1 {
        font-size: 1.5rem !important;
    }

    .health-posts-detail h2 {
        font-size: 1.3rem !important;
    }

    .health-posts-detail h3 {
        font-size: 1.1rem !important;
    }

    .health-posts-detail article {
        font-size: 1rem;
    }

    .health-posts-detail .main-article-content {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ===== PAGE TEMPLATE: home-posts ===== */
.detail-hero {
    background-color: #F9FBF9;
    border-bottom: 1px solid #E0E4E0;
}

.detail-hero .category-badge {
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 6px 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: 4px;
}

.detail-hero .detail-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: calc(1.5rem + 1.5vw);
    color: #1A1C1A !important;
    line-height: 1.2;
}

.detail-hero .detail-subtitle {
    font-size: 1.1rem;
    color: #5F635F;
    line-height: 1.6;
}

.detail-hero .detail-meta {
    color: #5F635F;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.detail-hero .detail-meta i {
    color: #4CAF50;
}

.detail-hero-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.detail-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-body-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #1A1C1A;
}

.article-body-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1A1C1A !important;
}

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

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

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

.share-bar {
    background-color: #F9FBF9;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.share-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #FFFFFF;
    transition: filter 0.3s ease;
}

.share-link.facebook {
    background-color: #1877F2;
}

.share-link.twitter {
    background-color: #000000;
}

.share-link.pinterest {
    background-color: #E60023;
}

.share-link:hover,
.share-link:focus,
.share-link:active {
    opacity: 1;
    filter: brightness(0.88);
    color: #FFFFFF !important;
    text-decoration: none;
}

.sidebar-widget {
    background-color: #FFFFFF;
    border: 1px solid #E0E4E0;
    border-radius: 8px;
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
    color: #1A1C1A !important;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #4CAF50;
}

.author-avatar-mini {
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.recent-post-link {
    text-decoration: none;
    color: #1A1C1A;
    display: block;
}

.recent-posts-list {
    list-style: none;
    padding-left: 0;
}

.recent-post-link h5 {
    transition: color 0.3s ease;
    color: #1A1C1A !important;
}

.recent-post-link:hover h5 {
    color: #4CAF50 !important;
}

.comment-form-box {
    background-color: #F9FBF9;
    border: 1px solid #E0E4E0;
}

.comment-form-box input,
.comment-form-box textarea {
    border: 1px solid #E0E4E0;
    background-color: #FFFFFF;
}

.main-comment-wrapper {
    margin-bottom: 1.5rem;
}

.comment-avatar-circle {
    width: 48px;
    height: 48px;
    background-color: #E8F5E9;
    color: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.comment-avatar-circle.avatar-sm {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}

.comment-author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1A1C1A !important;
}

.comment-meta-date {
    font-size: 0.8rem;
    color: #5F635F;
}

.comment-text-content {
    font-size: 0.95rem;
    color: #1A1C1A;
}

.btn-comment-action {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #4CAF50;
    transition: opacity 0.3s ease;
}

.btn-comment-action:hover {
    opacity: 0.7;
}

@media (max-width: 991.98px) {
    .detail-hero-img {
        height: 300px;
    }

    .detail-hero {
        padding-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .article-body-content {
        font-size: 0.95rem;
    }

    .detail-hero .detail-title {
        font-size: 1.5rem;
    }
}