/* ── Thrive Tabs widget ──────────────────────────────────────── */

.thrive-tabs {
    position: relative;
    width: 100%;
}

/* ── Image area ─────────────────────────────────────────────── */

.thrive-tabs__media-wrap {
    position: relative;
    width: 100%;
    height: 460px;
}

.thrive-tabs__img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 16px 16px 0 0;
}

/* ── Nav bar — overlaid at bottom of image ──────────────────── */

.thrive-tabs__nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
   
    z-index: 2;
}

.thrive-tabs__nav::-webkit-scrollbar {
    display: none;
    
}
.thrive-tabs__nav-inner {
    background: rgba(154, 154, 154, 0.15);
    backdrop-filter: blur(15px);
    max-width: 100%;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px;
    border-radius: 50px;
}

/* ── Tab buttons ────────────────────────────────────────────── */

.thrive-tabs__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px 18px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    transition: background 0.2s ease, color 0.2s ease;
}

.thrive-tabs__btn.is-active {
    background: #ffffff;
    color: #1a2b2b;
}

.thrive-tabs__btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* ── Text panels wrapper ────────────────────────────────────── */

.thrive-tabs__panels {
    position: relative;
    background: #f5f5f0;
    padding: 32px 24px;
    border-radius: 0 0 16px 16px;
    min-height: 60px;
    margin-top: 8px;
}

/* ── Individual text panel ──────────────────────────────────── */

.thrive-tabs__panel {
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    position: absolute;
    inset: 32px 24px auto;
    text-align: center;
    color: #192830;
    font-weight: 500;
    max-width: 488px;
}

.thrive-tabs__panel.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    inset: auto;
}

/* ── Mobile: таби нижче фото, на повну ширину, горизонтальний скрол ── */
@media (max-width: 767px) {

    .thrive-tabs__nav {
        top: 100%;
        bottom: auto;
        left: 0;
        right: 0;
        justify-content: flex-start;
        overflow: visible;
        padding: 8px 0;
        gap: 0;
    }

    .thrive-tabs__nav-inner {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 6px;
        width: 100%;
        border-radius: 50px;
    }

    .thrive-tabs__nav-inner::-webkit-scrollbar {
        display: none;
    }

    .thrive-tabs__panels {
        margin-top: 56px;
    }
}
@media (max-width: 575px) {
	.thrive-tabs__media-wrap {
		padding: 0 20px;
	}
	.thrive-tabs__panels {
		margin: 54px 20px 0;
	}
	.thrive-tabs__nav {
		width: 100%;
    	overflow-x: auto;
	}
	.thrive-tabs__nav-inner {
		margin: 0 20px;
		min-width: fit-content;
    	max-width: fit-content;
	}
}

