﻿.tc2__card {
  background: #fff;
  border: 1px solid #c3c6d7;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.tc2__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.tc2__card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #eef0fa;
  border-bottom: 1px solid rgba(195, 198, 215, 0.3);
  transition: background 0.15s;
}
.tc2__card-head:hover {
  background: rgb(230.1181818182, 233.0454545455, 247.6818181818);
}
.tc2__card-title {
  font-size: 14px;
  font-weight: 700;
  color: #126;
}
.tc2__time-badge {
  font-size: 14px;
  font-weight: 700;
  color: #26377c;
  background: rgba(38, 55, 124, 0.08);
  padding: 2px 10px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.tc2__count {
  font-size: 10px;
  font-weight: 700;
  color: #6b6f8a;
  background: rgba(107, 111, 138, 0.1);
  padding: 1px 7px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
}
.tc2__body {
  padding: 8px 12px;
}
