.team-experience-card {
  position: relative;
  min-height: 380px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid #c8c8c8;
  background:
    radial-gradient(circle at 90% 10%, rgba(227, 6, 19, .12), transparent 32%),
    linear-gradient(145deg, #fff, #f3f3f1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-experience-card::before {
  content: "BC";
  position: absolute;
  top: 22px;
  right: 28px;
  color: rgba(17, 17, 17, .055);
  font-size: 92px;
  font-weight: 800;
  letter-spacing: -.08em;
}

.team-experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .1);
}

.team-experience-card > span {
  position: relative;
  color: #e30613;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.team-experience-card h3 {
  position: relative;
  margin: 12px 0;
  font-size: clamp(24px, 2.2vw, 35px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.team .team-experience-card > p {
  position: relative;
  margin: 0 0 22px;
  color: #555;
  font-size: 11px;
  line-height: 1.75;
  text-transform: none;
}

.team-experience-card ul {
  position: relative;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid #bbb;
  list-style: none;
}

.team-experience-card li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 10px;
  font-weight: 700;
}

.team-experience-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #e30613;
  font-size: 16px;
}

@media (max-width: 650px) {
  .team-experience-card {
    min-height: 340px;
    padding: 28px;
  }
}
