.tc-container-734 {
    width: 100%;
    padding: 20px 0 50px 0; /* Padding for shadow and pagination */
}

.tc-swiper-734 {
    width: 100%;
    padding: 15px; /* Prevent shadow clipping */
}

.tc-card-734 {
    background: #ffffff;
    border-radius: 16px; /* Matching site border radius */
    padding: 30px;
    box-shadow: 0 4px 15px rgba(30, 67, 137, 0.3); /* Lowered shadow opacity */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    margin: 10px; /* spacing between slides */
}

.tc-content-734 {
    color: #555555;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.tc-author-734 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.tc-avatar-734 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.tc-avatar-734 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tc-name-734 {
    margin: 0;
    color: #333333;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

/* Pagination Styling */
.tc-swiper-734 .swiper-pagination-bullet {
    background: #1E4389;
    opacity: 0.5;
}
.tc-swiper-734 .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Entrance Animations */
@keyframes fadeInUp734 {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tc-animate-in-734 {
    opacity: 0; /* Initial state */
    animation: fadeInUp734 0.6s ease-out forwards;
}

/* Base delay for slides */
.swiper-slide:nth-child(1) .tc-animate-in-734 { animation-delay: 0s; }
.swiper-slide:nth-child(2) .tc-animate-in-734 { animation-delay: 0.5s; }
.swiper-slide:nth-child(3) .tc-animate-in-734 { animation-delay: 1.0s; }

/* In a looping Swiper, slides are duplicated, so we target the visible ones via JS or structure, 
   but for simplicity, we apply delays based on nth-child.
   For better reliability with swiper loop, we can target swiper-slide-visible if we enable watchSlidesProgress. */
.swiper-slide-visible:nth-child(1n) .tc-animate-in-734 { animation-delay: 0s; }
.swiper-slide-visible:nth-child(2n) .tc-animate-in-734 { animation-delay: 0.5s; }
.swiper-slide-visible:nth-child(3n) .tc-animate-in-734 { animation-delay: 1.0s; }