/* -- THEME TWEAKS -- */

.site-header {
  padding-inline: clamp(1rem, 0.848rem + 0.758vw, 1.5rem);
}

/* Text Pretty */

p, blockquote, li {
  text-wrap: pretty;
}

p:last-child:last-of-type {
  margin-bottom: 0px;
}


/* -- UTILITIES -- */

/* Line Limits */
.line-limit-3,
.line-limit-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-limit-3 {
  -webkit-line-clamp: 3;
}

.line-limit-2 {
  -webkit-line-clamp: 2;
}


/* -- GP MENU ACCESSIBILITY TWEAK -- */

#site-navigation ul .sub-menu {
  display: block;
}

#site-navigation li:hover .gp-icon svg {
  transform: rotate(180deg);
}

#site-navigation li:hover .sub-menu {
  visibility: visible;
}


/* Mobile Menu Toggle Style */
.main-navigation .menu-toggle {
    font-size: 25px;
		background: none;
}

.main-navigation .menu-toggle:hover {
	background: none;
}


/* WordPress Styles Override */
/* --- Blockquote Styling --- */
blockquote {
  border-left: 4px solid #0073aa;
  padding-left: 1em;
  margin: 1.5em 0;
  color: black;
	font-size: 18px;
  font-style: italic;
  background: #F2F2F2;
	border-radius: 5px;
}

blockquote cite {
  display: block;
  margin-top: 0.5em;
  color: #999;
  font-style: normal;
  font-size: 0.9em;
}







/* Mission Page Styles */

/* Container and General Spacing */
.csb-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.csb-mvv-page {
    color: #444444;
    line-height: 1.6;
    background: #ffffff;
}

/* Header Section */
.csb-mvv-header {
    padding: 80px 0 40px;
    text-align: center;
}

.csb-brand-label {
    color: #ff7b54;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.csb-mvv-header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin: 15px 0;
}

.csb-title-underline {
    width: 60px;
    height: 4px;
    background: #ff7b54;
    margin: 0 auto 25px;
}

/* Mission & Vision Cards */
.csb-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.csb-mv-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 5px solid #2c3e50;
    text-align: left;
}

.csb-mv-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.csb-mv-card h3 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Milestones Section */
.csb-journey-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.csb-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.csb-section-title h2 {
    font-size: 32px;
    color: #2c3e50;
}

.csb-milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.csb-milestone-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border-bottom: 3px solid #ff7b54;
    text-align: center;
}

.csb-milestone-year {
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
}

.csb-milestone-item p {
    font-size: 14px;
    color: #777777;
}

/* Footer CTA */
.csb-mvv-footer-cta {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.csb-mvv-footer-cta h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.csb-orange-btn {
    background: #ff7b54;
    color: #ffffff;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    transition: background 0.3s ease;
}

.csb-orange-btn:hover {
    background: #e66a45;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .csb-mv-grid { grid-template-columns: 1fr; }
    .csb-mvv-header h1 { font-size: 32px; }
}



/* Commitments Section Styling */
.csb-commitments-section {
    padding: 100px 0;
    background: #ffffff;
}

.csb-commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.csb-commitment-card {
    padding: 35px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Matches your testimonial shadow */
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.csb-commitment-card:hover {
    border-color: #ff7b54;
    transform: translateY(-5px);
}

.csb-check-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.csb-commitment-card h4 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.csb-commitment-card p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Specific styling for odd-numbered grid items to center them if they wrap */
@media (min-width: 992px) {
    .csb-commitments-grid :last-child:nth-child(odd) {
        grid-column: span 1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .csb-commitments-section {
        padding: 60px 0;
    }
    .csb-commitment-card {
        padding: 25px;
    }
}




/* Final CTA Section Styling */
.csb-final-cta {
    padding: 100px 0;
    background-color: #f4f7f9; /* Soft blue-gray tint */
    text-align: center;
    border-top: 1px solid #e0e6ed;
}

.csb-cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.csb-cta-tagline {
    color: #ff7b54;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.csb-final-cta h2 {
    color: #2c3e50;
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 700;
}

.csb-cta-info {
    margin-bottom: 40px;
}

.csb-cta-info p {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}

.csb-cta-subtext {
    font-size: 16px !important;
    color: #666666 !important;
    font-weight: 400 !important;
}

/* Button Group */
.csb-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.csb-main-btn {
    background-color: #ff7b54;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 123, 84, 0.2);
    display: inline-block;
}

.csb-main-btn:hover {
    background-color: #e66a45;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 123, 84, 0.3);
}

.csb-outline-btn {
    background-color: transparent;
    color: #2c3e50;
    padding: 18px 40px;
    border: 2px solid #2c3e50;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.csb-outline-btn:hover {
    background-color: #2c3e50;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .csb-final-cta {
        padding: 60px 20px;
    }
    
    .csb-final-cta h2 {
        font-size: 24px;
    }
    
    .csb-cta-actions {
        flex-direction: column;
    }
    
    .csb-main-btn, .csb-outline-btn {
        width: 100%;
        box-sizing: border-box;
    }
}

/* End of Mission Page */















