/**
 * wc-ct-phase-card.css
 * Source: WeConnect-ClinicalTrials_v3-02MAR2026.html lines 133–143
 */

.phases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

@media (max-width: 768px) {
  .phases-grid {
    grid-template-columns: 1fr;
  }
}

.phase-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  padding: var(--sp-md);
  position: relative;
  overflow: hidden;
}

.phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red-bright);
  border-radius: 2px 0 0 2px;
}

.phase-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--red-bright);
  line-height: 1;
  margin-bottom: 6px;
}

.phase-subtitle {
  font-size: var(--t-small);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red-mid);
  margin-bottom: 4px;
}

.phase-title {
  font-size: var(--t-h3);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--sp-xs);
  line-height: 1.3;
}

.phase-desc {
  font-size: var(--t-small);
  color: var(--body-text);
  line-height: 1.65;
  overflow-wrap: break-word;
}
