/* Color Palette System Variables */
:root {
    --eating-mint-light: #dafaf3;
    --eating-brand-teal: #005a4e;
    --eating-heading-green: #00aa8a;
    --eating-soft-tan: #f5e6d3;
}

/* Base Utility Classes */
.layout-mint-bg {
    background-color: var(--eating-mint-light) !important;
}

.text-brand-dark-teal {
    color: var(--eating-brand-teal) !important;
}

.text-brand-green {
    color: var(--eating-heading-green) !important;
}

.btn-brand-teal {
    background-color: var(--eating-brand-teal) !important;
    border-color: var(--eating-brand-teal) !important;
}

.btn-brand-teal:hover {
    background-color: #00433a !important;
    border-color: #00433a !important;
}

.py-2-5 {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   SECTION 1: HERO VIEW MODULE (image_c183a5.png)
   ========================================================================== */
.eating-hero-section {
    background-color: var(--eating-mint-light);
}

.eating-hero-title {
    font-size: 2.75rem;
    line-height: 1.25;
}

.eating-hero-text {
    font-size: 1.02rem;
    line-height: 1.65;
    text-align: justify;
}

/* Smooth pill-capsule masking configuration */
.eating-hero-mask {
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    border-radius: 1.25rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

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

/* Abstract Shape Backdrops */
.blob-decorator {
    position: absolute;
    background-color: var(--eating-soft-tan);
    opacity: 0.6;
    border-radius: 50%;
    z-index: 1;
}

.blob-top-left {
    width: 220px;
    height: 220px;
    top: -60px;
    left: -40px;
}

.blob-bottom-center {
    width: 140px;
    height: 140px;
    bottom: 20px;
    left: 42%;
}

.blob-top-right {
    width: 90px;
    height: 90px;
    top: -10px;
    right: 80px;
}

/* ==========================================================================
   SECTION 2 & 3: CLINICAL SECTIONS & MATRICES (image_c18367.png & image_c1832e.png)
   ========================================================================== */
.eating-section-heading {
    font-size: 1.85rem;
}

.eating-section-text {
    font-size: 1.02rem;
    line-height: 1.6;
}

.bullet-dot {
    color: #000000;
    font-size: 1.5rem;
    line-height: 1.1;
}

.eating-bullet-list p {
    font-size: 0.98rem;
    line-height: 1.6;
    text-align: justify;
}

/* Replicates the smooth capsule-pillow corners on standard view blocks */
.eating-symptoms-mask {
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    border-radius: 1.5rem !important;
}

.symptoms-cropped-img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
}