@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

/* ==================== COMMON TYPOGRAPHY ==================== */
.head {
    font-family: "Source Sans 3", sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #B84110;
}

.subhead {
    font-family: "Source Sans 3", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #034B9F;
}

.text {
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #262626;
    line-height: 1.7;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #B84110 0%, #EDB600 100%);
    border-radius: 2px;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    background: url("../img/breadcrumb-bg.jpg");
    background-size: cover;
    padding: 80px 0;
}

.breadcrumb h1 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #FFFFFF;
}

/* ==================== UTILITIES ==================== */
.bg-cream {
    background: #FFF4EA;
}

.bg-white {
    background: #FFFFFF;
}

/* ==================== IMAGE STYLES ==================== */
.obj-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.obj-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.obj-image-accent {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EDB600 0%, #B84110 100%);
    border-radius: 12px;
    z-index: -1;
}

.obj-image-accent-right {
    left: auto;
    right: -10px;
    bottom: -10px;
}

/* ==================== KEY INITIATIVES: FIXED ICONS ==================== */
.strength-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}

.strength-item::before {
    content: "";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 4px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* Fixing icon color/display issues by using a more stable background implementation */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23B84110'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

/* ==================== STAKEHOLDER FEEDBACK ==================== */
.opp-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.opp-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}

.opp-item::before {
    content: "";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23034B9F'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ==================== SIMPLE BULLET LIST ==================== */
.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}

.activity-item::before {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: #B84110;
    border-radius: 50%;
}

/* ==================== COMMITMENT BANNER ==================== */
.vm-vision {
    position: relative;
    background: linear-gradient(135deg, #034B9F 0%, #023d74 100%);
    overflow: hidden;
}



.vm-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
}

.vm-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.vm-badge-line {
    width: 60px;
    height: 3px;
    background: #EDB600;
    border-radius: 2px;
}

.vm-title {
    font-family: "Source Sans 3", sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 2px;
}

.vm-text {
    font-family: "Source Sans 3", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.8;
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .opp-list-grid {
        grid-template-columns: 1fr;
    }

    .vm-content {
        padding: 40px 25px;
    }

    .breadcrumb {
        padding: 60px 20px;
    }
}

@media (max-width: 575.98px) {
    .vm-badge {
        gap: 12px;
    }
}