/* Color Variable Configuration Structure */
:root {
    --phobia-forest-dark: #12543d;
    --phobia-sage-medium: #54b296;
    --phobia-mint-accent: #cbf9f0;
    --phobia-heading-green: #00aa8a;
}

/* Global utility extensions */
.layout-sage-bg {
    background-color: var(--phobia-sage-medium) !important;
}

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

.btn-phobia-mint {
    background-color: var(--phobia-mint-accent) !important;
    border-color: var(--phobia-mint-accent) !important;
    transition: all 0.25s ease-in-out;
}

.btn-phobia-mint:hover {
    background-color: #aaece1 !important;
    transform: translateY(-1px);
}

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

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

/* ==========================================================================
   SECTION 1: HERO CONTAINER PROPS (image_c178a5.png)
   ========================================================================== */
.phobia-hero-section {
    background-color: var(--phobia-forest-dark);
}

.phobia-hero-title {
    font-size: 2.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

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

/* Replicates smooth square capsule mask boundaries */
.phobia-hero-mask {
    width: 100%;
    max-width: 460px;
    border-radius: 1.25rem !important;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

/* Abstract Background Shapes behind components */
.phobia-bg-shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.035);
    z-index: 1;
}

.shape-left-organic {
    width: 260px;
    height: 240px;
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
    top: 10%;
    right: 440px;
}

.shape-right-polygon {
    width: 140px;
    height: 140px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    top: 40px;
    right: -20px;
}

/* ==========================================================================
   SECTION 2: ACCENT OVERVIEW PROPS (image_c17883.png)
   ========================================================================== */
.phobia-section-heading {
    font-size: 1.9rem;
}

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

.phobia-subheading {
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

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

.phobia-bullet-list p {
    font-size: 0.98rem;
    line-height: 1.55;
}

/* Pillow rounded masking system for secondary images */
.phobia-overview-mask {
    width: 100%;
    max-width: 420px;
    border-radius: 1.5rem !important;
    overflow: hidden;
}

.phobia-overview-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
}

/* ==========================================================================
   SECTION 3: DATA GRID COMPONENT PROPS (image_c17845.png)
   ========================================================================== */
.phobia-matrix-heading {
    font-size: 1.55rem;
    letter-spacing: -0.01em;
}

.phobia-matrix-intro {
    font-size: 1.02rem;
}

.matrix-bullet {
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.1;
}

.phobia-matrix-list p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Structural Boundaries */
@media (max-width: 991.98px) {
    .phobia-hero-title {
        font-size: 2rem;
    }

    .phobia-bg-shape {
        display: none;
    }
}