/* =========================================
   CATEGORY LEADERSHIP SECTION
========================================= */
.category-leadership-section {
    padding: 160px 0;
    background-color: var(--bg-light, #F6F5F3); /* Soft warm off-white */
    width: 100%;
    box-sizing: border-box;
}

/* 2-Column Symmetrical Grid for Wide Screens */
.leadership-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 100px; /* Vertical gap, Horizontal gap */
    width: 100%;
}

/* Intro Title Styling */
.leadership-main-title {
    font-family: var(--font-logo, sans-serif);
    font-weight: 900;
    font-size: clamp(2.5rem, 4.5vw, 3rem);
    line-height: 1.1;
    letter-spacing: -2px;
    color: #000000;
    margin-bottom: 20px;
}

.leadership-subtitle {
    font-family: var(--font-nav, sans-serif);
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 420px;
}

/* Pillar Content Blocks */
.leadership-pillar {
    position: relative;
    padding-left: 40px; /* Space for absolute vertical dividers */
}

.pillar-title {
    font-family: var(--font-logo, sans-serif);
    font-weight: 800;
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.pillar-subtitle {
    font-family: var(--font-nav, sans-serif);
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pillar-list li {
    font-family: var(--font-nav, sans-serif);
    font-weight: 500;
    color: #333333;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

/* Matches diagonal up-right arrow style (↗) */
.list-arrow {
    width: 8px;
    height: auto;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Orange Vertical Left Divider Line */
.has-left-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; 
    bottom: 0;
    width: 3.5px;
    background-color: var(--brand-orange, #FF6404);
}

/* =========================================================
   --- RESPONSIVENESS (CATEGORY LEADERSHIP SYSTEM) ---
========================================================= */

/* Tablets & Medium Screens */
@media (max-width: 991px) {
    .category-leadership-section {
        padding: 80px 0;
    }

    /* Stacks columns vertically to prevent text clipping */
    .leadership-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .leadership-intro {
        text-align: center;
        margin-bottom: 10px;
    }

    .leadership-main-title {
        font-size: 2.6rem;
        margin-bottom: 15px;
    }

    .leadership-subtitle {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Stacks cards cleanly on mobile with horizontal separation */
    .leadership-pillar {
        padding-left: 0;
        padding-bottom: 35px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    /* Removes separator from final element */
    .leadership-pillar:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Hides vertical lines in single-column layout */
    .has-left-divider::before {
        display: none !important;
    }
}

/* Mobile Screens */
@media (max-width: 575px) {
    .category-leadership-section {
        padding: 60px 0;
    }

    .leadership-main-title {
        font-size: 2.1rem;
        letter-spacing: -1.5px;
    }

    .pillar-title {
        font-size: 1.3rem;
    }
}