.telos-recovery-wrap {
  max-width: 1240px;
  width: 100%;
  margin: 34px auto 0;
  padding: 0 24px;
  box-sizing: border-box;
}

.telos-recovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 36px;
  width: 100%;
}

.telos-recovery-card {
  min-height: 118px;
  padding: 28px 30px;
  border: 1px solid rgba(74, 157, 191, 0.28);
  border-radius: 10px;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  appearance: none;
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.telos-recovery-card:hover,
.telos-recovery-card:focus,
.telos-recovery-card.is-active {
  border-color: #4a9dbf;
  background: rgba(74, 157, 191, 0.06);
  box-shadow: 0 12px 26px rgba(73, 109, 134, 0.14);
  transform: translateY(-2px);
  outline: none;
}

.telos-recovery-card-title {
  display: block;
  font-family: Merriweather, Georgia, serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: #496d86;
}

.telos-recovery-detail {
  display: block;
  width: 100%;
  margin-top: 34px;
  padding: 34px 38px;
  border-left: 5px solid #ff7a3d;
  border-radius: 10px;
  background: rgba(74, 157, 191, 0.08);
  box-sizing: border-box;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.telos-recovery-detail.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.telos-recovery-detail-title {
  margin: 0 0 12px;
  font-family: Merriweather, Georgia, serif;
  font-size: 26px;
  line-height: 1.25;
  color: #000000;
}

.telos-recovery-detail-copy {
  margin: 0 0 18px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #1f2d35;
}

.telos-recovery-detail-copy p {
  margin: 0 0 16px;
}

.telos-recovery-detail-copy p:last-child {
  margin-bottom: 0;
}

.telos-recovery-detail-link {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 3px;
  background: #ff7a3d;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.telos-recovery-detail-link:hover,
.telos-recovery-detail-link:focus {
  background: #496d86;
  color: #ffffff;
}

@media (max-width: 900px) {
  .telos-recovery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .telos-recovery-wrap {
    padding: 0 18px;
  }

  .telos-recovery-grid {
    grid-template-columns: 1fr;
  }

  .telos-recovery-card {
    min-height: auto;
    padding: 24px;
  }

  .telos-recovery-card-title {
    font-size: 20px;
  }

  .telos-recovery-detail {
    padding: 28px 24px;
  }

  .telos-recovery-detail-title {
    font-size: 23px;
  }

  .telos-recovery-detail-copy {
    font-size: 17px;
  }
}
