/**
 * Epic Elementor - Frontend Styles
 */

/* ============================================================
   Slick – Pre-initialisation (prevent layout shift / FOUC)
   ============================================================ */

.carousel-feed:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
}

.carousel-feed:not(.slick-initialized) > * {
    flex: 0 0 auto;
}

/* ============================================================
   Embed [Mapbox]
   ============================================================ */

.embed-mapbox__map {
    width: 100%;
    height: 450px;
    border-radius: 8px;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('../fonts/material-symbols-outlined.ttf') format('truetype');
}

@font-face {
    font-family: 'Material Symbols Outlined Filled';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('../fonts/material-symbols-outlined-filled.ttf') format('truetype');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
}

.material-symbols-outlined-filled {
    font-family: 'Material Symbols Outlined Filled';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
}

/* Carousel [Embed Social] — all styles managed in theme custom.css */

/* ============================================================
   Carousel [Service]
   ============================================================ */

.widget--carousel-service {
    width: 100%;
}

/* ── Grid ── */
.widget--carousel-service .container--grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ── Header ── */
.widget--carousel-service .container--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.widget--carousel-service .container--header__content {
    flex: 1;
    min-width: 0;
}

.widget--carousel-service .container--header__heading {
    margin: 0;
}

/* ── Navigation Arrows ── */
.widget--carousel-service .container--header__nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 8px;
}


/* ── Carousel Feed ── */
.widget--carousel-service .container--carousel {
    width: 100%;
    overflow: hidden;
}

.widget--carousel-service .carousel-feed {
    margin: 0 -12px;
}

.widget--carousel-service .carousel-feed .slick-track {
    margin-left: 0;
}

.widget--carousel-service .carousel-feed .slick-slide {
    padding: 0 12px;
}

/* ── Item ── */
.widget--carousel-service .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget--carousel-service .item__image-link {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.widget--carousel-service .item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.widget--carousel-service .item__image-link:hover .item__image {
    transform: scale(1.03);
}

.widget--carousel-service .item__heading {
    margin: 0;
}

.widget--carousel-service .item__heading a {
    text-decoration: none;
    color: inherit;
    transition: color 0.16s ease-out;
}

.widget--carousel-service .item__heading a:hover {
    color: var(--color-blue-700);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .widget--carousel-service .container--header {
        flex-direction: column;
    }

    .widget--carousel-service .container--header__nav {
        padding-top: 0;
    }
}


