.aea-hero-slider-wrap {
    box-sizing: border-box;
    width: 100%;
}

.aea-hero-slider-layout-full {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

.aea-hero-slider-layout-contained {
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
}

.aea-hero-slider-height-auto .aea-hero-slider,
.aea-hero-slider-height-auto .aea-hero-slider .swiper-wrapper,
.aea-hero-slider-height-auto .aea-hero-slider .swiper-slide,
.aea-hero-slider-height-auto .aea-hero-slide {
    height: auto;
    min-height: 0;
}

.aea-hero-slider-height-auto .aea-hero-picture,
.aea-hero-slider-height-auto .aea-hero-image {
    height: auto;
    inset: auto;
    position: relative;
}

.aea-hero-slider-height-auto .aea-hero-picture {
    width: 100%;
}

.aea-hero-slider-height-auto .aea-hero-image {
    object-fit: contain;
}

.aea-hero-slider-height-auto .aea-hero-slide-inner {
    inset: 0;
    position: absolute;
}

.aea-hero-slider {
    --aea-hero-overlay-color: #000000;
    --aea-hero-overlay-opacity: 35%;
    --aea-hero-heading-color: #ffffff;
    --aea-hero-description-color: #ffffff;
    --aea-hero-button-color: #111827;
    --aea-hero-button-bg: #ffffff;
    background: #111827;
    height: 72vh;
    min-height: 320px;
    overflow: hidden;
    width: 100%;
}

.aea-hero-slider .swiper-wrapper,
.aea-hero-slider .swiper-slide,
.aea-hero-slide {
    height: 100%;
}

.aea-hero-slider .swiper-slide {
    overflow: hidden;
}

.aea-hero-slide {
    box-sizing: border-box;
    color: #ffffff;
    isolation: isolate;
    overflow: hidden;
    position: relative;
}

.aea-hero-picture,
.aea-hero-image,
.aea-hero-overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.aea-hero-picture {
    display: block;
    z-index: 0;
}

.aea-hero-image {
    display: block;
    object-fit: cover;
    object-position: center;
}

.aea-hero-overlay {
    background: var(--aea-hero-overlay-color);
    opacity: var(--aea-hero-overlay-opacity);
    pointer-events: none;
    z-index: 1;
}

.aea-hero-slide-inner {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    padding: 80px 40px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.aea-hero-content {
    max-width: 720px;
    width: 100%;
}

.aea-hero-content-align-left .aea-hero-content {
    text-align: left;
}

.aea-hero-content-align-center .aea-hero-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.aea-hero-content-align-right .aea-hero-content {
    margin-left: auto;
    text-align: right;
}

.aea-hero-heading {
    color: var(--aea-hero-heading-color);
    font-size: clamp(34px, 6vw, 76px);
    font-weight: 700;
    line-height: 1.04;
    margin: 0 0 16px;
}

.aea-hero-description {
    color: var(--aea-hero-description-color);
    font-size: 18px;
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 760px;
}

.aea-hero-content-align-center .aea-hero-description {
    margin-left: auto;
    margin-right: auto;
}

.aea-hero-content-align-right .aea-hero-description {
    margin-left: auto;
}

.aea-hero-button {
    align-items: center;
    background: var(--aea-hero-button-bg);
    border: 0 solid transparent;
    border-radius: 6px;
    color: var(--aea-hero-button-color);
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    line-height: 1.2;
    min-height: 44px;
    padding: 14px 24px;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.aea-hero-button:hover,
.aea-hero-button:focus {
    color: var(--aea-hero-button-color);
    transform: translateY(-1px);
}

.aea-hero-slider-button {
    align-items: center;
    background: rgba(17, 24, 39, 0.58);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 34px;
    height: 44px;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.18s ease, color 0.18s ease;
    width: 44px;
    z-index: 5;
}

.aea-hero-slider-button:hover,
.aea-hero-slider-button:focus {
    background: rgba(17, 24, 39, 0.82);
    color: #ffffff;
}

.aea-hero-slider-prev {
    left: 20px;
}

.aea-hero-slider-next {
    right: 20px;
}

.aea-hero-slider .aea-hero-slider-pagination {
    bottom: 22px;
}

.aea-hero-slider-pagination .swiper-pagination-bullet {
    background: #ffffff;
    height: 10px;
    opacity: 0.45;
    width: 10px;
}

.aea-hero-slider-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 767px) {
    .aea-hero-slider {
        min-height: 360px;
    }

    .aea-hero-slide-inner {
        padding: 64px 24px;
    }

    .aea-hero-heading {
        font-size: 34px;
    }

    .aea-hero-description {
        font-size: 16px;
    }

    .aea-hero-slider-button {
        height: 38px;
        width: 38px;
    }

    .aea-hero-slider-prev {
        left: 12px;
    }

    .aea-hero-slider-next {
        right: 12px;
    }
}

.aea-reviews-slider {
    --aea-review-card-bg: transparent;
    --aea-review-card-border: transparent;
    --aea-review-card-border-width: 0;
    --aea-review-card-min-height: 0;
    --aea-review-card-radius: 0;
    --aea-review-card-padding: 0;
    --aea-review-card-gap: 10px;
    --aea-review-card-shadow: none;
    --aea-review-short-desc-color: inherit;
    --aea-review-short-desc-font-size: inherit;
    --aea-review-short-desc-font-weight: inherit;
    --aea-review-short-desc-line-height: inherit;
    --aea-review-desc-color: inherit;
    --aea-review-desc-font-size: inherit;
    --aea-review-desc-font-weight: inherit;
    --aea-review-desc-line-height: inherit;
    --aea-review-name-color: inherit;
    --aea-review-name-font-size: inherit;
    --aea-review-name-font-weight: inherit;
    --aea-review-location-color: inherit;
    --aea-review-location-font-size: inherit;
    --aea-review-rating-color: #f59e0b;
    --aea-review-rating-empty-color: #d1d5db;
    --aea-review-accent: #2563eb;
    --aea-review-arrow-bg: transparent;
    --aea-review-arrow-border: transparent;
    --aea-review-arrow-border-width: 0;
    --aea-review-arrow-color: inherit;
    --aea-review-arrow-shadow: none;
    --aea-review-arrow-size: auto;
    --aea-review-pagination: #2563eb;
    overflow: hidden;
    width: 100%;
}

.aea-reviews-slider .swiper-wrapper {
    align-items: stretch;
    padding: 20px 0 34px;
}

.aea-reviews-slider .swiper-slide {
    display: flex;
    height: auto;
}

.aea-reviews-slider .aea-review-card {
    align-items: center;
    background-color: var(--aea-review-card-bg);
    border: var(--aea-review-card-border-width) solid var(--aea-review-card-border);
    border-radius: var(--aea-review-card-radius);
    box-shadow: var(--aea-review-card-shadow);
    box-sizing: border-box;
    color: inherit;
    display: flex;
    height: 100%;
    min-height: var(--aea-review-card-min-height);
    overflow: hidden;
    padding: var(--aea-review-card-padding);
    position: relative;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
    width: 100%;
}

.aea-reviews-slider a.aea-review-card {
    cursor: pointer;
}

.aea-reviews-slider:not(.aea-reviews-preset-custom) a.aea-review-card:hover {
    transform: translateY(-3px);
}

.aea-reviews-slider .aea-review-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: var(--aea-review-card-gap);
    width: 100%;
}

.aea-reviews-slider .aea-review-short-desc {
    color: var(--aea-review-short-desc-color);
    font-size: var(--aea-review-short-desc-font-size);
    font-weight: var(--aea-review-short-desc-font-weight);
    line-height: var(--aea-review-short-desc-line-height);
    margin: 0;
}

.aea-reviews-slider .aea-review-desc {
    color: var(--aea-review-desc-color);
    font-size: var(--aea-review-desc-font-size);
    font-weight: var(--aea-review-desc-font-weight);
    line-height: var(--aea-review-desc-line-height);
    margin: 0;
    max-width: 100%;
}

.aea-reviews-slider .aea-review-rating {
    color: var(--aea-review-rating-empty-color);
    display: block;
    font-size: 18px;
    line-height: 1;
    margin: 0;
    width: 100%;
}

.aea-reviews-slider .aea-review-rating-stars {
    display: inline-block;
    width: max-content;
}

.aea-reviews-slider .aea-review-star-filled {
    color: var(--aea-review-rating-color);
}

.aea-reviews-slider .aea-review-star-empty {
    color: var(--aea-review-rating-empty-color);
}

.aea-reviews-slider .aea-review-name {
    color: var(--aea-review-name-color);
    font-size: var(--aea-review-name-font-size);
    font-weight: var(--aea-review-name-font-weight);
    line-height: 1.25;
    margin: 8px 0 0;
}

.aea-reviews-slider .aea-review-location {
    color: var(--aea-review-location-color);
    display: block;
    font-size: var(--aea-review-location-font-size);
    line-height: 1.4;
}

.aea-reviews-slider .swiper-button-next::after,
.aea-reviews-slider .swiper-button-prev::after {
    content: none !important;
    display: none !important;
}

.aea-reviews-slider .swiper-button-next,
.aea-reviews-slider .swiper-button-prev {
    align-items: center;
    background-color: var(--aea-review-arrow-bg);
    border: var(--aea-review-arrow-border-width) solid var(--aea-review-arrow-border);
    border-radius: 999px;
    box-shadow: var(--aea-review-arrow-shadow);
    color: var(--aea-review-arrow-color);
    display: flex;
    height: var(--aea-review-arrow-size);
    justify-content: center;
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    width: var(--aea-review-arrow-size);
}

.aea-reviews-slider:not(.aea-reviews-preset-custom) .swiper-button-next:hover,
.aea-reviews-slider:not(.aea-reviews-preset-custom) .swiper-button-prev:hover {
    transform: translateY(-50%) scale(1.04);
}

.aea-reviews-slider .swiper-button-next svg,
.aea-reviews-slider .swiper-button-prev svg {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
}

.aea-reviews-slider .swiper-button-next svg path,
.aea-reviews-slider .swiper-button-prev svg path {
    transition: fill 0.15s ease;
}

.aea-reviews-slider .swiper-pagination-bullet {
    background: var(--aea-review-pagination);
    opacity: 0.28;
}

.aea-reviews-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.aea-reviews-preset-modern {
    --aea-review-card-bg: #ffffff;
    --aea-review-card-border: #e5e7eb;
    --aea-review-card-border-width: 1px;
    --aea-review-card-min-height: 220px;
    --aea-review-card-radius: 8px;
    --aea-review-card-padding: 32px;
    --aea-review-card-gap: 12px;
    --aea-review-card-shadow: 0 18px 44px rgba(20, 24, 40, 0.12);
    --aea-review-short-desc-color: #2563eb;
    --aea-review-short-desc-font-size: 13px;
    --aea-review-short-desc-font-weight: 700;
    --aea-review-short-desc-line-height: 1.4;
    --aea-review-desc-color: #344054;
    --aea-review-desc-font-size: 16px;
    --aea-review-desc-font-weight: 400;
    --aea-review-desc-line-height: 1.7;
    --aea-review-name-color: #101828;
    --aea-review-name-font-size: 18px;
    --aea-review-name-font-weight: 700;
    --aea-review-location-color: #667085;
    --aea-review-location-font-size: 14px;
    --aea-review-rating-color: #f59e0b;
    --aea-review-rating-empty-color: #d1d5db;
    --aea-review-accent: #2563eb;
    --aea-review-arrow-bg: #2563eb;
    --aea-review-arrow-border: rgba(18, 24, 38, 0.08);
    --aea-review-arrow-border-width: 1px;
    --aea-review-arrow-color: #ffffff;
    --aea-review-arrow-shadow: 0 10px 24px rgba(20, 24, 40, 0.12);
    --aea-review-arrow-size: 42px;
    --aea-review-pagination: #2563eb;
}

.aea-reviews-preset-modern .aea-review-content::before {
    color: var(--aea-review-accent);
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    height: 30px;
    line-height: 0.8;
}

.aea-reviews-preset-modern a.aea-review-card:hover {
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 22px 52px rgba(20, 24, 40, 0.16);
}

.aea-reviews-preset-minimal {
    --aea-review-card-bg: #ffffff;
    --aea-review-card-border: transparent;
    --aea-review-card-border-width: 0;
    --aea-review-card-min-height: 180px;
    --aea-review-card-radius: 0;
    --aea-review-card-padding: 18px 8px;
    --aea-review-card-gap: 8px;
    --aea-review-card-shadow: none;
    --aea-review-short-desc-color: #111827;
    --aea-review-short-desc-font-size: 13px;
    --aea-review-short-desc-font-weight: 700;
    --aea-review-short-desc-line-height: 1.4;
    --aea-review-desc-color: #394150;
    --aea-review-desc-font-size: 16px;
    --aea-review-desc-font-weight: 400;
    --aea-review-desc-line-height: 1.7;
    --aea-review-name-color: #111827;
    --aea-review-name-font-size: 18px;
    --aea-review-name-font-weight: 700;
    --aea-review-location-color: #6b7280;
    --aea-review-location-font-size: 14px;
    --aea-review-rating-color: #f59e0b;
    --aea-review-rating-empty-color: #d1d5db;
    --aea-review-arrow-bg: transparent;
    --aea-review-arrow-border-width: 0;
    --aea-review-arrow-color: #111827;
    --aea-review-arrow-shadow: none;
    --aea-review-arrow-size: 42px;
    --aea-review-pagination: #111827;
}

.aea-reviews-preset-minimal .aea-review-card {
    justify-content: center;
    text-align: center;
}

.aea-reviews-preset-minimal a.aea-review-card:hover {
    box-shadow: none;
    transform: none;
}

.aea-reviews-preset-clean {
    --aea-review-card-bg: #fbfcfe;
    --aea-review-card-border: #dbe3ef;
    --aea-review-card-border-width: 1px;
    --aea-review-card-min-height: 220px;
    --aea-review-card-radius: 8px;
    --aea-review-card-padding: 30px;
    --aea-review-card-gap: 11px;
    --aea-review-card-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
    --aea-review-short-desc-color: #0f766e;
    --aea-review-short-desc-font-size: 13px;
    --aea-review-short-desc-font-weight: 700;
    --aea-review-short-desc-line-height: 1.4;
    --aea-review-desc-color: #475569;
    --aea-review-desc-font-size: 16px;
    --aea-review-desc-font-weight: 400;
    --aea-review-desc-line-height: 1.7;
    --aea-review-name-color: #0f172a;
    --aea-review-name-font-size: 18px;
    --aea-review-name-font-weight: 700;
    --aea-review-location-color: #64748b;
    --aea-review-location-font-size: 14px;
    --aea-review-rating-color: #0f766e;
    --aea-review-rating-empty-color: #cbd5e1;
    --aea-review-accent: #0f766e;
    --aea-review-arrow-bg: #0f766e;
    --aea-review-arrow-border: rgba(18, 24, 38, 0.08);
    --aea-review-arrow-border-width: 1px;
    --aea-review-arrow-color: #ffffff;
    --aea-review-arrow-shadow: 0 10px 24px rgba(20, 24, 40, 0.12);
    --aea-review-arrow-size: 42px;
    --aea-review-pagination: #0f766e;
}

.aea-reviews-preset-clean .aea-review-card::before {
    background: var(--aea-review-accent);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.aea-reviews-preset-clean a.aea-review-card:hover {
    border-color: rgba(15, 118, 110, 0.35);
}

.aea-reviews-preset-bold {
    --aea-review-card-bg: #111827;
    --aea-review-card-border: rgba(255, 255, 255, 0.14);
    --aea-review-card-border-width: 1px;
    --aea-review-card-min-height: 250px;
    --aea-review-card-radius: 8px;
    --aea-review-card-padding: 34px;
    --aea-review-card-gap: 14px;
    --aea-review-card-shadow: 0 20px 46px rgba(17, 24, 39, 0.28);
    --aea-review-short-desc-color: #fbbf24;
    --aea-review-short-desc-font-size: 13px;
    --aea-review-short-desc-font-weight: 800;
    --aea-review-short-desc-line-height: 1.4;
    --aea-review-desc-color: #e5e7eb;
    --aea-review-desc-font-size: 17px;
    --aea-review-desc-font-weight: 600;
    --aea-review-desc-line-height: 1.7;
    --aea-review-name-color: #ffffff;
    --aea-review-name-font-size: 18px;
    --aea-review-name-font-weight: 700;
    --aea-review-location-color: #fbbf24;
    --aea-review-location-font-size: 14px;
    --aea-review-rating-color: #fbbf24;
    --aea-review-rating-empty-color: rgba(255, 255, 255, 0.28);
    --aea-review-accent: #fbbf24;
    --aea-review-arrow-bg: #fbbf24;
    --aea-review-arrow-border: rgba(18, 24, 38, 0.08);
    --aea-review-arrow-border-width: 1px;
    --aea-review-arrow-color: #111827;
    --aea-review-arrow-shadow: 0 10px 24px rgba(20, 24, 40, 0.12);
    --aea-review-arrow-size: 42px;
    --aea-review-pagination: #fbbf24;
}

.aea-reviews-preset-bold .aea-review-name {
    letter-spacing: 0;
    text-transform: uppercase;
}

.aea-reviews-preset-bold a.aea-review-card:hover {
    border-color: rgba(251, 191, 36, 0.45);
    box-shadow: 0 24px 56px rgba(17, 24, 39, 0.34);
}

@media (max-width: 1024px) {
    .aea-reviews-slider:not(.aea-reviews-preset-custom) .aea-review-card {
        min-height: min(var(--aea-review-card-min-height), 200px);
    }
}

@media (max-width: 767px) {
    .aea-reviews-slider .swiper-wrapper {
        padding: 14px 0 38px;
    }

    .aea-reviews-slider:not(.aea-reviews-preset-custom) .aea-review-card {
        min-height: auto;
        padding: 22px;
    }

    .aea-reviews-slider:not(.aea-reviews-preset-custom) .aea-review-desc {
        --aea-review-desc-font-size: 15px;
        line-height: 1.65;
    }

    .aea-reviews-slider:not(.aea-reviews-preset-custom) .aea-review-name {
        --aea-review-name-font-size: 16px;
    }

    .aea-reviews-slider:not(.aea-reviews-preset-custom) {
        --aea-review-arrow-size: 36px;
    }

    .aea-reviews-preset-modern .aea-review-content::before {
        font-size: 42px;
        height: 24px;
    }
}

/* ==========================================================================
   Property Cards Slider Widget
   ========================================================================== */
.aea-property-cards-wrap {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.aea-property-cards-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.aea-property-card {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none !important;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

a.aea-property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.aea-property-card .aea-property-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 0;
}

.aea-property-card .aea-property-card-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    max-width: none;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.35s ease;
}

.aea-property-card-bg-fallback {
    background-color: #2c3036;
}

.aea-property-card:hover .aea-property-card-image {
    transform: scale(1.05);
}

.aea-property-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.88) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.aea-property-card-content {
    position: relative;
    z-index: 2;
    padding: 32px 24px 28px;
    text-align: center;
    box-sizing: border-box;
}

.aea-property-card-title {
    margin: 0 0 10px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.aea-property-card-meta {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Controls: Nav Arrows & Pagination Dots */
.aea-property-cards-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin-top: 28px;
    box-sizing: border-box;
}

.aea-property-navigation-layout-spread .aea-property-cards-controls {
    justify-content: space-between;
}

.aea-property-navigation-layout-spread .aea-property-cards-pagination {
    flex: 1 1 auto;
    justify-content: center;
}

.aea-property-navigation-layout-compact .aea-property-cards-controls {
    width: auto;
}

.aea-property-cards-prev,
.aea-property-cards-next {
    width: 48px;
    height: 48px;
    min-width: 44px;
    min-height: 44px;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid rgba(184, 157, 103, 0.45);
    border-radius: 50% !important;
    outline: none;
    padding: 0 !important;
    margin: 0;
    cursor: pointer;
    color: #b89d67;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 0;
    box-sizing: border-box;
    box-shadow: 0 6px 18px rgba(28, 25, 20, 0.1);
    touch-action: manipulation;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.aea-property-cards-prev svg,
.aea-property-cards-next svg {
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    flex: 0 0 auto;
    pointer-events: none;
}

.aea-property-cards-prev:hover,
.aea-property-cards-next:hover,
.aea-property-cards-prev:focus-visible,
.aea-property-cards-next:focus-visible {
    color: #ffffff;
    background-color: #b89d67;
    border-color: #b89d67;
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(28, 25, 20, 0.16);
}

.aea-property-cards-prev:focus-visible,
.aea-property-cards-next:focus-visible {
    outline: 3px solid rgba(184, 157, 103, 0.35);
    outline-offset: 3px;
}

.aea-property-cards-prev:active,
.aea-property-cards-next:active {
    transform: translateY(0);
}

.aea-property-arrow-style-solid .aea-property-cards-prev,
.aea-property-arrow-style-solid .aea-property-cards-next {
    color: #ffffff;
    background-color: #b89d67;
    border-color: #b89d67;
}

.aea-property-arrow-style-solid .aea-property-cards-prev:hover,
.aea-property-arrow-style-solid .aea-property-cards-next:hover,
.aea-property-arrow-style-solid .aea-property-cards-prev:focus-visible,
.aea-property-arrow-style-solid .aea-property-cards-next:focus-visible {
    background-color: #8e774a;
    border-color: #8e774a;
}

.aea-property-arrow-style-minimal .aea-property-cards-prev,
.aea-property-arrow-style-minimal .aea-property-cards-next {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}

.aea-property-arrow-style-minimal .aea-property-cards-prev:hover,
.aea-property-arrow-style-minimal .aea-property-cards-next:hover,
.aea-property-arrow-style-minimal .aea-property-cards-prev:focus-visible,
.aea-property-arrow-style-minimal .aea-property-cards-next:focus-visible {
    color: #8e774a;
    background-color: rgba(184, 157, 103, 0.12);
    border-color: transparent;
    box-shadow: none;
}

.aea-property-cards-prev.swiper-button-disabled,
.aea-property-cards-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.aea-property-cards-pagination {
    position: static !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.aea-property-cards-pagination .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #dcd6cb;
    opacity: 1 !important;
    margin: 0 !important;
    cursor: pointer;
    transition: background-color 0.2s ease, width 0.2s ease, transform 0.2s ease;
}

.aea-property-cards-pagination .swiper-pagination-bullet-active {
    background-color: #b89d67 !important;
}

.aea-property-pagination-style-dot .aea-property-cards-pagination .swiper-pagination-bullet-active {
    transform: scale(1.2);
}

.aea-property-pagination-style-pill .aea-property-cards-pagination .swiper-pagination-bullet-active {
    width: 24px !important;
    border-radius: 999px !important;
}

.aea-property-cards-pagination.swiper-pagination-fraction {
    color: #615746;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

.aea-property-cards-pagination .swiper-pagination-current {
    color: #b89d67;
}

.aea-property-cards-pagination.swiper-pagination-progressbar {
    position: relative !important;
    align-self: center;
    width: 100% !important;
    max-width: 280px;
    height: 5px;
    background-color: #dcd6cb;
    border-radius: 999px;
    overflow: hidden;
}

.aea-property-cards-pagination .swiper-pagination-progressbar-fill {
    background-color: #b89d67;
    border-radius: inherit;
}

/* Footer & View All Properties Button */
.aea-property-cards-footer {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.aea-property-cards-btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1.5px solid #b89d67;
    background-color: transparent;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none !important;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.aea-property-cards-btn:hover {
    background-color: #b89d67;
    color: #ffffff;
    border-color: #b89d67;
}

@media (max-width: 767px) {
    .aea-property-card {
        height: 380px;
        border-radius: 16px;
    }

    .aea-property-card-title {
        font-size: 19px;
    }

    .aea-property-card-meta {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .aea-property-cards-controls {
        gap: 12px;
    }

    .aea-property-cards-btn {
        padding: 10px 24px;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aea-property-card,
    .aea-property-card-image,
    .aea-property-cards-prev,
    .aea-property-cards-next,
    .aea-property-cards-pagination .swiper-pagination-bullet {
        transition-duration: 0.01ms !important;
    }

    .aea-property-card:hover .aea-property-card-image,
    .aea-property-cards-prev:hover,
    .aea-property-cards-next:hover,
    .aea-property-cards-prev:focus-visible,
    .aea-property-cards-next:focus-visible {
        transform: none;
    }
}

/* ==========================================================================
   Photo Masonry Gallery Widget
   ========================================================================== */
.aea-photo-masonry {
    --aea-photo-masonry-columns: 4;
    --aea-photo-masonry-rows: 2;
    --aea-photo-masonry-row-gap: 16px;
    width: 100%;
    column-count: var(--aea-photo-masonry-columns);
    column-gap: 16px;
    box-sizing: border-box;
}

.aea-photo-masonry-item {
    display: block;
    width: 100%;
    margin: 0 0 var(--aea-photo-masonry-row-gap) !important;
    margin-block-end: var(--aea-photo-masonry-row-gap) !important;
    padding: 0;
    overflow: hidden;
    vertical-align: top;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    box-sizing: border-box;
}

.aea-photo-masonry-item[hidden] {
    display: none !important;
}

.aea-photo-masonry .aea-photo-masonry-image {
    display: block;
    width: 100% !important;
    max-width: none;
    height: auto !important;
    margin: 0;
    border-radius: inherit;
}

/* ==========================================================================
   Destination Cards Slider Widget
   ========================================================================== */
.aea-destination-cards-wrap {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.aea-destination-cards-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.aea-destination-card {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-decoration: none !important;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

a.aea-destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.aea-destination-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

.aea-destination-card-bg-fallback {
    background-color: #2c3036;
}

.aea-destination-card:hover .aea-destination-card-bg {
    transform: scale(1.05);
}

.aea-destination-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 25%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.aea-destination-card-title {
    position: absolute;
    top: 24px;
    right: 20px;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    writing-mode: vertical-rl;
    z-index: 2;
    white-space: nowrap;
}

/* Controls: Nav Arrows & Pagination Dots */
.aea-destination-cards-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin-top: 28px;
    box-sizing: border-box;
}

.aea-destination-navigation-layout-spread .aea-destination-cards-controls {
    justify-content: space-between;
}

.aea-destination-navigation-layout-spread .aea-destination-cards-pagination {
    flex: 1 1 auto;
    justify-content: center;
}

.aea-destination-navigation-layout-compact .aea-destination-cards-controls {
    width: auto;
}

.aea-destination-cards-prev,
.aea-destination-cards-next {
    width: 48px;
    height: 48px;
    min-width: 44px;
    min-height: 44px;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid rgba(184, 157, 103, 0.45);
    border-radius: 50% !important;
    outline: none;
    padding: 0 !important;
    margin: 0;
    cursor: pointer;
    color: #b89d67;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 0;
    box-sizing: border-box;
    box-shadow: 0 6px 18px rgba(28, 25, 20, 0.1);
    touch-action: manipulation;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.aea-destination-cards-prev svg,
.aea-destination-cards-next svg {
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    flex: 0 0 auto;
    pointer-events: none;
}

.aea-destination-cards-prev:hover,
.aea-destination-cards-next:hover,
.aea-destination-cards-prev:focus-visible,
.aea-destination-cards-next:focus-visible {
    color: #ffffff;
    background-color: #b89d67;
    border-color: #b89d67;
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(28, 25, 20, 0.16);
}

.aea-destination-cards-prev:focus-visible,
.aea-destination-cards-next:focus-visible {
    outline: 3px solid rgba(184, 157, 103, 0.35);
    outline-offset: 3px;
}

.aea-destination-cards-prev:active,
.aea-destination-cards-next:active {
    transform: translateY(0);
}

.aea-destination-arrow-style-solid .aea-destination-cards-prev,
.aea-destination-arrow-style-solid .aea-destination-cards-next {
    color: #ffffff;
    background-color: #b89d67;
    border-color: #b89d67;
}

.aea-destination-arrow-style-solid .aea-destination-cards-prev:hover,
.aea-destination-arrow-style-solid .aea-destination-cards-next:hover,
.aea-destination-arrow-style-solid .aea-destination-cards-prev:focus-visible,
.aea-destination-arrow-style-solid .aea-destination-cards-next:focus-visible {
    background-color: #8e774a;
    border-color: #8e774a;
}

.aea-destination-arrow-style-minimal .aea-destination-cards-prev,
.aea-destination-arrow-style-minimal .aea-destination-cards-next {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}

.aea-destination-arrow-style-minimal .aea-destination-cards-prev:hover,
.aea-destination-arrow-style-minimal .aea-destination-cards-next:hover,
.aea-destination-arrow-style-minimal .aea-destination-cards-prev:focus-visible,
.aea-destination-arrow-style-minimal .aea-destination-cards-next:focus-visible {
    color: #8e774a;
    background-color: rgba(184, 157, 103, 0.12);
    border-color: transparent;
    box-shadow: none;
}

.aea-destination-cards-prev.swiper-button-disabled,
.aea-destination-cards-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.aea-destination-cards-pagination {
    position: static !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.aea-destination-cards-pagination .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #dcd6cb;
    opacity: 1 !important;
    margin: 0 !important;
    cursor: pointer;
    transition: background-color 0.2s ease, width 0.2s ease, transform 0.2s ease;
}

.aea-destination-cards-pagination .swiper-pagination-bullet-active {
    background-color: #b89d67 !important;
}

.aea-destination-pagination-style-dot .aea-destination-cards-pagination .swiper-pagination-bullet-active {
    transform: scale(1.2);
}

.aea-destination-pagination-style-pill .aea-destination-cards-pagination .swiper-pagination-bullet-active {
    width: 24px !important;
    border-radius: 999px !important;
}

.aea-destination-cards-pagination.swiper-pagination-fraction {
    color: #615746;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

.aea-destination-cards-pagination .swiper-pagination-current {
    color: #b89d67;
}

.aea-destination-cards-pagination.swiper-pagination-progressbar {
    position: relative !important;
    align-self: center;
    width: 100% !important;
    max-width: 280px;
    height: 5px;
    background-color: #dcd6cb;
    border-radius: 999px;
    overflow: hidden;
}

.aea-destination-cards-pagination .swiper-pagination-progressbar-fill {
    background-color: #b89d67;
    border-radius: inherit;
}

@media (max-width: 767px) {
    .aea-destination-card {
        height: 380px;
        border-radius: 16px;
    }

    .aea-destination-card-title {
        font-size: 11px;
        top: 18px;
        right: 14px;
        letter-spacing: 1.2px;
    }

    .aea-destination-cards-controls {
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aea-destination-card,
    .aea-destination-card-bg,
    .aea-destination-cards-prev,
    .aea-destination-cards-next,
    .aea-destination-cards-pagination .swiper-pagination-bullet {
        transition-duration: 0.01ms !important;
    }

    .aea-destination-card:hover .aea-destination-card-bg,
    .aea-destination-cards-prev:hover,
    .aea-destination-cards-next:hover,
    .aea-destination-cards-prev:focus-visible,
    .aea-destination-cards-next:focus-visible {
        transform: none;
    }
}

/* Split Hero Widget */
.aea-split-hero-wrap {
    box-sizing: border-box;
    width: 100%;
}

.aea-split-hero {
    --aea-split-hero-panel-color: #f4efe6;
    --aea-split-hero-panel-size: 44%;
    --aea-split-hero-panel-fade: 160px;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 420px;
    isolation: isolate;
}

.aea-split-hero-picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.aea-split-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
}

.aea-split-hero-panel {
    --aea-split-hero-offset-x: 0px;
    --aea-split-hero-offset-y: 0px;
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: var(--aea-split-hero-panel-color);
    -webkit-mask-image: linear-gradient(
        to right,
        #000 0,
        #000 calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-panel-fade) + var(--aea-split-hero-offset-x)),
        transparent calc(var(--aea-split-hero-panel-size) + var(--aea-split-hero-offset-x))
    );
    mask-image: linear-gradient(
        to right,
        #000 0,
        #000 calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-panel-fade) + var(--aea-split-hero-offset-x)),
        transparent calc(var(--aea-split-hero-panel-size) + var(--aea-split-hero-offset-x))
    );
}

.aea-split-hero-position-right .aea-split-hero-panel {
    -webkit-mask-image: linear-gradient(
        to left,
        #000 0,
        #000 calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-panel-fade) - var(--aea-split-hero-offset-x)),
        transparent calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-offset-x))
    );
    mask-image: linear-gradient(
        to left,
        #000 0,
        #000 calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-panel-fade) - var(--aea-split-hero-offset-x)),
        transparent calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-offset-x))
    );
}

.aea-split-hero-position-top .aea-split-hero-panel {
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0,
        #000 calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-panel-fade) + var(--aea-split-hero-offset-y)),
        transparent calc(var(--aea-split-hero-panel-size) + var(--aea-split-hero-offset-y))
    );
    mask-image: linear-gradient(
        to bottom,
        #000 0,
        #000 calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-panel-fade) + var(--aea-split-hero-offset-y)),
        transparent calc(var(--aea-split-hero-panel-size) + var(--aea-split-hero-offset-y))
    );
}

.aea-split-hero-position-bottom .aea-split-hero-panel {
    -webkit-mask-image: linear-gradient(
        to top,
        #000 0,
        #000 calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-panel-fade) - var(--aea-split-hero-offset-y)),
        transparent calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-offset-y))
    );
    mask-image: linear-gradient(
        to top,
        #000 0,
        #000 calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-panel-fade) - var(--aea-split-hero-offset-y)),
        transparent calc(var(--aea-split-hero-panel-size) - var(--aea-split-hero-offset-y))
    );
}

.aea-split-hero-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.aea-split-hero-position-right .aea-split-hero-container {
    justify-content: flex-end;
}

.aea-split-hero-position-top .aea-split-hero-container {
    align-items: flex-start;
    justify-content: center;
}

.aea-split-hero-position-bottom .aea-split-hero-container {
    align-items: flex-end;
    justify-content: center;
}

.aea-split-hero-layout-contained .aea-split-hero-container {
    left: 0;
    right: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.aea-split-hero-panel-inner {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 60px;
    box-sizing: border-box;
    text-align: left;
}

.aea-split-hero-top-image {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    width: 100%;
}

.aea-split-hero-top-image img {
    display: block;
    width: 64px;
    height: auto;
}

.aea-split-hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b5824a;
    margin-bottom: 14px;
}

.aea-split-hero-heading {
    margin: 0 0 20px;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
    color: #1f2723;
}

.aea-split-hero-divider {
    width: 48px;
    height: 3px;
    background-color: #b5824a;
    margin-bottom: 22px;
    border-radius: 2px;
}

.aea-split-hero-description {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #4b544e;
}

.aea-split-hero-button {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background-color: #1f3d33;
    padding: 16px 28px;
    border-radius: 2px;
    border-style: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .aea-split-hero {
        min-height: 480px;
    }

    .aea-split-hero-panel-inner {
        max-width: 420px;
        padding: 48px;
    }

    .aea-split-hero-heading {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .aea-split-hero {
        min-height: 560px;
        --aea-split-hero-panel-size: 78%;
        --aea-split-hero-panel-fade: 90px;
    }

    .aea-split-hero-panel-inner {
        max-width: 100%;
        padding: 36px 28px;
    }

    .aea-split-hero-heading {
        font-size: 26px;
    }

    .aea-split-hero-description {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aea-split-hero-button {
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   Download Resources List Widget
   ========================================================================== */
.aea-resources-list {
    --aea-resource-image-width: 84px;
    --aea-resource-image-height: 60px;
    display: grid;
    width: 100%;
    margin: 0;
    padding: 0;
    row-gap: 0;
    list-style: none;
    box-sizing: border-box;
}

.aea-resource-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 18px;
    min-width: 0;
    margin: 0;
    padding: 12px 0;
    box-sizing: border-box;
}

.aea-resource-item-has-image {
    grid-template-columns: var(--aea-resource-image-width) minmax(0, 1fr) auto;
}

.aea-resources-has-dividers .aea-resource-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #ddd6ca;
    pointer-events: none;
}

.aea-resource-media {
    width: 100%;
    height: var(--aea-resource-image-height);
    margin: 0;
    overflow: hidden;
    background-color: #eee9e0;
    box-sizing: border-box;
}

.aea-resource-media .aea-resource-image {
    display: block;
    width: 100% !important;
    max-width: none;
    height: 100% !important;
    margin: 0;
    object-fit: cover;
}

.aea-resource-content {
    min-width: 0;
}

.aea-resource-title {
    margin: 0 0 4px;
    color: #25231f;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.aea-resource-description {
    margin: 0;
    color: #4f4b44;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.aea-resource-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    min-height: 44px;
    padding: 8px 4px;
    color: #806537;
    background-color: transparent;
    border: 0 solid transparent;
    border-radius: 0;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    transition: color 0.2s ease, background-color 0.2s ease;
}

a.aea-resource-download-link:hover,
a.aea-resource-download-link:focus-visible {
    color: #5c4828;
}

a.aea-resource-download-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.aea-resource-download-link-disabled {
    cursor: default;
}

.aea-resource-download-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 0;
    transition: transform 0.2s ease;
}

.aea-resource-download-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

a.aea-resource-download-link:hover .aea-resource-download-icon,
a.aea-resource-download-link:focus-visible .aea-resource-download-icon {
    transform: translateX(3px);
}

a.aea-resource-icon-before:hover .aea-resource-download-icon,
a.aea-resource-icon-before:focus-visible .aea-resource-download-icon {
    transform: translateX(-3px);
}

@media (max-width: 767px) {
    .aea-resources-mobile-compact .aea-resource-item-has-image {
        grid-template-columns: var(--aea-resource-image-width) minmax(0, 1fr);
        column-gap: 14px;
    }

    .aea-resources-mobile-compact .aea-resource-item-has-image .aea-resource-content,
    .aea-resources-mobile-compact .aea-resource-item-has-image .aea-resource-download-link {
        grid-column: 2;
    }

    .aea-resources-mobile-compact .aea-resource-item-has-image .aea-resource-download-link {
        margin-top: 4px;
    }

    .aea-resources-mobile-stacked .aea-resource-item {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 12px;
    }

    .aea-resource-download-link {
        justify-self: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aea-resource-download-link,
    .aea-resource-download-icon {
        transition-duration: 0.01ms !important;
    }

    a.aea-resource-download-link:hover .aea-resource-download-icon,
    a.aea-resource-download-link:focus-visible .aea-resource-download-icon {
        transform: none;
    }
}

.aea-job-cards {
    display: grid;
    grid-template-columns: repeat(var(--aea-job-cards-columns, 3), minmax(0, 1fr));
    column-gap: var(--aea-job-cards-column-gap, 32px);
    row-gap: var(--aea-job-cards-row-gap, 32px);
    width: 100%;
}

.aea-job-card {
    box-sizing: border-box;
}

.aea-job-card-title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
}

.aea-job-card-description {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.6;
}

.aea-job-card-divider {
    border: none;
    border-top: 1px solid rgba(31, 27, 22, 0.15);
    margin: 0 0 20px;
}

.aea-job-card-meta {
    margin: 0 0 16px;
    font-size: 13px;
}

.aea-job-card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
}

.aea-job-card-arrow {
    transition: transform 0.25s ease;
}

.aea-job-card-button:hover .aea-job-card-arrow {
    transform: translateX(4px);
}

@media (max-width: 1023px) {
    .aea-job-cards {
        grid-template-columns: repeat(var(--aea-job-cards-columns, 2), minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .aea-job-cards {
        grid-template-columns: repeat(var(--aea-job-cards-columns, 1), minmax(0, 1fr));
    }
}

/* Mandy Cafe Hero Section */
.aea-value-links {
    width: 100%;
    max-width: 880px;
    margin-inline: auto;
}

.aea-value-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #d8cba8;
    color: #111;
    text-decoration: none !important;
    transition: color .2s ease, padding-inline .2s ease;
}

.aea-value-link:hover,
.aea-value-link:focus,
.aea-value-link:active,
.aea-value-link-label,
.aea-value-link-arrow { text-decoration: none !important; }

.aea-value-link:last-child { border-bottom: 1px solid #d8cba8; }
.aea-value-link-label {
    font-family: Merriweather, Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
}
.aea-value-link-arrow {
    color: #b01843;
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    transition: transform .2s ease;
}
.aea-value-link:hover { color: #b01843; }
.aea-value-link:hover .aea-value-link-arrow { transform: translateX(4px); }

.aea-hero-section {
    --aea-hero-forest: #274724;
    --aea-hero-berry: #9e3046;
    --aea-hero-berry-deep: #7e2236;
    --aea-hero-wheat: #d9af50;
    --aea-hero-overlay-color: #122615;
    --aea-hero-overlay-opacity: 82%;
    position: relative;
    min-height: 650px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: var(--aea-hero-forest);
}

.aea-hero-radio {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none;
}

.aea-hero-slides,
.aea-hero-slide {
    position: absolute;
    inset: 0;
}

.aea-hero-slide {
    display: flex;
    opacity: 0;
    transition: opacity .55s ease;
    pointer-events: none;
}

.aea-hero-radio:nth-of-type(1):checked ~ .aea-hero-slides .aea-hero-slide:nth-child(1),
.aea-hero-radio:nth-of-type(2):checked ~ .aea-hero-slides .aea-hero-slide:nth-child(2),
.aea-hero-radio:nth-of-type(3):checked ~ .aea-hero-slides .aea-hero-slide:nth-child(3),
.aea-hero-radio:nth-of-type(4):checked ~ .aea-hero-slides .aea-hero-slide:nth-child(4),
.aea-hero-radio:first-of-type:checked ~ .aea-hero-slides .aea-hero-slide:first-child {
    opacity: 1;
    pointer-events: auto;
}

.aea-hero-picture,
.aea-hero-image,
.aea-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.aea-hero-picture { display: block; }
.aea-hero-image {
    display: block;
    object-fit: cover;
    object-position: center center;
    font-size: 0;
}

.aea-hero-overlay {
    z-index: 1;
    background: linear-gradient(90deg, color-mix(in srgb, var(--aea-hero-overlay-color) var(--aea-hero-overlay-opacity), transparent), color-mix(in srgb, var(--aea-hero-overlay-color) 35%, transparent));
}

.aea-hero-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: min(calc(100% - 40px), 1200px);
    min-height: inherit;
    height: 100%;
    margin-inline: auto;
    padding: 72px 20px 112px;
    box-sizing: border-box;
}

.aea-hero-content { max-width: 660px; }

.aea-hero-heading {
    max-width: 620px;
    margin: 0 0 22px;
    color: #fff;
    font-family: Merriweather, Georgia, serif;
    font-size: clamp(2.45rem, 5.2vw, 4.7rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.aea-hero-description {
    max-width: 590px;
    margin: 0 0 30px;
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
}

.aea-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.aea-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 25px;
    border: 1px solid transparent;
    border-radius: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.25;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.aea-hero-button:hover { transform: translateY(-2px); }
.aea-hero-button-primary { color: #fff; background: var(--aea-hero-berry); }
.aea-hero-button-primary:hover { color: #fff; background: var(--aea-hero-berry-deep); }
.aea-hero-button-secondary { color: #fff; border-color: rgba(255,255,255,.8); background: transparent; }
.aea-hero-button-secondary:hover { color: var(--aea-hero-forest); border-color: #fff; background: #fff; }

.aea-hero-dots {
    position: absolute;
    z-index: 3;
    right: max(20px, calc((100% - 1200px) / 2));
    bottom: 28px;
    display: flex;
    gap: 8px;
}

.aea-hero-dots label {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.aea-hero-dots label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.aea-hero-dots label::after {
    content: "";
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,.55);
}

.aea-hero-radio:nth-of-type(1):checked ~ .aea-hero-dots label:nth-child(1)::after,
.aea-hero-radio:nth-of-type(2):checked ~ .aea-hero-dots label:nth-child(2)::after,
.aea-hero-radio:nth-of-type(3):checked ~ .aea-hero-dots label:nth-child(3)::after,
.aea-hero-radio:nth-of-type(4):checked ~ .aea-hero-dots label:nth-child(4)::after {
    background: var(--aea-hero-wheat);
}

.aea-hero-radio:focus-visible ~ .aea-hero-dots label { outline: 3px solid var(--aea-hero-wheat); outline-offset: 4px; }

@media (max-width: 767px) {
    .aea-hero-section { min-height: 590px; }
    .aea-hero-content-wrap { min-height: 590px; padding: 48px 20px 88px; }
    .aea-hero-dots { right: 20px; bottom: 22px; }
    .aea-hero-image { object-position: center 35%; }
}

@media (prefers-reduced-motion: reduce) {
    .aea-hero-slide, .aea-hero-button { transition-duration: .01ms !important; }
    .aea-hero-button:hover { transform: none; }
}
