.spot {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  background: rgba(13, 31, 28, .5);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.spot-gl {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 1.5s ease;
}

.spot-gl.on {
  stroke-dashoffset: 0;
}

.spot-graph-wrap {
  margin-bottom: 2rem;
}

.spot-q {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  border-left: 3px solid #1D7C6E;
  padding-left: 1.5rem;
}

.spot-cite {
  display: block;
  margin-top: 1rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  font-style: normal;
}

.spot-stats {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.spot-stat-num {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.spot-stat-l {
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.spot-stats .spot-txt .spot-stat-l {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: none;
  color: rgba(255, 255, 255, .92);
  max-width: 260px;
}
