.eigs-widget {
    --eigs-gap: 18px;
    --eigs-ratio: 1 / 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 72px 28px 34px;
    background: #f7fbf8;
    isolation: isolate;
}

.eigs-full-bleed {
    width: 100vw;
    max-width: 100vw;
    margin-inline-start: calc(50% - 50vw);
}

.eigs-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.eigs-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 38px;
    direction: rtl;
    text-align: center;
}

.eigs-copy {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.eigs-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #2f9a64;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
}

.eigs-eyebrow span {
    font-size: 9px;
    transform: translateY(-1px);
}

.eigs-heading {
    margin: 0 0 12px;
    color: #0b5b3a;
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.02em;
    text-wrap: balance;
}

.eigs-description {
    max-width: 850px;
    margin-inline: auto;
    color: #5e6f67;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.9;
}

.eigs-section-label {
    display: inline-flex;
    flex: 0 0 auto;
    align-self: center;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 10px 24px;
    color: #fff;
    background: #0c8554;
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(12, 133, 84, .16);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    cursor: default;
    user-select: none;
	margin-top:-30px;
}

.eigs-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-self: center;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 7px 9px 7px 20px;
    color: #fff;
    background: #0c8554;
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(12, 133, 84, .16);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.eigs-button:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 18px 40px rgba(12, 133, 84, .22);
}

.eigs-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .18);
    font-size: 18px;
    line-height: 1;
}

.eigs-source {
    display: none !important;
}

.eigs-carousel-shell,
.eigs-viewport,
.eigs-track {
    width: 100%;
}

.eigs-carousel-shell {
    position: relative;
}

.eigs-viewport {
    position: relative;
    overflow: hidden;
    direction: ltr;
    touch-action: pan-y;
}

.eigs-track {
    display: flex;
    align-items: stretch;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.eigs-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(var(--eigs-columns, 4), minmax(0, 1fr));
    align-items: stretch;
    gap: var(--eigs-gap);
    padding: 1px;
    direction: rtl;
}

.eigs-item {
    position: relative;
    display: block;
    min-width: 0;
    aspect-ratio: var(--eigs-ratio);
    overflow: hidden;
    background: #dfe9e3;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(20, 60, 43, .10);
    text-decoration: none;
    transform: translateZ(0);
}

.eigs-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #071e15;
    opacity: .06;
    pointer-events: none;
    transition: opacity .35s ease;
}

.eigs-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.002);
    transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}

.eigs-item:hover img {
    transform: scale(1.05);
}

.eigs-item:hover::after {
    opacity: .12;
}

.eigs-item-title {
    position: absolute;
    z-index: 3;
    right: 50%;
    left: auto;
    bottom: 14px;
    transform: translateX(50%);
    display: inline-flex;
    width: fit-content;
    max-width: calc(100% - 28px);
    padding: 8px 12px;
    color: #fff;
    background: rgba(5, 42, 27, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    justify-content: center;
}

.eigs-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    min-height: 50px;
    margin-top: 22px;
    direction: rtl;
}

.eigs-navigation {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 9px;
}

.eigs-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #0c8554;
    background: #fff;
    border: 1px solid #d5e6dd;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(20, 60, 43, .06);
    font: inherit;
    font-size: 19px;
    line-height: 1;
    cursor: pointer;
    transition: transform .22s ease, background .22s ease, color .22s ease, opacity .22s ease;
}

.eigs-arrow:hover:not(:disabled) {
    transform: translateY(-2px);
    background: #0c8554;
    color: #fff;
}

.eigs-arrow:disabled {
    opacity: .35;
    cursor: default;
}

.eigs-dots {
    justify-self: center;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.eigs-dots.is-visible {
    display: flex;
}

.eigs-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cbd7d1;
    cursor: pointer;
    transition: width .25s ease, background .25s ease, transform .25s ease;
}

.eigs-dot:hover {
    transform: scale(1.15);
}

.eigs-dot.is-active {
    width: 22px;
    background: #0c8554;
}

.eigs-counter {
    justify-self: start;
    min-width: 72px;
    color: #66736d;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

.eigs-counter:empty {
    display: none;
}

@media (max-width: 1024px) {
    .eigs-widget {
        padding: 58px 22px 30px;
    }

    .eigs-header {
        align-items: center;
        gap: 24px;
        margin-bottom: 30px;
    }

    .eigs-heading {
        font-size: clamp(28px, 4.4vw, 42px);
    }

    .eigs-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .eigs-widget {
        padding: 42px 16px 24px;
    }

    .eigs-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 24px;
    }

    .eigs-copy {
        max-width: none;
    }

    .eigs-eyebrow {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .eigs-heading {
        margin-bottom: 9px;
        font-size: clamp(26px, 8vw, 36px);
    }

    .eigs-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .eigs-button,
    .eigs-section-label {
        align-self: center;
        min-height: 46px;
        font-size: 14px;
    }

    .eigs-button-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .eigs-page {
        gap: 12px;
    }

    .eigs-footer {
        grid-template-columns: auto 1fr auto;
        margin-top: 16px;
    }

    .eigs-navigation {
        justify-self: start;
    }

    .eigs-arrow {
        width: 40px;
        height: 40px;
    }
}
