/* --- Challenge Block Architecture --- */
.project-challenge-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.narrative-col { flex: 1.5; }
.package-card-col { flex: 1; display: flex; justify-content: flex-end; }

/* --- Narrative Styling --- */
.narrative-h2 { 
    margin: 0 !important; 
    font-size: 32px; 
    font-weight: 800; 
    color: #0f172a; 
    line-height: 1.3;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

/* The Signature Underline */
.narrative-h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: #3b82f6; /* Cora Blue */
}

.narrative-p { 
    margin: 24px 0 0 0 !important; 
    font-size: 16px; 
    color: #475569; 
    line-height: 1.6; 
}

/* --- Package Glass Card --- */
.package-media-wrapper {
    width: 100%;
    max-width: 420px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.package-media-wrapper img { width: 100%; height: auto; display: block; }

.package-glass-overlay {
    position: absolute;
    bottom: 16px; left: 16px; right: 16px;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.glass-text .label { display: block; font-size: 12px; font-weight: 700; opacity: 0.8; }
.glass-text .val { display: block; font-size: 14px; font-weight: 800; }

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}