:root {
    --gold-primary: #C5A059;
    --gold-dark: #A37F3F;
    --gold-light: #F4EFE3;
    --slate-dark: #2B2E3A;
    --slate-medium: #4A4E5D;
    --slate-light: #F8F9FA;
    --white: #FFFFFF;
}

/* Hero Banner Styling */
.hero-banner {
    background: linear-gradient(135deg, #1E2129 0%, var(--slate-dark) 100%);
    color: var(--white);
    padding: 200px 0 100px;
    border-bottom: 4px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.text-gold {
    color: var(--gold-primary);
}

.bg-gold-light {
    background-color: var(--gold-light);
}

/* Objective Cards */
.objective-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--gold-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 100%;
}

.objective-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-left-color: var(--gold-dark);
}

.card-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

/* Image Mask and Effects */
.img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.img-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--slate-dark);
    color: var(--white);
    padding: 12px 20px;
    border-left: 3px solid var(--gold-primary);
    border-radius: 0 4px 4px 0;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Highlight Section */
.pivotal-role-box {
    background-color: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
}