/* casestudies2-hero.css */

.csb-hero {
    padding-top: 120px;
    padding-bottom: 100px;
    background-color: #070707;
}

/* --- 1. HEADER (Synced with .cs-hero-header) --- */
.csb-hero-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
}

.csb-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 72px;
    color: #FFFFFF;
    margin-bottom: 32px;
    max-width: 1100px;
}

.csb-description {
    font-family: 'Albert Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 40px;
}

/* --- 2. DIVIDERS & METADATA (Identical to Template A) --- */
.cs-divider-h { border: none; height: 1px; background-color: #242424; margin-bottom: 40px; }
.cs-divider-v { width: 1px; height: 48px; background-color: #242424; }

.cs-metadata {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.meta-item { display: flex; flex-direction: column; gap: 8px; }

.meta-label {
    font-family: 'Albert Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.meta-value {
    font-family: 'Albert Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #A0A0A0;
}

/* --- 3. CINEMATIC IMAGE --- */
.csb-hero-image-wrapper { margin: 80px 0; }

.csb-placeholder {
    width: 100%;
    background-color: #1A1A1A;
    border-radius: 60px;
    overflow: hidden;
    display: block;
}

/* Fixed Aspect Ratio: 1200x554 */
.csb-hero-box-v2 { 
    aspect-ratio: 1180 / 554; 
}

.csb-placeholder img { 
    width: 100%; height: 100%; 
    object-fit: cover; 
}

.cs-section-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.csb-text-content p {
    font-family: 'Albert Sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Inline Yellow Links */
.csb-text-content a {
    color: #FFD771; /* Branded Yellow for inline links */
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

.csb-text-content a:hover { 
    border-bottom: 1px solid #FFD771; 
}

/* --- 5. LINK GROUP (Identical to Results Footer) --- */

.case-study-link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-study-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Albert Sans', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.link-icon {
    stroke: #FFFFFF;
    opacity: 0.8;
}

.yellow-url {
    color: #FFC534; /* Bright Yellow */
    text-decoration: none;
    font-family: 'Albert Sans', sans-serif;
    font-size: 18px;
    width: fit-content;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
    word-break: break-all; /* Ensures long URLs don't break on mobile */
}

.yellow-url:hover { border-bottom: 1px solid #FFC534; }



/* --- SPECIFIC FOR POINTERS IN WWL --- */

/* Scoped styles for the WWL Context Section */
.wwl-pointer-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Balanced vertical spacing */
}

.wwl-pointer-list li {
    font-family: 'Albert Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
    position: relative;
    padding-left: 24px; /* Space for the custom bullet */
}

/* Creating a custom high-precision bullet to match the logistics theme */
.wwl-pointer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #00FF88; /* Brand accent color */
    border-radius: 2px;
}

.wwl-pointer-list strong {
    font-weight: 600;
    color: #FFFFFF;
}

/* --- Text Animation Essentials --- */
.line-mask {
    overflow: hidden;
    display: block;
}