.tc-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.tc-carousel {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tc-slides {
    position: relative;
    width: 100%;
    min-height: 180px;
}

.tc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
    z-index: 1;
}

.tc-slide-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0s;
    z-index: 2;
}

.tc-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.tc-avatar-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0f0f0;
}

.tc-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-text-container {
    max-width: 800px;
}

.tc-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 15px;
    font-style: italic;
}

.tc-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    display: block;
    font-style: normal;
}

.tc-navigation {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.tc-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.tc-nav-btn:hover {
    background: #f7fafc;
    transform: scale(1.05);
}

.tc-nav-btn svg {
    fill: #4a5568;
    width: 20px;
    height: 20px;
}

.tc-no-posts {
    padding: 30px;
    text-align: center;
    border: 2px dashed #cbd5e0;
    color: #718096;
    border-radius: 8px;
}
