/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.tcs-pillar-card {
  min-height: 270px;
  padding: 28px;
  background: #FFFFFF;
  border: 1px solid #D9DED9;
  transition: background-color .25s ease,
              color .25s ease,
              transform .25s ease,
              box-shadow .25s ease;
}
.tcs-pillar-card h3 { color: #2F6F4E; }
.tcs-pillar-card a { color: #24332F; font-weight: 700; }
.tcs-pillar-card:hover,
.tcs-pillar-card:focus-within {
  background: #2F6F4E;
  color: #FFFFFF;
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(36,51,47,.12);
}
.tcs-pillar-card:hover h3,
.tcs-pillar-card:hover a,
.tcs-pillar-card:focus-within h3,
.tcs-pillar-card:focus-within a { color: #FFFFFF; }
@media (max-width: 767px) {
  .tcs-pillar-card { min-height: 220px; transform: none; }
}
.tcs-pillar-card { transition: none; }
}
.tcs-overline {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7EDA58;
}
/* Hero image column */
.tcs-hero-visual {
  position: relative;
  overflow: visible;
}

/* Complete transformation card */
.tcs-hero-card {
  position: absolute;
  left: -42px;
  bottom: -36px;
  width: 305px;
  z-index: 2;

  background: #ffffff;
  color: #24332f;

  padding: 20px 22px;
  border-left: 6px solid #7eda58;

  box-shadow:
    0 18px 52px rgba(36, 51, 47, 0.12);
}

/* FROM and TO labels */
.tcs-hero-card__label {
  display: block;
  margin: 0 0 3px;

  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #66756f;
}

/* Main card statements */
.tcs-hero-card__statement {
  margin: 0 0 8px;

  font-family: "Lora", serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;

  color: #24332f;
}

.tcs-hero-card__statement:last-child {
  margin-bottom: 0;
}

/* Three-step progression */
.tcs-hero-card__progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;

  margin: 9px 0 10px;
}

.tcs-hero-card__progress i {
  display: block;
  height: 4px;
  background: #7eda58;
}

.tcs-hero-card__progress i:nth-child(2) {
  background: #8eb28d;
}

.tcs-hero-card__progress i:nth-child(3) {
  background: #2f6f4e;
}

/* Tablet adjustment */
@media (max-width: 1100px) {
  .tcs-hero-card {
    left: -15px;
  }
}

/* Mobile treatment */
@media (max-width: 767px) {
  .tcs-hero-card {
    position: relative;
    left: auto;
    bottom: auto;

    width: auto;
    margin: -30px 18px 0;
  }
}
.tcs-availability {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;

  margin: 24px 0 0;
  padding: 9px 13px;

  background: #edf4ee;
  border-left: 3px solid #2f6f4e;
  color: #24332f;

  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  line-height: 1.35;
}

.tcs-availability__label {
  font-weight: 800;
}

.tcs-availability__grades {
  padding-left: 12px;
  border-left: 1px solid #cbd8cf;

  color: #2f6f4e;
  font-weight: 700;
}

@media (max-width: 767px) {
  .tcs-availability {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    max-width: 100%;
  }

  .tcs-availability__grades {
    padding-left: 0;
    border-left: 0;
  }
}
.tcs-hero-overline {
  display: block;
  margin: 0 0 18px;
  padding: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2f6f4e;
}

@media (max-width: 767px) {
  .tcs-hero-overline {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.15em;
  }
}