.elementor-4689 .elementor-element.elementor-element-a7a2662{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top:0px;margin-bottom:0px;}.elementor-4689 .elementor-element.elementor-element-a7a2662 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-4689 .elementor-element.elementor-element-a7a2662.elementor-section{padding:0px 0px 0px 0px;}.elementor-4689 .elementor-element.elementor-element-bab1ffa.elementor-section{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-61567b6 */:root {
    /* General Carousel Theme Variables (from your CTA cards) */
    --font-primary-cards: 'Poppins', sans-serif;
    --font-secondary-cards: 'Roboto Slab', serif;
    --color-primary-cards: #00aeb9;
    --color-secondary-cards: #2575fc;
    --card-bg-cards: #ffffff; /* Keep this for internal use or if other elements need it */
    --card-shadow-cards: rgba(0, 0, 0, 0.1); /* Keep this for internal use */
    --card-shadow-hover-cards: rgba(0, 0, 0, 0.2); /* Keep this for internal use */
    --text-light-cards: #f8f9fa;
    --text-dark-cards: #343a40;
    --text-muted-cards: #6c757d;
    --border-radius-card-cards: 16px; /* Keep this for internal use */
    --border-radius-button-cards: 8px;

    /* Specific Image Carousel Variables */
    --image-item-width: 280px; /* Width of each image item */
    --image-item-margin: 15px; /* Margin between image items (on each side) */
    --image-item-active-scale: 1.05; /* Scale factor for the active image */
    --image-item-inactive-opacity: 0.3; /* Opacity for inactive images */

    /* Original Carousel-specific theme (adapted to match new style) */
    --arrow-color: var(--color-primary-cards); 
    --arrow-bg: rgba(255, 255, 255, 0.8);
    --arrow-hover-bg: var(--color-primary-cards);
    --arrow-hover-color: var(--text-light-cards);
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8; /* Light background */
}

/* Main Carousel Container (Viewport) */
.carousel-container {
    width: 100%;
    max-width: 900px; /* Adjusted max-width to allow more items */
    height: 400px; /* Fixed height for the overall container */
    position: relative;
    background-color: transparent; /* Changed to transparent */
    border-radius: var(--border-radius-card-cards); /* Keep border-radius for consistency */
    box-shadow: none; /* Removed shadow */
    overflow: hidden; /* Important for the sliding effect */
    padding-bottom: 30px; /* Space for the dots */
    margin: 50px auto; /* Centered horizontally, added top/bottom margin for spacing */
    user-select: none; /* Prevent text selection */
    min-width: 300px; /* Added min-width to prevent squishing on very small screens */
}

/* Inner container for images, handles the translateX transform */
.carousel-image-container {
    display: flex;
    height: calc(100% - 30px); /* Adjust height to accommodate dots */
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth transform */
    padding: 0 var(--image-item-margin); /* Padding for the container to show partial items */
    box-sizing: border-box;
    align-items: center; /* Vertically center images */
}

/* Individual Image Item Styling */
.carousel-image-item {
    flex-shrink: 0; /* Prevents items from shrinking */
    width: var(--image-item-width); /* Fixed width for each item */
    height: 100%; /* Occupy full height of the container */
    margin: 0 var(--image-item-margin); /* Margin on both sides for spacing */
    display: flex;
    justify-content: center;
    align-items: center;
    
    opacity: var(--image-item-inactive-opacity); /* Default faded state */
    transform: scale(1); /* Default scale */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transitions */
    
    background-color: transparent; /* Changed to transparent */
    border-radius: 8px; /* Slightly rounded corners for images themselves */
    overflow: hidden; /* Hide anything spilling out of image bounds */
}

/* Active Image Item Styling */
.carousel-image-item.active {
    opacity: 1; /* Fully visible */
    transform: scale(var(--image-item-active-scale)); /* Enlarged state */
    z-index: 2; /* Bring active item to front if there's overlap from scale */
    box-shadow: none; /* REMOVED: Subtle shadow for active image */
}

/* Image Styling within the item */
.carousel-image-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Scales the image to fit without cropping */
    display: block;
    border-radius: 8px; /* Match item border-radius */
}

/* Carousel Arrows (Styled like CTA Card arrows) */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: var(--arrow-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 20px;
    font-weight: bold;
    color: var(--arrow-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* Shadow from CTA cards */
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    user-select: none;
}
.carousel-arrow:hover:not(.disabled) {
    background-color: var(--arrow-hover-bg);
    color: var(--arrow-hover-color);
}
.carousel-arrow:focus {
    outline: 2px solid var(--color-secondary-cards); /* Focus color from CTA cards */
    outline-offset: 2px;
}
.prev-arrow {
    left: 10px;
}
.next-arrow {
    right: 10px;
}
.carousel-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Carousel Marker Dots (Styled like CTA Card markers) */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-muted-cards); /* Matching CTA card dot color */
    opacity: 0.6; /* Slight opacity by default */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
}

.dot.active {
    background-color: var(--color-primary-cards); /* Active color from CTA cards */
    opacity: 1;
    transform: scale(1.2);
}
.dot:hover:not(.active) {
    background-color: var(--color-secondary-cards); /* Hover color from CTA cards */
}

/* Media queries for responsiveness */
@media (max-width: 960px) {
    :root {
        --image-item-width: 260px; /* Slightly smaller for tablets */
        --image-item-margin: 12px;
    }
    .carousel-container {
        max-width: 800px;
    }
}
@media (max-width: 768px) {
    :root {
        --image-item-width: 200px; /* Even smaller for smaller tablets */
        --image-item-margin: 10px;
    }
    .carousel-container {
        max-width: 600px;
        height: 320px;
    }
    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    .carousel-image-container {
        padding: 0 var(--image-item-margin); /* Adjust padding with new margin */
    }
}
@media (max-width: 580px) {
    :root {
        --image-item-width: 80vw; /* On small screens, make it relative to viewport */
        --image-item-margin: 8px;
    }
    .carousel-container {
        max-width: 95vw; /* Almost full width */
        height: 300px; /* A bit shorter */
        border-radius: 8px; /* Slightly smaller border-radius */
    }
    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .prev-arrow { left: 5px; }
    .next-arrow { right: 5px; }
    .carousel-image-item.active {
        transform: scale(1.03); /* Slightly less aggressive scale on small screens */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fc7541e *//* --- Global Variables --- */
/* Re-using and extending variables from your previous code for consistency */
:root {
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto Slab', serif;
    --color-primary: #00aeb9; /* Often used for primary accents, gradients start */
    --color-secondary: #2575fc; /* Often used for secondary accents, gradients end */
    --color-give-text: #05AEB9; /* Specific color for titles in the right section */
    --section-bg: #ffffff;
    --text-dark: #343a40;
    --text-muted: #6c757d;
    --border-radius-large: 16px;
    --border-radius-small: 8px;
    --soft-shadow: rgba(0, 0, 0, 0.15); /* Slightly stronger shadow for the box */
}

/* --- Body and General Page Styles --- */
body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for the whole page */
}

/* --- General Section Wrapper --- */
.give-section-wrapper {
    max-width: 1200px; /* Overall content width */
    margin: 40px auto; /* Center the section with vertical spacing */
    padding: 30px;
    background-color: var(--section-bg);
    border-radius: var(--border-radius-large);
    box-sizing: border-box; /* Include padding in width/height */
}

/* --- Introduction Blocks Styling (Sections 1 & 2) --- */
.intro-block {
    text-align: center;
    margin-bottom: 50px;
}

.intro-block:last-of-type {
    margin-bottom: 60px; /* More space before the two-column layout */
}

.intro-block h1 {
    font-family: var(--font-secondary);
    font-size: 2.8em;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.intro-block p {
    font-size: 1.1em;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 30px auto; /* Added bottom margin here for spacing before embed */
    line-height: 1.8;
}

/* --- Breeze Embed Container Styling --- */
/* Note: You may not see these styles fully if Breeze loads its own iframe with conflicting styles */
#breeze_giving_embed {
    max-width: 500px; /* Constrain embed width for better appearance */
    margin: 0 auto; /* Center the embed within its parent */
    border-radius: var(--border-radius-large); /* Apply border-radius to the embed container */
    overflow: hidden; /* Ensures border-radius applies cleanly */
    box-shadow: 0 4px 20px var(--soft-shadow); /* Applied shadow ONLY to the embed */
}

/* --- Two-Column Layout Styling (Section 3) --- */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 60px; /* Space between columns */
    align-items: flex-start; /* Align columns to the top */
}

/* --- Left Column Styling --- */
.left-column h1 {
    font-family: var(--font-secondary);
    font-size: 2.2em;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.left-column h2 {
    font-family: var(--font-primary);
    font-size: 1.1em;
    font-weight: 400; /* Regular weight for main text */
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

.left-column .cta-text {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    display: block; /* Make the text take its own line */
}

.left-column .cta-text a {
    color: var(--color-primary);
    text-decoration: none; /* No default underline */
    font-weight: 700;
    transition: color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

/* Underline effect for links */
.left-column .cta-text a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 2px;
    left: 0;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.left-column .cta-text a:hover::after {
    width: 100%;
}

.left-column .cta-text a:active::after {
    background: var(--color-secondary); /* Change underline color on active */
}

/* --- Right Column Styling - Legacy Lanes --- */
.right-column {
    background-color: #f4f7f8; /* Slightly different background for visual separation */
    padding: 30px;
    border-radius: var(--border-radius-large);
}

.legacy-lane-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1); /* Dashed separator */
    display: flex;
    flex-direction: column;
}

.legacy-lane-item:last-of-type {
    border-bottom: none; /* No border for the last item */
    margin-bottom: 30px; /* Space before the final paragraph */
}

.legacy-lane-item h3 {
    font-family: var(--font-secondary);
    font-size: 1.6em;
    color: var(--color-give-text); /* The specific #05AEB9 color */
    margin-top: 0;
    margin-bottom: 5px;
    position: relative;
    padding-left: 25px; /* Space for a potential icon/marker */
}

/* Little fun touch: a circular marker for each legacy lane */
.legacy-lane-item h3::before {
    content: '•'; /* A bullet point or small circle */
    font-size: 2em; /* Make it larger than text */
    color: var(--color-give-text);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0; /* Adjust vertical alignment */
}

.legacy-lane-item p {
    font-size: 0.95em;
    color: var(--text-muted);
    margin: 0;
    padding-left: 25px; /* Align with h3 content */
}

.legacy-team-info {
    font-size: 0.9em;
    color: var(--text-dark);
    font-style: italic;
    text-align: center;
    background-color: #e6f6f7; /* Light background for this note */
    border-left: 4px solid var(--color-primary); /* Accent border */
    padding: 15px 20px;
    border-radius: var(--border-radius-small);
    margin-top: 20px;
}

/* --- Responsive Design Media Queries --- */

/* For screens up to 992px (e.g., tablets) */
@media (max-width: 992px) {
    .give-section-wrapper {
        margin: 30px auto;
        padding: 25px;
    }
    .intro-block h1 {
        font-size: 2.4em;
    }
    .intro-block p {
        font-size: 1em;
    }
    .two-column-layout {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        gap: 40px;
    }
    .left-column h1 {
        font-size: 1.8em;
    }
    .left-column h2 {
        font-size: 1em;
    }
    .right-column {
        padding: 25px;
    }
    .legacy-lane-item h3 {
        font-size: 1.4em;
    }
}

/* For screens up to 768px (e.g., smaller tablets, large phones) */
@media (max-width: 768px) {
    .give-section-wrapper {
        margin: 20px 15px; /* More margin on very small screens */
        padding: 20px;
    }
    .intro-block h1 {
        font-size: 2em;
    }
    .intro-block p {
        font-size: 0.95em;
    }
    .left-column h1 {
        font-size: 1.6em;
    }
    .left-column h2 {
        font-size: 0.95em;
    }
    .left-column .cta-text, .legacy-lane-item p {
        font-size: 0.9em;
    }
    .legacy-lane-item h3 {
        font-size: 1.2em;
        padding-left: 20px;
    }
    .legacy-lane-item h3::before {
        font-size: 1.8em;
    }
    .legacy-lane-item p {
        padding-left: 20px;
    }
    #breeze_giving_embed {
        max-width: 100%; /* Allow embed to take full width on smaller screens */
    }
}

/* For screens up to 480px (e.g., mobile phones) */
@media (max-width: 480px) {
    .give-section-wrapper {
        margin: 15px 10px;
        padding: 15px;
        border-radius: var(--border-radius-small);
    }
    .intro-block h1 {
        font-size: 1.6em;
    }
    .intro-block p {
        font-size: 0.9em;
    }
}/* End custom CSS */