@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;
}

/* ==================== SECTION 1: STRENGTHS ==================== */
.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: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #034B9F, #0563B8);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    box-shadow: 0 4px 8px rgba(3, 75, 159, 0.25);
}

/* ==================== SECTION 2: WEAKNESSES (Grid Card Style) ==================== */
.weakness-card {
    background: #FFFFFF;
    border-left: 4px solid #EDB600;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* ==================== SECTION 3: OPPORTUNITIES (Stylish 2-Col List) ==================== */
.opp-list-grid {
    display: flex;
    flex-direction: column;
    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: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex-shrink: 0;
    font-size: 24px;
    color: #B84110;
    margin-top: 0px;
}

/* ==================== SECTION 4: CHALLENGES (Horizontal Bars) ==================== */
.challenge-row {
    background: #FFF;
    border-radius: 50px;
    padding: 15px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.challenge-row:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #B84110;
}

.challenge-icon {
    width: 50px;
    height: 50px;
    background: #FFF4EA;
    color: #B84110;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 20px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .opp-list-grid {
        grid-template-columns: 1fr;
    }

    .challenge-row {
        border-radius: 12px;
        padding: 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .challenge-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}