.crp-showcase-container {
    width: 100%;
    box-sizing: border-box;
}

.crp-hero-block { 
    width: 100%; 
    border-bottom: 2px solid rgba(0,0,0,0.06); 
    padding-bottom: 35px; 
    margin-bottom: 35px; 
    box-sizing: border-box; 
}

.crp-hero-wrapper { 
    display: flex; 
    gap: 35px; 
    align-items: center; 
    width: 100%; 
}

@media (max-width: 850px) { 
    .crp-hero-wrapper { flex-direction: column; } 
    .crp-hero-img-box { width:100% !important; } 
}

.crp-hero-img-box { 
    width: 55%; 
    aspect-ratio: 16 / 9; 
    overflow: hidden; 
    background: #e2e8f0; 
    border-radius: 6px; 
    position: relative; 
}

.crp-hero-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

.crp-hero-details { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}

.crp-hero-details h2 { 
    margin: 10px 0 15px 0 !important; 
    font-size: 1.85em !important; 
    line-height: 1.35 !important; 
    font-weight: 700 !important; 
}

.crp-hero-details h2 a { 
    text-decoration: none !important; 
    color: #1e293b;
}

.crp-hero-details p { 
    line-height: 1.6; 
    font-size: 0.98em; 
    opacity: 0.85; 
    margin: 0 0 15px 0 !important; 
}

.crp-split-layout { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 40px; 
    width: 100%; 
    box-sizing: border-box; 
    align-items: flex-start; 
}

.crp-split-timeline { 
    flex: 1 1 500px; 
    display: flex; 
    flex-direction: column; 
    gap: 25px; 
}

/* SIDEBAR STICKY ARCHITECTURE SETUP */
.crp-split-sidebar { 
    flex: 0 1 320px; 
    position: sticky; 
    top: 30px; 
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box; 
}

.crp-internal-marketing-card {
    border: 2px dashed var(--crp-dynamic-border) !important; 
    background: var(--crp-dynamic-bg) !important; 
    padding: 25px; 
    border-radius: 8px; 
    box-sizing: border-box;
}

.crp-adsense-sidebar-slot {
    width: 100%;
    min-height: 250px;
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crp-timeline-node { 
    border-left: 2px solid rgba(0,0,0,0.08) !important; 
    padding-left: 20px !important; 
    position: relative !important; 
}

.crp-timeline-node::before { 
    content: ""; 
    width: 8px; 
    height: 8px; 
    background: var(--crp-dynamic-btn); 
    border-radius: 50%; 
    position: absolute; 
    left: -5px; 
    top: 6px; 
}

.crp-timeline-node h4 { 
    margin: 4px 0 6px 0 !important; 
    font-size: 1.15em !important; 
    line-height: 1.4 !important; 
    font-weight: 600 !important; 
}

.crp-timeline-node h4 a { 
    text-decoration: none !important; 
    color: #1e293b;
}

.crp-timeline-node p { 
    font-size: 0.9em; 
    line-height: 1.5; 
    opacity: 0.8; 
    margin: 0 !important; 
}

.crp-split-sidebar h3 { 
    margin: 8px 0 12px 0 !important; 
    font-size: 1.35em !important; 
    line-height: 1.4 !important; 
    font-weight: 700 !important; 
}

.crp-split-sidebar p { 
    font-size: 0.9em; 
    line-height: 1.6; 
    margin-bottom: 20px !important; 
    opacity: 0.85; 
}

.crp-split-sidebar a { 
    display: block; 
    text-align: center; 
    font-weight: bold; 
    background: var(--crp-dynamic-btn); 
    color: #fff !important; 
    text-decoration: none; 
    padding: 12px; 
    border-radius: 4px; 
    font-size: 0.9em; 
    transition: opacity 0.2s; 
}

.crp-split-sidebar a:hover { 
    opacity: 0.9; 
}

@media (max-width: 850px) { 
    /* Keeps the hero section layout clean on small screens */
    .crp-hero-wrapper { flex-direction: column; } 
    .crp-hero-img-box { width:100% !important; } 

    /* ADD THIS: Instantly removes the AdSense element slot container on mobile devices */
    .crp-adsense-sidebar-slot { 
        display: none !important; 
    } 
}

