:root {
  --tcc-accent: var(--primary-color);
  --tcc-radius: 14px;
  --tcc-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --tcc-border: #e8e8e8;
}

.tcc-card {
  background: #fff;
  border: 1px solid var(--tcc-border);
  border-radius: var(--tcc-radius);
  padding: 24px 22px 22px;
  height: 100%;
  box-sizing: border-box;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.tcc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.tcc-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0f0f0;
}
.tcc-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #999;
  font-size: 26px;
}
.tcc-meta {
  flex: 1;
}
.tcc-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px;
  line-height: 1.3;
}
.tcc-title-role {
  font-size: 13px;
  color: #454545;
  margin: 0 0 5px;
}
.tcc-stars {
  display: flex;
  gap: 2px;
  font-size: 14px;
}
.tcc-content {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #454545;
}

.splide__slide {
  display: flex;
}
.splide__slide > * {
  flex: 1;
}

.splide__pagination {
  bottom: -20px;
  padding: 0;
  display: flex;
}
.splide__pagination__page {
  width: 20px;
  height: 6px;
  border-radius: 3px;
  background: var(--primary-color);
  opacity: .5;
  transition:
    background 0.3s,
    width 0.3s;
  margin: 0 3px;
  padding: 0px;
  border: 0px;
}
.splide__pagination__page.is-active {
  background: var(--tcc-accent);
  width: 36px;
  transform: none;
  height: 5px;
  padding: 0px;
  opacity: 1;
}

.splide__arrows {
  display: none;
}
