/* ==========================================
   Section Layout & Slanted Background
   ========================================== */
.leadership-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 100px;
    background-color: #ffffff;
}

.dark-slant-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(286.02deg, #0B3D91 38.02%, #174EA6 61.92%, #0B3D91 74.32%, #174EA6 90.71%, #0B3D91 99.65%);
    /*clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);*/
    z-index: 0;
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

/* ==========================================
   Typography & Headers
   ========================================== */
.section-header {
    margin-bottom: 60px;
}

/* ==========================================
   Card Styling
   ========================================== */
.campaign-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.campaign-card:hover .card-img-wrapper img {
    transform: scale(1.05); /* Slight zoom on hover */
}

.card-content {
    padding: 30px;
}

.card-category {
    font-size: 16px;
    color: var(--color-3);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-01);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-1);
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: var(--font-01);
}

/* ==========================================
   Custom Bullet List (Checkmarks)
   ========================================== */
.custom-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-01);
}

.custom-check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #555555;
    line-height: 1.5;
    font-family: var(--font-02);
}

.custom-check-list li:last-child {
    margin-bottom: 0;
}

.custom-check-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 14px;
    color: #65a147; /* Standard checkmark green. Change to var(--theme-orange) if you want orange checks */
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */
@media (max-width: 991px) {
    .dark-slant-bg {
        height: 100%; /* On mobile, let the dark bg extend to cover stacked cards */
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }
    .main-heading { font-size: 32px; }
}

@media (max-width: 767px) {
    .leadership-section { padding-top: 60px; padding-bottom: 60px; }
    .main-heading { font-size: 28px; }
    .card-img-wrapper { height: 200px; }
}