/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: WpDevServices
 * Author URI: https://wpdevservices.com/
 * Template: blocksy
 * Text Domain: blocksy
 */

/* ================================================================
 *    CRUNK DJ  CHILD THEME OVERRIDES
 *    Loaded after parent theme + Elementor Kit  higher cascade order
 *    ================================================================ */

/* ----------------------------------------------------------------
 *    FIX 1  PRICING SECTION: White text override
 *    Problem:  Elementor Kit (post-8.css) sets
*              .elementor-kit-8 h2 { color: var(--e-global-color-primary) }
             where --e-global-color-primary = #000000
             Specificity: 0,1,1 (one class + one element)
   Fix:      We raise specificity to 0,2,1 by scoping inside
             .crunk-pricing-wrap so our selector wins.
   ---------------------------------------------------------------- */
.crunk-pricing-wrap h2.crunk-p-title {
	    color: #ffffff;
}

/* Belt-and-suspenders: also cover the elementor-kit-8 context */
.elementor-kit-8 h2.crunk-p-title {
	    color: #ffffff;
}

/* ----------------------------------------------------------------
 *    FIX 2  TIMELINE SECTION: Tighter vertical spacing
 *    Reduces the "OUR STORY" section from ~858px to ~580px of scroll.
 *    - Section outer padding: 100px  60px
 *    - Space between each milestone card: 48px  28px
 *    - Header-to-timeline gap: 60px  36px
 *    ---------------------------------------------------------------- */
.cb-journey {
	    padding-top: 60px;
	    padding-bottom: 60px;
}

.cb-timeline-item {
	    margin-bottom: 28px;
}

.cb-journey-header {
	    margin-bottom: 36px;
}
