/* =========================
   BASE STYLES
========================= */

/* Wrapper */
.home-slider-wrapper {
    position: relative;
}

/* Content stack */
.arm-xr-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Title */
.arm-xr-callout--title {
    font-weight: 500;
    margin: 0;
    color: #e9b43e;
}

/* Link */
.arm-xr-link {
    color: #e9b43e;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

.arm-xr-link:hover {
    color: white;
}

.arm-xr-link span {
    display: block;
    opacity: 0.8;
}

/* Arrow */
.arm-xr-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 18px;
    color: #e9b43e;
    transform: rotate(-45deg);
}

/* =========================
   CALLOUT (DESKTOP CARD)
========================= */

.arm-xr-callout {
    display: none; /* hidden by default (mobile/tablet) */
    position: absolute;
    background: #000;
    color: #e9b43e;
    border: 3px solid #e9b43e;
    border-radius: 22px;
    padding: 60px 20px 20px 20px;
    width: 240px;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    z-index: 30;
    bottom: 40px;
    right: 40px;
}

.arm-xr-callout:hover {
    cursor: pointer;
    background-color: #2b2b2b;
}

/* =========================
   BANNER (MOBILE/TABLET)
========================= */

.arm-xr-banner {
    display: block; /* shown by default */
    background-color: black;
    padding: 10px 20px;
}

.arm-xr-banner .arm-xr-content {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.arm-xr-banner .arm-xr-callout--title,
.arm-xr-banner .arm-xr-link {
    font-size: 16px;
    color: white !important;
}

.arm-xr-banner .arm-xr-callout--title {
    color: #e9b43e !important;
}

.arm-xr-banner .button a {
    font-size: 14px;
    padding: 8px 16px;
}

.arm-xr-banner .button a:hover {
    background-color: white;
    color: black;
}

/* =========================
   LINK RESET INSIDE CALLOUT
========================= */

.arm-xr-content a {
    color: unset !important;
}

/* =========================
   SLIDER FIX
========================= */

.home-slider-wrapper .home-slider.slick-initialized.slick-slider.slick-dotted {
    margin-bottom: 0px;
}

/* =========================
   BREAKPOINTS
========================= */

/* Desktop and up (lg: 992px+) */
@media (min-width: 992px) {
    .arm-xr-callout {
        display: flex;
    }

    .arm-xr-banner {
        display: none;
    }
}

/* Optional refinements */

/* XL */
@media (min-width: 1200px) {
    .arm-xr-callout {
        /* tweak size/spacing if needed */
    }
}

/* XXL */
@media (min-width: 1400px) {
    .arm-xr-callout {
        /* tweak for large displays */
    }
}

@media (max-width: 620px) {
    .arm-xr-banner .arm-xr-link {
        display: none;
    }
}


@media (min-width: 200px) and (max-width: 1499px) {
	.callout-custom {
		display: none !important;
	}
	
	.banner-custom {
		display: block !important;
	}
}