:root {
    --ve-primary-green: #2E7D32;
    --ve-light-green: #E8F5E9;
    --ve-accent-green: #1B5E20;
    --ve-bg-primary: #FFFFFF;
    --ve-bg-secondary: #F9FBF9;
    --ve-text-primary: #121212;
    --ve-text-secondary: #2E2E2E;
    --ve-text-muted: #555555;
    --ve-border: #E0E0E0;
    --ve-font-serif: 'Playfair Display', serif;
    --ve-font-sans: 'Inter', sans-serif;
}

.ve-editorial-body {
    font-family: var(--ve-font-sans);
    background-color: var(--ve-bg-primary);
    color: var(--ve-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.ve-serif {
    font-family: var(--ve-font-serif);
}

.ve-btn-primary {
    background-color: var(--ve-primary-green);
    color: #FFFFFF;
    border-radius: 0;
    padding: 0.75rem 2rem;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ve-btn-primary:hover {
    background-color: var(--ve-accent-green);
    color: #FFFFFF;
}

.ve-btn-outline {
    border: 1.5px solid var(--ve-primary-green);
    color: var(--ve-primary-green);
    border-radius: 0;
    padding: 0.75rem 2rem;
    background: transparent;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ve-btn-outline:hover {
    background-color: var(--ve-primary-green);
    color: #FFFFFF;
}

.ve-card {
    border: 1px solid var(--ve-border);
    background-color: #FFFFFF;
    border-radius: 0;
    transition: border-color 0.2s ease;
}

.ve-card:hover {
    border-color: var(--ve-primary-green);
}

.ve-section-spacer {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (max-width: 768px) {
    .ve-section-spacer {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* ===== header ===== */
.vida-equilibrio-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    z-index: 1030;
}

.vida-equilibrio-header .navbar {
    padding: 1rem 0;
    background-color: #FFFFFF !important;
}

.vida-equilibrio-header .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #121212;
    text-decoration: none;
    font-size: 1.25rem;
}

.vida-equilibrio-header .js-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.vida-equilibrio-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4A4A4A !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.vida-equilibrio-header .nav-link:hover {
    color: #2E7D32 !important;
}

.vida-equilibrio-header .navbar-toggler {
    border: none;
    color: #2E7D32;
    font-size: 1.5rem;
    padding: 0;
}

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

.vida-equilibrio-header .btn-primary {
    background-color: #2E7D32;
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: background-color 0.2s ease;
}

.vida-equilibrio-header .btn-primary:hover {
    background-color: #1B5E20;
}

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

    .vida-equilibrio-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #F9FBF9;
    }

    .vida-equilibrio-header .brand-text {
        font-size: 1.1rem;
    }
}

/* ===== hero ===== */
.vida-hero {
    background-color: #121212;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.vida-hero .hero-bg-wrapper {
    z-index: 0;
}

.vida-hero .hero-overlay {
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.4) 50%, rgba(18, 18, 18, 0.1) 100%);
    z-index: 1;
}

.vida-hero .hero-text-card {
    background: rgba(255, 255, 255, 0.95);
    border-left: 5px solid #2E7D32;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
}

.vida-hero .hero-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2E7D32;
}

.vida-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    color: #121212;
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

.vida-hero .hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4A4A4A;
}

.vida-hero .hero-separator {
    height: 100px;
    z-index: 2;
    pointer-events: none;
}

.vida-hero .hero-separator svg {
    height: 100%;
}

@media (max-width: 767.98px) {
    .vida-hero .hero-title {
        font-size: 18px !important;
    }

    .vida-hero .hero-description {
        font-size: 14px !important;
    }

    .vida-hero .hero-text-card {
        padding: 1.5rem !important;
        margin: 1rem;
    }

    .vida-hero .hero-separator {
        height: 40px;
    }

    .vida-hero .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* ===== about ===== */
.vida-about {
    background-color: #F9FBF9;
    overflow: hidden;
}

.vida-about .bg-light-surface {
    background-color: #F9FBF9;
}

.vida-about .vida-caption {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vida-about .text-brand-accent {
    color: #1B5E20;
}

.vida-about .text-brand-primary {
    color: #2E7D32;
}

.vida-about .vida-h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    color: #121212;
}

.vida-about .vida-h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: #121212;
}

.vida-about .vida-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4A4A4A;
}

.vida-about .vida-pillar-card {
    border: 1px solid #E0E0E0 !important;
    transition: border-color 0.2s ease;
}

.vida-about .vida-pillar-card:hover {
    border-color: #2E7D32 !important;
}

.vida-about .vida-about-image-frame {
    position: relative;
    z-index: 2;
}

.vida-about .vida-about-image-frame img {
    object-fit: cover;
    min-height: 400px;
    max-height: 600px;
}

.vida-about .vida-about-decoration {
    width: 100%;
    height: 100%;
    border: 2px solid #2E7D32;
    top: 20px;
    right: -20px;
    z-index: 1;
}

@media (max-width: 767px) {
    .vida-about .vida-h2 {
        font-size: 1.75rem;
    }

    .vida-about .vida-body {
        font-size: 1rem;
    }

    .vida-about .vida-about-image-frame img {
        min-height: 300px;
    }
}

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

.vida-grid-label {
    color: #2E7D32;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.vida-grid-heading {
    font-family: 'Playfair Display', serif;
    color: #121212;
    font-size: 2.25rem;
    font-weight: 700;
}

.vida-grid-subheading {
    color: #4A4A4A;
    max-width: 600px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.vida-article-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 0;
    transition: border-color 0.3s ease;
    height: 100%;
}

.vida-article-card:hover {
    border-color: #2E7D32;
}

.vida-card-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.vida-article-card:hover .vida-card-img {
    transform: scale(1.05);
}

.vida-card-cat {
    color: #2E7D32;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vida-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.vida-card-title a {
    text-decoration: none;
    color: #121212 !important;
    transition: color 0.2s ease;
}

.vida-card-title a:hover {
    color: #2E7D32 !important;
}

.vida-card-meta {
    font-size: 0.875rem;
    color: #757575;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .vida-grid-heading {
        font-size: 1.75rem;
    }

    .vida-grid-subheading {
        font-size: 1rem;
    }

    .vida-card-img-wrap {
        height: 200px;
    }
}

/* ===== content ===== */
.vida-content-block {
    font-family: 'Inter', sans-serif;
    color: #121212;
}

.vida-content-block .vida-caption {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #2E7D32;
}

.vida-content-block .vida-h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    color: #121212;
}

.vida-content-block .vida-h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #121212;
}

.vida-content-block .vida-h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #121212;
}

.vida-content-block .vida-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4A4A4A;
}

.vida-content-block .vida-body-small {
    font-size: 1rem;
    line-height: 1.6;
    color: #4A4A4A;
}

.vida-content-block .bg-light-green {
    background-color: #F9FBF9;
}

.vida-content-block .vida-feature-card {
    background: #FFFFFF;
    border-color: #E0E0E0 !important;
    transition: border-color 0.2s ease;
}

.vida-content-block .vida-feature-card:hover {
    border-color: #2E7D32 !important;
}

.vida-content-block .vida-icon {
    font-size: 2rem;
    color: #2E7D32;
}

.vida-content-block .vida-list i {
    font-size: 1.25rem;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .vida-content-block .vida-h2 {
        font-size: 1.75rem;
    }

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

    .vida-content-block .vida-content-img-wrapper img {
        height: 300px !important;
    }
}

/* ===== footer ===== */
.vida-footer {
    background-color: #F9FBF9;
    border-top: 1px solid #E0E0E0;
    color: #4A4A4A;
    font-family: 'Inter', sans-serif;
}

.vida-footer .vida-footer__logo {
    max-width: 50px;
    height: auto;
    display: block;
}

.vida-footer .vida-footer__title {
    font-family: 'Playfair Display', serif;
    color: #121212;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vida-footer .vida-footer__mission {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
    color: #757575;
}

.vida-footer .vida-footer__heading {
    color: #121212;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.vida-footer .vida-footer__list li {
    margin-bottom: 0.75rem;
}

.vida-footer .vida-footer__link {
    color: #4A4A4A;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease-in-out;
}

.vida-footer .vida-footer__link:hover {
    color: #2E7D32;
    text-decoration: underline;
}

.vida-footer .vida-footer__disclaimer {
    color: #757575;
    line-height: 1.5;
    font-style: italic;
}

.vida-footer .vida-footer__copy {
    color: #BDBDBD;
}

@media (max-width: 767.98px) {
    .vida-footer {
        text-align: center;
    }

    .vida-footer .vida-footer__logo {
        margin-left: auto;
        margin-right: auto;
    }

    .vida-footer .vida-footer__mission {
        margin-left: auto;
        margin-right: auto;
    }

    .vida-footer .vida-footer__heading {
        margin-top: 1.5rem;
    }
}

/* ===== PAGE: privacy ===== */
.policy-body-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: #121212;
  background-color: #FFFFFF;
}

.policy-body-container .ve-policy-header {
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 2rem;
}

.policy-body-container h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.policy-body-container h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #2E7D32;
  border-left: 4px solid #2E7D32;
  padding-left: 1rem;
  margin-top: 3rem;
}

.policy-body-container p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #4A4A4A;
}

.policy-body-container ul {
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.policy-body-container li {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: #4A4A4A;
  position: relative;
}

.policy-body-container strong {
  color: #121212;
  font-weight: 600;
}

@media (max-width: 768px) {
  .policy-body-container {
    padding: 2.5rem 1rem;
  }
  .policy-body-container h2 {
    font-size: 1.5rem;
  }
  .policy-body-container p {
    font-size: 1rem;
  }
}

/* ===== PAGE: terms ===== */
.policy-body-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: #121212;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

.policy-body-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #121212;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.policy-body-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #2E7D32;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 0.5rem;
}

.policy-body-container p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: #4A4A4A;
}

.policy-body-container ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  list-style-type: square;
}

.policy-body-container li {
  margin-bottom: 0.75rem;
  color: #4A4A4A;
}

.policy-body-container .policy-header {
  border-bottom: 2px solid #2E7D32;
  padding-bottom: 2rem;
}

.policy-body-container .lead {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .policy-body-container {
    padding: 2.5rem 1rem;
  }
  .policy-body-container h1 {
    font-size: 2rem;
  }
  .policy-body-container h2 {
    font-size: 1.5rem;
  }
  .policy-body-container p {
    font-size: 1rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.policy-body-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: #121212;
  background-color: #FFFFFF;
  line-height: 1.7;
}

.ve-disclaimer-content .ve-disclaimer-lead {
  font-size: 1.25rem;
  color: #2E7D32;
  font-weight: 500;
  margin-bottom: 2.5rem;
  border-left: 4px solid #2E7D32;
  padding-left: 1.5rem;
}

.ve-disclaimer-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #121212;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 0.5rem;
}

.ve-disclaimer-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.ve-disclaimer-content ul {
  margin-bottom: 2rem;
  padding-left: 1.25rem;
}

.ve-disclaimer-content li {
  position: relative;
  list-style: none;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}

.ve-disclaimer-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 2px;
  background-color: #2E7D32;
}

@media (max-width: 768px) {
  .policy-body-container {
    padding: 2.5rem 1rem;
  }
  .ve-disclaimer-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  .ve-disclaimer-content p {
    font-size: 1rem;
  }
  .ve-disclaimer-content .ve-disclaimer-lead {
    font-size: 1.1rem;
  }
}

/* ===== PAGE: cookies ===== */
.policy-body-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  line-height: 1.7;
  color: #121212;
  background-color: #FFFFFF;
}

.ve-policy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #2E7D32;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 0.5rem;
}

.ve-policy-section p {
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
}

.ve-cookie-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid #E0E0E0;
}

.ve-cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.ve-cookie-table th,
.ve-cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}

.ve-cookie-table th {
  background-color: #F9FBF9;
  color: #2E7D32;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.ve-cookie-table td {
  font-size: 1rem;
}

.ve-instruction-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.ve-instruction-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.ve-instruction-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-weight: bold;
}

@media (max-width: 768px) {
  .policy-body-container {
    padding: 2rem 1rem;
  }
  .ve-policy-section h2 {
    font-size: 1.5rem;
  }
  .ve-policy-section p {
    font-size: 1rem;
  }
}

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

.blood-sugar-page .bg-light-green {
  background-color: #F9FBF9;
  border-left: 4px solid #2E7D32;
}

.blood-sugar-page .bs-section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #121212;
}

.blood-sugar-page .bs-card {
  background: #FFFFFF;
  border-color: #E0E0E0 !important;
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blood-sugar-page .bs-card:hover {
  border-color: #2E7D32 !important;
}

.blood-sugar-page .bs-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blood-sugar-page .bs-card-img-wrapper {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blood-sugar-page .bs-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blood-sugar-page .bs-card:hover .bs-card-img-wrapper img {
  transform: scale(1.03);
}

.blood-sugar-page .bs-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  color: #121212;
}

.blood-sugar-page .bs-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2E7D32;
}

.blood-sugar-page .bs-date {
  font-size: 0.875rem;
  color: #757575;
}

.blood-sugar-page .bs-dot {
  width: 4px;
  height: 4px;
  background-color: #BDBDBD;
  border-radius: 50%;
}

.blood-sugar-page .bs-card-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #4A4A4A;
}

.blood-sugar-page .bs-author {
  font-size: 0.875rem;
  font-weight: 500;
  color: #121212;
}

.blood-sugar-page .bs-card-footer i {
  color: #2E7D32;
  font-size: 1.25rem;
}

.blood-sugar-page .bs-search-box .form-control {
  border-radius: 0;
  padding: 0.6rem 1rem;
  border: 1px solid #E0E0E0;
}

.blood-sugar-page .bs-search-box .input-group-text {
  border-radius: 0;
  border: 1px solid #E0E0E0;
  color: #757575;
}

.blood-sugar-page .bs-search-box .form-control:focus {
  box-shadow: none;
  border-color: #2E7D32;
}

.blood-sugar-page .bs-check-list {
  list-style: none;
  padding-left: 0;
}

.blood-sugar-page .text-primary-green {
  color: #2E7D32 !important;
}

/* ===== PAGE: nutrition ===== */
.nutrition-grid-section {
  background-color: #F9FBF9;
  color: #121212;
  overflow: hidden;
}

.nutrition-grid-section .nutrition-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #121212;
  margin-bottom: 1.5rem;
}

.nutrition-grid-section .nutrition-divider {
  width: 60px;
  height: 3px;
  background-color: #2E7D32;
  margin-bottom: 1.5rem;
}

.nutrition-grid-section .nutrition-section-lead {
  font-family: 'Inter', sans-serif;
  max-width: 700px;
  color: #4A4A4A;
  font-size: 1.125rem;
  line-height: 1.7;
}

.nutrition-grid-section .nutrition-card {
  background: #ffffff;
  border: 1px solid #E0E0E0;
  transition: border-color 0.3s ease, transform 0.2s ease;
  position: relative;
}

.nutrition-grid-section .nutrition-card:hover {
  border-color: #2E7D32;
}

.nutrition-grid-section .nutrition-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nutrition-grid-section .nutrition-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.nutrition-grid-section .nutrition-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nutrition-grid-section .nutrition-card:hover .nutrition-card-img {
  transform: scale(1.05);
}

.nutrition-grid-section .nutrition-category-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2E7D32;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.nutrition-grid-section .nutrition-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #121212;
  margin-bottom: 1rem;
  min-height: 3.6rem;
}

.nutrition-grid-section .nutrition-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nutrition-grid-section .nutrition-card-footer {
  border-top: 1px solid #F0F0F0;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #757575;
}

.nutrition-grid-section .nutrition-author i {
  color: #2E7D32;
  margin-right: 4px;
}

@media (max-width: 768px) {
  .nutrition-grid-section .nutrition-section-title {
    font-size: 1.75rem;
  }
  .nutrition-grid-section .nutrition-image-wrapper {
    height: 200px;
  }
  .nutrition-grid-section .nutrition-card-title {
    font-size: 1.25rem;
  }
}

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

.ve-habits-section .ve-section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #121212;
  font-size: 2.25rem;
}

.ve-habits-section .ve-section-subtitle {
  color: #4A4A4A;
  max-width: 600px;
  font-size: 1.125rem;
}

.ve-habits-section .ve-filter-btn {
  background: transparent;
  border: 1.5px solid #2E7D32;
  color: #2E7D32;
  padding: 8px 24px;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ve-habits-section .ve-filter-btn.active,
.ve-habits-section .ve-filter-btn:hover {
  background: #2E7D32;
  color: #FFFFFF;
}

.ve-habits-section .ve-habit-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ve-habits-section .ve-habit-card:hover {
  border-color: #2E7D32;
}

.ve-habits-section .ve-card-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.ve-habits-section .ve-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ve-habits-section .ve-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ve-habits-section .ve-card-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.ve-habits-section .ve-card-meta {
  font-size: 0.875rem;
  color: #757575;
}

.ve-habits-section .ve-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.3;
  color: #121212;
}

.ve-habits-section .ve-card-text {
  color: #4A4A4A;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.ve-habits-section .ve-card-link {
  display: inline-flex;
  align-items: center;
  color: #2E7D32;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: gap 0.2s ease;
  gap: 8px;
}

.ve-habits-section .ve-card-link:hover {
  color: #1B5E20;
  gap: 12px;
}

.ve-habits-section .ve-card-link i {
  font-size: 1.1rem;
}

/* ===== PAGE: lifestyle ===== */
.lifestyle-grid-section { background-color: #F9FBF9; font-family: 'Inter', sans-serif; }
.lifestyle-grid-section__category-label { font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 600; color: #2E7D32; letter-spacing: 0.1em; text-transform: uppercase; }
.lifestyle-grid-section__main-title { font-family: 'Playfair Display', serif; font-size: 3rem; color: #121212; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; }
.lifestyle-grid-section__subtitle { font-size: 1.125rem; color: #4A4A4A; max-width: 700px; line-height: 1.7; }
.lifestyle-grid-section__card { background: #FFFFFF; border: 1px solid #E0E0E0; transition: border-color 0.2s ease; }
.lifestyle-grid-section__card:hover { border-color: #2E7D32; }
.lifestyle-grid-section__image-wrapper { position: relative; overflow: hidden; height: 240px; }
.lifestyle-grid-section__image { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-grid-section__item-category { display: inline-block; background-color: #E8F5E9; color: #2E7D32; font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; margin-bottom: 1rem; text-transform: uppercase; }
.lifestyle-grid-section__item-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #121212; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.3; }
.lifestyle-grid-section__item-title a { color: inherit; text-decoration: none; }
.lifestyle-grid-section__meta { font-size: 0.875rem; color: #757575; }
.lifestyle-grid-section__item-text { font-size: 1rem; color: #4A4A4A; line-height: 1.6; }
.lifestyle-grid-section__btn { display: inline-flex; align-items: center; justify-content: center; background-color: #2E7D32; color: #FFFFFF; font-weight: 600; font-size: 0.9rem; padding: 0.75rem 1.5rem; text-decoration: none; border: 1.5px solid #2E7D32; transition: all 0.2s ease; }
.lifestyle-grid-section__btn:hover { background-color: #FFFFFF; color: #2E7D32; border-color: #2E7D32; }
@media (max-width: 768px) {
  .lifestyle-grid-section__main-title { font-size: 1.75rem; }
  .lifestyle-grid-section__subtitle { font-size: 1rem; }
  .lifestyle-grid-section__item-title { font-size: 1.25rem; }
}

/* ===== PAGE: recipes ===== */
.vida-recipes-grid {
  background-color: #FFFFFF;
  color: #121212;
}

.vida-recipes-grid .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #121212;
  position: relative;
}

.vida-recipes-grid .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #2E7D32;
  margin-top: 0.5rem;
}

.vida-recipes-grid .section-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #2E2E2E;
  line-height: 1.7;
}

.vida-recipes-grid .filter-btn {
  background: transparent;
  border: 1px solid #E0E0E0;
  padding: 0.5rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vida-recipes-grid .filter-btn.active {
  background-color: #2E7D32;
  border-color: #2E7D32;
  color: #FFFFFF;
}

.vida-recipes-grid .recipe-card {
  border: 1px solid #E0E0E0;
  border-radius: 0;
  background-color: #FFFFFF;
  transition: border-color 0.3s ease;
}

.vida-recipes-grid .recipe-card:hover {
  border-color: #2E7D32;
}

.vida-recipes-grid .recipe-img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

.vida-recipes-grid .recipe-card:hover .card-img-top {
  transform: scale(1.05);
}

.vida-recipes-grid .recipe-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.vida-recipes-grid .badge-category {
  background-color: rgba(255, 255, 255, 0.9);
  color: #2E7D32;
  padding: 0.25rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.vida-recipes-grid .meta-info {
  display: flex;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #555555;
}

.vida-recipes-grid .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #121212;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.vida-recipes-grid .card-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #2E2E2E;
  line-height: 1.6;
}

.vida-recipes-grid .btn-vida-primary {
  background-color: #2E7D32;
  color: #FFFFFF;
  border-radius: 0;
  padding: 0.8rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  transition: background-color 0.2s ease;
}

.vida-recipes-grid .btn-vida-primary:hover {
  background-color: #1B5E20;
  color: #FFFFFF;
}

.ve-main-comment {
    font-family: 'Inter', sans-serif;
}

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

.ve-comment-author {
    font-family: 'Playfair Display', serif;
    color: #121212;
    font-weight: 700;
}

.ve-comment-meta {
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.ve-comment-content {
    color: #4A4A4A;
    line-height: 1.7;
    font-size: 1.125rem;
}

.ve-action-link {
    color: #2E7D32;
    font-size: 0.875rem;
    transition: color 0s ease;
}

.ve-action-link:hover {
    color: #1B5E20;
    text-decoration: underline !important;
}

.ve-reply-comment {
    font-family: 'Inter', sans-serif;
    margin-top: -1px;
}

.ve-avatar-sm {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.ve-comment-author-sm {
    font-family: 'Playfair Display', serif;
    color: #121212;
    font-weight: 600;
    font-size: 1rem;
}

.ve-comment-content-sm {
    color: #4A4A4A;
    line-height: 1.6;
    font-size: 1rem;
}

.bg-light-subtle {
    background-color: #F9FBF9 !important;
}


/* ===== PAGE TEMPLATE: blood-sugar-list ===== */
.ve-detail-page {
    font-family: 'Inter', sans-serif;
    color: #121212;
}

.ve-detail-hero {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ve-detail-hero h1 {
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ve-rich-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A4A4A;
}

.ve-rich-text p {
    margin-bottom: 1.5rem;
}

.ve-rich-text h2 {
    font-family: 'Playfair Display', serif;
    color: #121212 !important;
}

.ve-action-link {
    font-size: 0.85rem;
    color: #2E7D32 !important;
}

.ve-avatar {
    width: 48px;
    height: 48px;
    background-color: #E8F5E9;
    color: #2E7D32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    border: 1px solid #2E7D32;
}

.ve-sidebar-widget h3 {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

.ve-related-card:hover h4 {
    color: #2E7D32 !important;
}

.ve-submit-comment {
    background-color: #2E7D32 !important;
    border: none !important;
    color: #FFFFFF !important;
    box-shadow: none !important;
}

.ve-submit-comment:hover {
    background-color: #1B5E20 !important;
}

.ve-action-link.active {
    color: #1B5E20 !important;
}

.ve-action-link.active i {
    font-weight: bold;
    color: #1B5E20;
}

@media (max-width: 768px) {
    .ve-detail-hero {
        height: 350px;
    }

    .ve-detail-hero h1 {
        font-size: 1.75rem;
    }

    .ve-article-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== PAGE TEMPLATE: nutrition-list ===== */
.ve-detail-template .ve-hero {
    background-color: #F9FBF9;
    border-bottom: 1px solid #E0E0E0;
}

.ve-detail-template .ve-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #121212;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.ve-detail-template .ve-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4A4A4A;
}

.ve-detail-template .ve-article-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #121212;
}

.ve-detail-template .ve-article-body h2,
.ve-detail-template .ve-article-body h3 {
    font-family: 'Playfair Display', serif;
    color: #121212;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.ve-detail-template .ve-article-body h2 {
    font-size: 2.25rem;
    font-weight: 600;
}

.ve-detail-template .ve-article-body h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

.ve-detail-template .ve-article-body p {
    margin-bottom: 1.5rem;
}

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

.ve-detail-template .ve-article-body li {
    margin-bottom: 0.5rem;
}

.ve-detail-template .ve-sidebar-widget {
    border: 1px solid #E0E0E0;
}

.ve-detail-template .ve-avatar {
    width: 48px;
    height: 48px;
    background-color: #2E7D32;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.ve-detail-template .ve-action-link {
    font-size: 0.85rem;
    color: #2E7D32;
}

.ve-detail-template .ve-action-link:hover {
    color: #1B5E20;
    text-decoration: underline;
}

.ve-detail-template .btn-primary {
    background-color: #2E7D32 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.ve-detail-template .btn-primary:hover {
    background-color: #1B5E20 !important;
}

.ve-detail-template .form-control {
    border-radius: 0;
    border: 1px solid #E0E0E0;
    padding: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.ve-detail-template .form-control:focus {
    border-color: #2E7D32;
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .ve-detail-template .ve-hero__title {
        font-size: 2.25rem;
    }

    .ve-detail-template .ve-sidebar {
        position: static !important;
        margin-top: 3rem;
    }
}

/* ===== PAGE TEMPLATE: habits-list ===== */
.ve-editorial-body {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    color: #121212;
}

.bg-light-green {
    background-color: #F9FBF9;
}

.ve-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #121212;
    line-height: 1.1;
}

.ve-hero-detail .breadcrumb-item+.breadcrumb-item::before {
    content: '|';
    color: #E0E0E0;
}

.ve-article-body {
    line-height: 1.8;
}

.ve-rich-text h2,
.ve-rich-text h3 {
    font-family: 'Playfair Display', serif;
    color: #121212;
    margin-top: 2rem;
}

.ve-rich-text p {
    font-size: 1.125rem;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
}

.ve-custom-list {
    list-style: none;
    padding-left: 0;
}

.ve-custom-list li::before {
    content: '—';
    color: #2E7D32;
    font-weight: bold;
    margin-right: 10px;
}

.ve-blockquote p {
    color: #1B5E20;
}

.ve-sidebar-widget .widget-title {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.ve-related-item:hover .ve-related-info h6 {
    color: #2E7D32 !important;
    text-decoration: underline;
}

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

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

.ve-action-link {
    color: #2E7D32;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.ve-action-link:hover {
    opacity: 0.7;
    color: #1B5E20;
}

.ve-comment-form-container .form-control {
    border-radius: 0;
    border: 1px solid #E0E0E0;
    padding: 0.75rem;
}

.ve-comment-form-container .form-control:focus {
    border-color: #2E7D32;
    box-shadow: none;
}

@media (max-width: 768px) {
    .ve-hero-title {
        font-size: 1.75rem;
    }

    .ve-rich-text p {
        font-size: 1rem;
    }
}

/* ===== PAGE TEMPLATE: lifestyle-list ===== */
.ve-lifestyle-detail {
    font-family: 'Inter', sans-serif;
    color: #121212;
}

.ve-lifestyle-detail h1,
.ve-lifestyle-detail h2,
.ve-lifestyle-detail h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #121212;
}

.ve-hero-section {
    background-color: #F9FBF9;
}

.ve-badge {
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.ve-main-title {
    font-size: 3rem;
    line-height: 1.1;
}

.ve-main-image {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.ve-article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A4A4A;
}

.ve-blockquote {
    border-left: 4px solid #2E7D32 !important;
    background-color: #F9FBF9;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #121212;
}

.ve-sidebar-sticky {
    position: sticky;
}


.ve-avatar {
    width: 48px;
    height: 48px;
    background-color: #2E7D32;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.ve-avatar-sm {
    width: 36px;
    height: 36px;
    background-color: #1B5E20;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.ve-action-link {
    font-size: 0.85rem;
    color: #2E7D32 !important;
    transition: opacity 0.2s;
}

.ve-action-link:hover {
    opacity: 0.7;
}

.ve-reply-comment {
    border-left: 4px solid #2E7D32 !important;
}

@media (max-width: 991.98px) {
    .ve-main-title {
        font-size: 2.25rem;
    }

    .ve-main-image {
        height: 300px;
    }

    .ve-sidebar-sticky {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .ve-main-title {
        font-size: 1.75rem;
    }

    .ve-lead-text {
        font-size: 1rem !important;
    }
}

/* ===== PAGE TEMPLATE: recipes-list ===== */
.ve-editorial-body {
    font-family: 'Inter', sans-serif;
    color: #121212;
    background-color: #FFFFFF;
}

h1,
h2,
h3,
.brand-text,
.vida-footer__title {
    font-family: 'Playfair Display', serif;
}

.vida-equilibrio-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    z-index: 1030;
}

.vida-equilibrio-header .navbar {
    padding: 1rem 0;
}

.vida-equilibrio-header .navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: #121212;
}

.vida-equilibrio-header .js-logo-img {
    max-width: 45px;
    height: auto;
}

.vida-equilibrio-header .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4A4A4A !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.vida-equilibrio-header .nav-link:hover {
    color: #2E7D32 !important;
}

.vida-equilibrio-header .btn-primary {
    background-color: #2E7D32;
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.ve-recipe-hero {
    background-color: #F9FBF9 !important;
    border-bottom: 1px solid #E8F5E9;
}

.ve-author-meta {
    font-size: 0.9rem;
    color: #2E7D32;
}

.ve-date-meta {
    font-size: 0.9rem;
}

.ve-article-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

.ve-recipe-details {
    border-left: 4px solid #2E7D32 !important;
}

.ve-avatar {
    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;
}

.ve-action-link {
    font-size: 0.85rem;
    color: #2E7D32 !important;
}

.ve-sidebar-block {
    border-top: 3px solid #2E7D32 !important;
}

.vida-footer {
    background-color: #F9FBF9;
    border-top: 1px solid #E0E0E0;
    color: #4A4A4A;
}

.vida-footer__link:hover {
    color: #2E7D32;
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    color: #BDBDBD;
}

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

    .ve-hero-img-wrapper img {
        height: 300px !important;
    }
}