.tc-f744d2cd-carousel-container {
    width: 100%;
    max-width: 100%;
    position: relative !important;
    overflow: hidden !important;
    padding: 10px 92px 60px !important;
    background: transparent;
    box-sizing: border-box;
    min-height: 260px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.tc-f744d2cd-carousel-container .swiper-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 220px;
    visibility: visible !important;
    opacity: 1 !important;
}

.tc-f744d2cd-carousel-container .swiper-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    height: auto !important;
    box-sizing: border-box;
    flex-shrink: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.tc-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    box-sizing: border-box;
    width: 100%;
}

.tc-card-wrapper {
    --tc-logo-spacing: 18px;
    --tc-logo-justify: center;
    --tc-card-radius-custom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    max-width: 700px;
    width: 100%;
    min-height: 180px;

    background: #ffffff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Card Shapes */
.tc-card-shape-square .tc-card-wrapper {
    border-radius: 0 !important;
}

.tc-card-shape-rounded .tc-card-wrapper {
    border-radius: 14px !important;
}

.tc-card-shape-soft .tc-card-wrapper {
    border-radius: 28px !important;
}

.tc-card-shape-pill .tc-card-wrapper {
    border-radius: 999px !important;
}

.tc-card-shape-ticket .tc-card-wrapper {
    border-radius: 28px 6px 28px 6px !important;
}

.tc-card-shape-blob .tc-card-wrapper {
    border-radius: 30% 70% 63% 37% / 42% 42% 58% 58% !important;
}

.tc-card-shape-custom .tc-card-wrapper {
    border-radius: var(--tc-card-radius-custom) !important;
}

/* Logo / Image Position Around Text */
.tc-card-wrapper.tc-img-pos-top {
    flex-direction: column !important;
}

.tc-card-wrapper.tc-img-pos-bottom {
    flex-direction: column-reverse !important;
}

.tc-card-wrapper.tc-img-pos-left {
    flex-direction: row !important;
}

.tc-card-wrapper.tc-img-pos-right {
    flex-direction: row-reverse !important;
}

/* Content */
.tc-content-wrap {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    box-sizing: border-box;
}

.tc-content,
.tc-name,
.tc-title {
    width: 100%;
    box-sizing: border-box;
}

.tc-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 15px;
    color: #4a5568;
    transition: color 0.3s ease;
}

.tc-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5px;
    color: #2d3748;
    transition: color 0.3s ease;
}

.tc-title {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

/* Logo / Image Holder */
.tc-img-holder {
    display: flex;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* When logo is above or below text, justification means left / center / right */
.tc-card-wrapper.tc-img-pos-top .tc-img-holder,
.tc-card-wrapper.tc-img-pos-bottom .tc-img-holder {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: var(--tc-logo-justify);
}

/* When logo is left or right of text, justification means top / center / bottom */
.tc-card-wrapper.tc-img-pos-left .tc-img-holder,
.tc-card-wrapper.tc-img-pos-right .tc-img-holder {
    width: auto;
    align-self: stretch;
    flex-direction: column;
    align-items: center;
    justify-content: var(--tc-logo-justify);
}

/* Logo spacing around text */
.tc-card-wrapper.tc-img-pos-top .tc-img-holder {
    margin-bottom: var(--tc-logo-spacing);
}

.tc-card-wrapper.tc-img-pos-bottom .tc-img-holder {
    margin-top: var(--tc-logo-spacing);
}

.tc-card-wrapper.tc-img-pos-left .tc-img-holder {
    margin-right: var(--tc-logo-spacing);
}

.tc-card-wrapper.tc-img-pos-right .tc-img-holder {
    margin-left: var(--tc-logo-spacing);
}

.tc-img-wrap {
    --tc-logo-radius-custom: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    flex-shrink: 0;
    padding: 12px;
    border-radius: 0;
    line-height: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

.tc-img-wrap img {
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    object-fit: contain;
    border-radius: inherit;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.tc-img-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    text-decoration: none;
    border-radius: inherit;
}

/* Logo Shapes */
.tc-img-shape-none .tc-img-wrap {
    border-radius: 0 !important;
    overflow: visible !important;
}

.tc-img-shape-square .tc-img-wrap {
    border-radius: 0 !important;
    overflow: hidden !important;
}

.tc-img-shape-rounded .tc-img-wrap {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.tc-img-shape-circle .tc-img-wrap {
    border-radius: 50% !important;
    overflow: hidden !important;
}

.tc-img-shape-pill .tc-img-wrap {
    border-radius: 999px !important;
    overflow: hidden !important;
}

.tc-img-shape-soft_blob .tc-img-wrap {
    border-radius: 34% 66% 62% 38% / 40% 38% 62% 60% !important;
    overflow: hidden !important;
}

.tc-img-shape-ticket .tc-img-wrap {
    border-radius: 18px 4px 18px 4px !important;
    overflow: hidden !important;
}

.tc-img-shape-custom .tc-img-wrap {
    border-radius: var(--tc-logo-radius-custom) !important;
    overflow: hidden !important;
}

/* Logo Aspect Ratio */
.tc-img-ratio-yes .tc-img-wrap img,
.tc-img-ratio-original .tc-img-wrap img {
    height: auto !important;
    object-fit: contain !important;
}

/* Logo Fit Modes */
.tc-img-fit-contain .tc-img-wrap img {
    object-fit: contain !important;
}

.tc-img-fit-cover .tc-img-wrap img {
    object-fit: cover !important;
}

.tc-img-fit-fill .tc-img-wrap img {
    object-fit: fill !important;
}

.tc-img-fit-none .tc-img-wrap img {
    object-fit: none !important;
}

/* Logo Hover */
.tc-img-hover-none .tc-img-wrap:hover img {
    transform: none;
    opacity: 1;
}

.tc-img-hover-zoom .tc-img-wrap:hover img {
    transform: scale(1.08);
}

.tc-img-hover-opacity .tc-img-wrap:hover img {
    opacity: 0.7;
}

.tc-img-hover-lift .tc-img-wrap:hover {
    transform: translateY(-5px);
}

.tc-img-hover-grow_lift .tc-img-wrap:hover {
    transform: translateY(-5px) scale(1.04);
}

/* Text justification support */
.tc-content[style*="justify"],
.tc-content-wrap[style*="justify"] .tc-content {
    text-align-last: left;
}

/* Side placement content behavior */
.tc-card-wrapper.tc-img-pos-left .tc-content-wrap,
.tc-card-wrapper.tc-img-pos-right .tc-content-wrap {
    width: auto;
    flex: 1;
}

/* Navigation Arrows */
.tc-f744d2cd-carousel-container .swiper-button-prev,
.tc-f744d2cd-carousel-container .swiper-button-next {
    position: absolute !important;
    top: 50% !important;
    bottom: auto !important;
    margin: 0 !important;
    transform: translateY(-50%) !important;

    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;

    border-radius: 999px !important;
    background-color: #ffce00 !important;
    color: #111111 !important;
    border: 0 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 50 !important;
    cursor: pointer !important;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease !important;
}

.tc-f744d2cd-carousel-container .swiper-button-prev {
    left: 18px !important;
    right: auto !important;
}

.tc-f744d2cd-carousel-container .swiper-button-next {
    right: 18px !important;
    left: auto !important;
}

.tc-f744d2cd-carousel-container .swiper-button-prev:hover,
.tc-f744d2cd-carousel-container .swiper-button-next:hover {
    transform: translateY(-50%) scale(1.08) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22) !important;
}

.tc-f744d2cd-carousel-container .swiper-button-prev::before,
.tc-f744d2cd-carousel-container .swiper-button-next::before {
    display: none !important;
}

.tc-f744d2cd-carousel-container .swiper-button-prev::after,
.tc-f744d2cd-carousel-container .swiper-button-next::after {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    line-height: 1 !important;
    display: block !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    opacity: 1 !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
}

.tc-f744d2cd-carousel-container .swiper-button-prev::after {
    content: "<" !important;
}

.tc-f744d2cd-carousel-container .swiper-button-next::after {
    content: ">" !important;
}

/* Disabled arrow state */
.tc-f744d2cd-carousel-container .swiper-button-disabled {
    opacity: 0.4 !important;
    pointer-events: none !important;
}

.tc-f744d2cd-carousel-container .swiper-button-disabled::after {
    opacity: 1 !important;
    color: #111111 !important;
}

/* Pagination Dots */
.tc-f744d2cd-carousel-container .swiper-pagination {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 14px !important;
    transform: translateX(-50%) !important;

    width: auto !important;
    display: flex !important;
    gap: 10px !important;
    justify-content: center !important;
    align-items: center !important;

    z-index: 40 !important;
}

.tc-f744d2cd-carousel-container .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    opacity: 0.35 !important;
}

.tc-f744d2cd-carousel-container .swiper-pagination-bullet-active {
    background: #ffce00 !important;
    opacity: 1 !important;
}

/* Empty State */
.tc-f744d2cd-empty {
    background: #ffffff;
    color: #111111;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

/* Fallback if Swiper does not load */
.tc-f744d2cd-carousel-container.tc-swiper-fallback .swiper-wrapper {
    display: flex !important;
    transform: none !important;
}

.tc-f744d2cd-carousel-container.tc-swiper-fallback .swiper-slide {
    display: none !important;
    width: 100% !important;
}

.tc-f744d2cd-carousel-container.tc-swiper-fallback .swiper-slide:first-child {
    display: flex !important;
}

/* Elementor Editor Safety */
.elementor-editor-active .tc-f744d2cd-carousel-container,
.elementor-editor-active .tc-f744d2cd-carousel-container .swiper-wrapper,
.elementor-editor-active .tc-f744d2cd-carousel-container .swiper-slide,
.elementor-editor-active .tc-f744d2cd-carousel-container .tc-card-wrapper,
.elementor-editor-active .tc-img-wrap img {
    visibility: visible !important;
    opacity: 1 !important;
}

.elementor-editor-active .tc-f744d2cd-carousel-container {
    min-height: 260px;
}

.elementor-editor-active .tc-f744d2cd-carousel-container .swiper-wrapper {
    min-height: 220px;
}

/* Mobile */
@media (max-width: 767px) {
    .tc-f744d2cd-carousel-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-bottom: 42px !important;
    }

    .tc-card-wrapper.tc-img-pos-left,
    .tc-card-wrapper.tc-img-pos-right {
        flex-direction: column !important;
        text-align: center;
    }

    .tc-card-wrapper.tc-img-pos-left .tc-img-holder,
    .tc-card-wrapper.tc-img-pos-right .tc-img-holder {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: var(--tc-logo-spacing);
        align-self: auto;
        flex-direction: row;
        justify-content: var(--tc-logo-justify);
        align-items: center;
    }

    .tc-card-wrapper.tc-img-pos-left .tc-content-wrap,
    .tc-card-wrapper.tc-img-pos-right .tc-content-wrap {
        width: 100%;
    }

    .tc-content-wrap {
        width: 100%;
    }

    .tc-f744d2cd-carousel-container .swiper-button-next,
    .tc-f744d2cd-carousel-container .swiper-button-prev {
        display: none !important;
    }

    .tc-f744d2cd-carousel-container .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
    }
}