.tabbed-gallery {
    margin-top: 40px;
}

.tabbed-gallery__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.tabbed-gallery__tab {
    border: 1px solid #E3E7F0;
    background: #ffffff;
    color: #7B7FA5;
    font-family: Suisse Intl;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tabbed-gallery__tab.is-active {
    background: #2A7CFF;
    border-color: #2A7CFF;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(42, 124, 255, 0.25);
}

.tabbed-gallery__slider {
    position: relative;
}

.tabbed-gallery__frame {
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #E6ECF7;
    overflow: hidden;
    height: 100%;
}

.tabbed-gallery__frame-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: #F4F7FB;
    border-bottom: 1px solid #E6ECF7;
    height: 50px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #8787AB;
}

.tabbed-gallery__dots {
    display: inline-flex;
    gap: 6px;
}

.tabbed-gallery__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.tabbed-gallery__dot--red {
    background: #FF6B6B;
}

.tabbed-gallery__dot--yellow {
    background: #FFD43B;
}

.tabbed-gallery__dot--green {
    background: #51CF66;
}

.tabbed-gallery__frame-title {
    margin: 0 auto;
    padding-right: 24px;
}

.tabbed-gallery__frame-body {
    padding: 20px;
    background: #ffffff;
}

.tabbed-gallery__image {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    background: #FAFBFF;
    border-radius: 12px;
}

.tabbed-gallery__arrow {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.tabbed-gallery__arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tabbed-gallery .tabbed-gallery__arrow-icon {
    height: 12px;
    width: auto;
}

.tabbed-gallery .splide__arrow--prev .tabbed-gallery__arrow-icon {
    transform: rotate(180deg);
}

.tabbed-gallery .splide__arrows {
    display: flex;
    gap: 6px;
    align-items: center;
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 1;
}

.tabbed-gallery .splide__pagination {
    position: absolute;
    bottom: 16px;
    width: 100%;
    display: flex;
    gap: 6px;
}

.tabbed-gallery .splide__pagination__page {
    background: #D6DDF0;
    opacity: 1;
    border: none;
    height: 8px;
    width: 8px;
    border-radius: 999px;
    transition: width 0.3s, background-color 0.3s;
}

.tabbed-gallery .splide__pagination__page.is-active {
    background-color: #2B7FFF;
    width: 28px;
}



@media screen and (max-width: 900px) {
    .tabbed-gallery__tabs {
        justify-content: flex-start;
    }

    .tabbed-gallery__frame-body {
        padding: 16px;
    }

    .tabbed-gallery__image {
        min-height: 260px;
    }
}

@media screen and (max-width: 600px) {
    .tabbed-gallery {
        padding: 32px 0 48px;
    }

    .tabbed-gallery__tabs {
        gap: 8px;
        margin-bottom: 20px;
    }

    .tabbed-gallery__tab {
        font-size: 12px;
        padding: 8px 14px;
    }

    .tabbed-gallery__image {
        min-height: 200px;
    }

    .tabbed-gallery .splide__pagination {
        bottom: -22px;
    }

    .tabbed-gallery__frame-head {
        height: 30px;
    }

    .tabbed-gallery__dot {
        height: 8px;
        width: 8px;
    }

    .tabbed-gallery__dots {
        gap: 4px;
    }

    .tabbed-gallery .splide__arrows {
        display: none;
    }
}
