/* Wrapper */
.tf-2b37132d-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px; /* Slight padding to accommodate box shadow */
}

/* Swiper overrides */
.tf-2b37132d-swiper {
    width: 100%;
    padding-bottom: 40px; /* Space for dots */
}

/* Card Styling */
.tf-2b37132d-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    height: 100%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tf-2b37132d-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Video Wrapper */
.tf-2b37132d-video-wrap {
    position: relative;
    width: 100%;
    /* TikTok standard aspect ratio is approx 9:16 */
    padding-bottom: 150%; 
    background: #000;
    overflow: hidden;
}

.tf-2b37132d-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0; /* Hidden by default until in view */
    transition: opacity 0.3s ease;
}

.tf-2b37132d-iframe.is-loaded {
    opacity: 1;
}

/* Text Elements */
.tf-2b37132d-username {
    font-weight: 700;
    font-size: 14px;
    margin-top: 12px;
    padding: 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tf-2b37132d-caption {
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 12px;
    padding: 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Navigation Overrides */
.tf-2b37132d-swiper .swiper-button-next,
.tf-2b37132d-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tf-2b37132d-swiper .swiper-button-next::after,
.tf-2b37132d-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}
.tf-2b37132d-swiper .swiper-pagination-bullet {
    opacity: 0.5;
}
.tf-2b37132d-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}
