/* Bunt Academy – Stitch Modern (LMS entegrasyonu) */
.bunt-stitch-home {
    font-family: 'Inter', sans-serif;
}

.bunt-stitch-home .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Hero — admin slider_banner (Ana Sayfa Başlığı) */
.bunt-stitch-hero .bunt-stitch-hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.38;
    filter: saturate(0.9);
    transform: scale(1.02);
}

.bunt-stitch-hero .bunt-stitch-hero-overlay {
    background: linear-gradient(
        105deg,
        rgba(11, 13, 69, 0.68) 0%,
        rgba(11, 13, 69, 0.58) 45%,
        rgba(11, 13, 69, 0.52) 100%
    );
}

.bunt-stitch-hero .bunt-stitch-hero-inner {
    max-width: 1240px;
}

.bunt-stitch-hero .bunt-stitch-hero-copy {
    max-width: 34rem;
}

@media (min-width: 1024px) {
    .bunt-stitch-hero .bunt-stitch-hero-copy {
        max-width: none;
        padding-right: 0.5rem;
    }
}

/* Hero — başvuru formu */
.bunt-stitch-hero .bunt-stitch-apply-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow:
        0 4px 6px -1px rgba(11, 13, 69, 0.06),
        0 20px 40px -12px rgba(11, 13, 69, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.85);
    width: 100%;
}

.bunt-stitch-hero .bunt-stitch-apply-card__head {
    margin-bottom: 1.125rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef1f6;
}

.bunt-stitch-hero .bunt-stitch-apply-card__head-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
}

.bunt-stitch-hero .bunt-stitch-apply-card__badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #00B5AD;
    background: rgba(0, 181, 173, 0.1);
    border: 1px solid rgba(0, 181, 173, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
    margin-bottom: 0;
}

.bunt-stitch-hero .bunt-stitch-apply-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B0D45;
    margin: 0;
    line-height: 1.2;
}

.bunt-stitch-hero .bunt-stitch-apply-card__subtitle {
    font-size: 0.75rem;
    color: #5c6370;
    margin: 0;
    line-height: 1.35;
}

.bunt-stitch-hero .bunt-stitch-apply-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.bunt-stitch-hero .bunt-stitch-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem 0.75rem;
}

@media (min-width: 640px) {
    .bunt-stitch-hero .bunt-stitch-form-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bunt-stitch-hero .bunt-stitch-field--message {
        grid-column: 1 / -1;
    }
}

.bunt-stitch-hero .bunt-stitch-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #0B0D45;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.bunt-stitch-hero .bunt-stitch-form-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.bunt-stitch-hero .bunt-stitch-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #1a1d26;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

.bunt-stitch-hero .bunt-stitch-input::placeholder {
    color: #94a3b8;
}

.bunt-stitch-hero .bunt-stitch-input:hover {
    border-color: #cbd5e1;
    background: #fff;
}

.bunt-stitch-hero .bunt-stitch-input:focus {
    outline: none;
    border-color: #00B5AD;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 181, 173, 0.12);
}

.bunt-stitch-hero .bunt-stitch-textarea {
    resize: vertical;
    min-height: 3.75rem;
}

.bunt-stitch-hero .bunt-stitch-captcha {
    transform: none;
    margin: 0;
    min-height: 4.875rem;
}

.bunt-stitch-hero .bunt-stitch-apply-btn {
    width: 100%;
    margin-top: 0;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #00B5AD 0%, #00a399 100%);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 8px 20px -6px rgba(0, 181, 173, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bunt-stitch-hero .bunt-stitch-apply-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -8px rgba(0, 181, 173, 0.5);
    filter: brightness(1.03);
}

.bunt-stitch-hero .bunt-stitch-apply-btn:active {
    transform: translateY(0);
}

.bunt-stitch-hero .bunt-stitch-apply-kvkk {
    margin: 0.75rem 0 0;
    text-align: center;
    font-size: 0.6875rem;
    color: #8b919a;
    line-height: 1.4;
}

.bunt-stitch-home .glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* dynamicContentAppend sarmalayıcı div grid düzenini bozmasın */
.bunt-stitch-home .dynamicData > div {
    display: contents;
}

.bunt-stitch-home .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Kategori filtre sekmeleri – LMS global button stillerini override */
.bunt-stitch-courses-section .bunt-stitch-tabs-wrap {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(196, 198, 207, 0.35);
}

.bunt-stitch-courses-section .bunt-stitch-tabs-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.25rem 0.125rem 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: #00B5AD #eff4ff;
    -webkit-overflow-scrolling: touch;
}

.bunt-stitch-courses-section .bunt-stitch-tabs-scroll::-webkit-scrollbar {
    height: 4px;
}

.bunt-stitch-courses-section .bunt-stitch-tabs-scroll::-webkit-scrollbar-thumb {
    background: #00B5AD;
    border-radius: 4px;
}

.bunt-stitch-courses-section .bunt-stitch-category-tabs {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0.625rem;
    min-width: min-content;
}

.bunt-stitch-courses-section button.bunt-stitch-tab {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    margin: 0 !important;
    padding: 0.625rem 1.375rem !important;
    border-radius: 9999px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.01em;
    white-space: nowrap !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    color: #43474e !important;
    background: #ffffff !important;
    border: 1px solid #dce4ef !important;
    box-shadow: 0 1px 3px rgba(11, 13, 69, 0.06) !important;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease !important;
}

.bunt-stitch-courses-section button.bunt-stitch-tab:hover {
    color: #00B5AD !important;
    background: #f0fdfa !important;
    border-color: #99e8e4 !important;
    box-shadow: 0 2px 8px rgba(0, 181, 173, 0.12) !important;
    transform: translateY(-1px);
}

.bunt-stitch-courses-section button.bunt-stitch-tab.is-active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #00B5AD 0%, #00a39c 100%) !important;
    border-color: #00B5AD !important;
    box-shadow: 0 4px 16px rgba(0, 181, 173, 0.38) !important;
    transform: translateY(-1px);
}

.bunt-stitch-courses-section button.bunt-stitch-tab.is-active:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #00c4bb 0%, #00B5AD 100%) !important;
    border-color: #00B5AD !important;
}

.bunt-stitch-courses-section button.bunt-stitch-tab:focus-visible {
    outline: 2px solid #00B5AD !important;
    outline-offset: 2px !important;
}

@media (max-width: 767px) {
    .bunt-stitch-courses-section button.bunt-stitch-tab {
        padding: 0.5rem 1.125rem !important;
        font-size: 0.8125rem !important;
    }
}

/* Filtre gizleme – Tailwind CDN dinamik .hidden üretmediği için özel sınıf */
.bunt-stitch-is-hidden {
    display: none !important;
}

.bunt-stitch-courses-empty.bunt-stitch-is-hidden {
    display: none !important;
}

.bunt-stitch-course-card.bunt-stitch-limit-hidden {
    display: none !important;
}

.bunt-stitch-courses-grid.is-expanded {
    transition: gap 0.25s ease;
}

.bunt-stitch-course-card.bunt-stitch-reveal {
    animation: bunt-stitch-course-reveal 0.4s ease forwards;
}

@keyframes bunt-stitch-course-reveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bunt-stitch-courses-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.bunt-stitch-courses-more-wrap.bunt-stitch-is-hidden {
    display: none !important;
}

.bunt-stitch-courses-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10rem;
    padding: 0.75rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0B0D45;
    background: #ffffff;
    border: 2px solid #0B0D45;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bunt-stitch-courses-more-btn:hover {
    background: #0B0D45;
    color: #ffffff;
    transform: translateY(-1px);
}

.bunt-stitch-courses-more-btn:focus-visible {
    outline: 2px solid #00B5AD;
    outline-offset: 2px;
}

/* Kurs kartları */
.bunt-stitch-courses-grid {
    align-items: stretch;
}

.bunt-stitch-course-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid rgba(196, 198, 207, 0.35);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(11, 13, 69, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease;
}

.bunt-stitch-course-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 181, 173, 0.35);
    box-shadow: 0 20px 40px rgba(11, 13, 69, 0.12);
}

.bunt-stitch-course-card.has-discount {
    border-color: rgba(186, 26, 26, 0.15);
}

.bunt-stitch-course-card.has-discount:hover {
    border-color: rgba(186, 26, 26, 0.28);
    box-shadow: 0 20px 40px rgba(186, 26, 26, 0.1);
}

.bunt-stitch-card-media {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(145deg, #eff4ff 0%, #dce9ff 100%);
}

.bunt-stitch-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bunt-stitch-course-card:hover .bunt-stitch-card-media img {
    transform: scale(1.06);
}

.bunt-stitch-card-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 13, 69, 0.35) 100%);
    pointer-events: none;
}

.bunt-stitch-card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    z-index: 2;
}

.bunt-stitch-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bunt-stitch-badge--discount {
    color: #fff;
    background: linear-gradient(135deg, #e53935 0%, #ba1a1a 100%);
}

.bunt-stitch-badge--free {
    color: #fff;
    background: linear-gradient(135deg, #00B5AD 0%, #008f88 100%);
}

.bunt-stitch-badge--popular {
    color: #0B0D45;
    background: #fff;
}

.bunt-stitch-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem 1.5rem 1.375rem;
}

.bunt-stitch-card-category {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00B5AD;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bunt-stitch-card-title {
    display: block;
    margin: 0 0 0.625rem;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0B0D45 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}

.bunt-stitch-card-title:hover {
    color: #00B5AD !important;
}

.bunt-stitch-card-desc {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #43474e !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.75em;
    flex-grow: 0;
}

.bunt-stitch-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(196, 198, 207, 0.35);
}

.bunt-stitch-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0b1c30;
}

.bunt-stitch-card-rating .material-symbols-outlined {
    font-size: 1.125rem;
    color: #00B5AD;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.bunt-stitch-card-students {
    font-size: 0.8125rem;
    color: #74777f;
}

.bunt-stitch-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.bunt-stitch-card-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.bunt-stitch-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.125rem;
}

.bunt-stitch-price-old {
    font-size: 0.875rem;
    font-weight: 500;
    color: #74777f !important;
    text-decoration: line-through;
    text-decoration-color: #ba1a1a;
    text-decoration-thickness: 2px;
}

.bunt-stitch-price-save {
    display: inline-flex;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #ba1a1a;
    background: #ffebee;
}

.bunt-stitch-price {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0B0D45 !important;
}

.bunt-stitch-price--sale {
    color: #ba1a1a !important;
}

.bunt-stitch-price--free {
    font-size: 1.5rem;
    color: #00B5AD !important;
}

.bunt-stitch-price-note {
    font-size: 0.75rem;
    color: #74777f;
}

a.bunt-stitch-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.375rem !important;
    flex-shrink: 0;
    padding: 0.75rem 1.25rem !important;
    border-radius: 0.75rem !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #ffffff !important;
    background: #0B0D45 !important;
    border: none !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(11, 13, 69, 0.2) !important;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
}

a.bunt-stitch-card-btn:hover {
    background: #00B5AD !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 181, 173, 0.35) !important;
}

a.bunt-stitch-card-btn .material-symbols-outlined {
    font-size: 1.125rem;
    transition: transform 0.2s ease;
}

a.bunt-stitch-card-btn:hover .material-symbols-outlined {
    transform: translateX(2px);
}

/* YouTube Shorts grid */
.bunt-stitch-shorts-grid {
    align-items: stretch;
}

.bunt-stitch-short-card {
    position: relative;
}

.bunt-stitch-short-frame {
    position: relative;
    aspect-ratio: 9 / 16;
}

.bunt-stitch-short-card:focus-visible .bunt-stitch-short-frame {
    outline: 2px solid #00B5AD;
    outline-offset: 4px;
}

.bunt-stitch-short-card:hover .bunt-stitch-short-play span:last-child {
    transform: scale(1.05);
}

.bunt-stitch-short-play span:last-child {
    transition: transform 0.2s ease;
}

/* Shorts video popup — modal is moved to document.body via JS */
html.bunt-stitch-modal-open,
body.bunt-stitch-modal-open {
    overflow: hidden !important;
}

.bunt-stitch-video-modal {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    margin: 0 !important;
    z-index: 2147483646 !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    pointer-events: none;
}

.bunt-stitch-video-modal.is-open {
    display: flex !important;
    pointer-events: auto;
}

.bunt-stitch-video-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 13, 69, 0.88);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.bunt-stitch-video-modal__dialog {
    position: relative;
    z-index: 2147483647;
    width: min(420px, 92vw);
    max-height: 92vh;
    animation: bunt-stitch-modal-in 0.25s ease;
}

@keyframes bunt-stitch-modal-in {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.bunt-stitch-video-modal__close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 9999px;
    background: #fff;
    color: #0B0D45;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
}

.bunt-stitch-video-modal__close:hover {
    background: #00B5AD;
    color: #fff;
    transform: scale(1.05);
}

.bunt-stitch-video-modal__close:focus-visible {
    outline: 2px solid #00B5AD;
    outline-offset: 2px;
}

.bunt-stitch-video-modal__player {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 1rem;
    overflow: hidden;
    background: #0B0D45;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 4px solid #dce9ff;
}

.bunt-stitch-video-modal__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Testimonials slider */
.bunt-stitch-testimonials-slider {
    padding: 0 2.75rem;
}

.bunt-stitch-testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.bunt-stitch-testimonials-track {
    display: flex;
    will-change: transform;
    transition: transform 0.5s ease;
}

.bunt-stitch-testimonials-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 0 0.5rem;
}

.bunt-stitch-testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    color: #0B0D45;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease, color 0.2s ease;
}

.bunt-stitch-testimonials-nav:hover {
    background: #00B5AD;
    color: #fff;
}

.bunt-stitch-testimonials-nav--prev {
    left: 0;
}

.bunt-stitch-testimonials-nav--next {
    right: 0;
}

.bunt-stitch-testimonials-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.bunt-stitch-testimonials-dot.is-active {
    width: 1.5rem;
    background: #00B5AD;
}

@media (max-width: 767px) {
    .bunt-stitch-testimonials {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .bunt-stitch-testimonials-slider {
        padding: 0 2.25rem;
    }

    .bunt-stitch-testimonials-nav {
        width: 2.25rem;
        height: 2.25rem;
    }

    .bunt-stitch-testimonial-card {
        max-height: 20rem;
        min-height: 0;
        padding: 1.25rem 1.125rem 1rem;
    }

    .bunt-stitch-testimonial-card__head {
        margin-bottom: 0.875rem;
        flex-shrink: 0;
    }

    .bunt-stitch-testimonial-card__scroll {
        flex: 1 1 auto;
        min-height: 0;
        max-height: 10.5rem;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        margin-right: -0.25rem;
        padding-right: 0.35rem;
        position: relative;
    }

    .bunt-stitch-testimonial-card__scroll::after {
        content: '';
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        display: block;
        height: 1.25rem;
        margin-top: -1.25rem;
        pointer-events: none;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 85%);
    }

    .bunt-stitch-testimonial-card__body {
        flex: none;
        font-size: 0.9375rem;
        line-height: 1.55;
        padding-bottom: 0.25rem;
    }

    .bunt-stitch-testimonial-card__scroll::-webkit-scrollbar {
        width: 4px;
    }

    .bunt-stitch-testimonial-card__scroll::-webkit-scrollbar-thumb {
        background: rgba(0, 181, 173, 0.45);
        border-radius: 4px;
    }
}

.bunt-stitch-testimonial-card {
    position: relative;
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(11, 13, 69, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bunt-stitch-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.bunt-stitch-testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.5rem !important;
    color: rgba(0, 181, 173, 0.15);
    pointer-events: none;
}

.bunt-stitch-testimonial-card__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.bunt-stitch-testimonial-card__avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.875rem;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #00B5AD;
}

.bunt-stitch-testimonial-card__avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    border-color: transparent;
}

.bunt-stitch-testimonial-card__meta {
    min-width: 0;
    text-align: left;
}

.bunt-stitch-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.35rem;
}

.bunt-stitch-testimonial-stars .material-symbols-outlined {
    font-size: 1.125rem !important;
    color: #d1d5db;
}

.bunt-stitch-testimonial-stars .material-symbols-outlined.is-filled {
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
    color: #f59e0b;
}

.bunt-stitch-testimonial-card__name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0B0D45;
    margin: 0;
    line-height: 1.3;
}

.bunt-stitch-testimonial-card__role {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #74777f;
    margin: 0.15rem 0 0;
    text-transform: none;
    letter-spacing: 0;
}

.bunt-stitch-testimonial-card__scroll {
    flex: 1 1 auto;
    min-height: 0;
}

.bunt-stitch-testimonial-card__body {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 1rem;
    line-height: 1.65;
    color: #43474e;
    font-style: normal;
}

@media (max-width: 767px) {
    .bunt-stitch-card-media {
        height: 190px;
    }

    .bunt-stitch-card-body {
        padding: 1.25rem;
    }

    .bunt-stitch-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    a.bunt-stitch-card-btn {
        width: 100% !important;
        padding: 0.875rem 1rem !important;
    }
}
