.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-502873b:#2AA3BC;--e-global-color-3a4ad59:#CAEAF0;--e-global-color-e44cd79:#072231;--e-global-color-f723973:#0A0F0D;--e-global-color-4da6879:#00BFA6;--e-global-color-a30ce29:#F5F7F6;--e-global-color-5d4f625:#B5BAB8;--e-global-color-b33d4e1:#2A2F2D;--e-global-color-70d84fb:#FF6B35;--e-global-color-9bbbd03:#1A1F1D;--e-global-color-d56fec5:#D1D1D1;--e-global-color-57bc1d9:#323E48;--e-global-color-fbedede:#47515A;--e-global-color-d661403:#D0B265;--e-global-color-8b80d45:#EAD8B1;--e-global-color-da086a1:#847A64;--e-global-color-ec05484:#A9B8C5;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7 a{color:#FFFFFF;}.elementor-kit-7 a:hover{color:var( --e-global-color-d661403 );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.cards-row {
    display: flex;
    align-items: stretch;
}

.org-card {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.org-card-title {
    display: flex;
    align-items: flex-start;
}

.org-card .elementor-widget-button {
    margin-top: auto;
}

.org-card-copy {
    display: flex;
    align-items: flex-start;
}

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.org-card {
    position: relative;
    border: none !important;
    border-radius: 20px;
    --border-angle: 0deg;
}

/* Gradient border */
.org-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    pointer-events: none;

    /* Normal state: light at top → dark at bottom */
    background: linear-gradient(
        to bottom,
        #EAD8B1 0%,
        #847A64 100%
    );

    /* Cut out the center so only the border remains */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;

    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
}

/* Hover: change border to rotating gradient */
.org-card:hover::before {
    background: conic-gradient(
        from var(--border-angle),
        #847A64 0deg,
        #847A64 70deg,
        #EAD8B1 140deg,
        #EAD8B1 190deg,
        #847A64 260deg,
        #847A64 360deg
    );

    animation: card-border-spin 2s linear infinite;
}

@keyframes card-border-spin {
    to {
        --border-angle: 360deg;
    }
}

/* =========================
   STATS GRID
   ========================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.stat-tile {
    position: relative;
}

/* Vertical divider on desktop */
.stat-tile:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: linear-gradient(
    to bottom,
    #847A64 0%,
    #C8BA98 35%,
    #EAD8B1 50%,
    #C8BA98 65%,
    #847A64 100%
);
}


/* =========================
   MOBILE
   ========================= */
@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-tile:not(:last-child)::after {
        top: auto;
        bottom: 0;
        left: 10%;
        right: 10%;
        width: auto;
        height: 1px;
        background: linear-gradient(
    to right,
    #847A64 0%,
    #C8BA98 35%,
    #EAD8B1 50%,
    #C8BA98 65%,
    #847A64 100%
);
    }
}

.org-card-carousel .swiper-wrapper {
    align-items: stretch;
}

.org-card-carousel .swiper-slide {
    height: auto;
    display: flex;
}

.org-card-carousel .swiper-slide > * {
    width: 100%;
}

.org-card-carousel .org-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}/* End custom CSS */