/* @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-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;
  }
}
.tcs-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  background: #ffffff;
  border-top: 1px solid #d9ded9;
  border-bottom: 1px solid #d9ded9;
}

.tcs-proof-row__item {
  min-width: 0;
  padding: 27px 24px;
  border-right: 1px solid #d9ded9;
}

.tcs-proof-row__item:first-child {
  border-left: 1px solid #d9ded9;
}

.tcs-proof-row__item strong,
.tcs-proof-row__item span {
  display: block;
}

.tcs-proof-row__item strong {
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: #2f6f4e;
}

.tcs-proof-row__item span {
  margin-top: 5px;

  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  color: #66756f;
}

@media (max-width: 1139px) {
  .tcs-proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tcs-proof-row__item:nth-child(-n + 2) {
    border-bottom: 1px solid #d9ded9;
  }

  .tcs-proof-row__item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .tcs-proof-row {
    grid-template-columns: 1fr;
  }

  .tcs-proof-row__item,
  .tcs-proof-row__item:first-child {
    padding: 22px 20px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #d9ded9;
  }

  .tcs-proof-row__item:last-child {
    border-bottom: 0;
  }
}
.tcs-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #D9DED9;
  border-left: 1px solid #D9DED9;
}
.tcs-pillar-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: #3C3C3C;
  background: #FFFFFF;
  border-right: 1px solid #D9DED9;
  border-bottom: 1px solid #D9DED9;
  text-decoration: none;
  transition: background-color .25s ease,
              color .25s ease,
              transform .25s ease,
              box-shadow .25s ease;
}
.tcs-pillar-card__number {
  color: #2F6F4E;
  font: 700 11px/1.2 "DM Sans", sans-serif;
  letter-spacing: .14em;
}
.tcs-pillar-card h3 {
  margin: 48px 0 10px;
  color: #2F6F4E;
  font: 600 25px/1.1 "Lora", serif;
}
.tcs-pillar-card p {
  margin: 0 0 22px;
  font: 400 13px/1.5 "DM Sans", sans-serif;
}
.tcs-pillar-card__link {
  margin-top: auto;
  color: #24332F;
  font: 700 12px/1.2 "DM Sans", sans-serif;
}
.tcs-pillar-card:hover,
.tcs-pillar-card:focus-visible {
  z-index: 1;
  background: #2F6F4E;
  color: #FFFFFF;
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(36,51,47,.12);
}
.tcs-pillar-card:hover :is(.tcs-pillar-card__number,h3,p,.tcs-pillar-card__link),
.tcs-pillar-card:focus-visible :is(.tcs-pillar-card__number,h3,p,.tcs-pillar-card__link) {
  color: #FFFFFF !important;
}
.tcs-pillar-card:focus-visible {
  outline: 3px solid #7EDA58;
  outline-offset: 3px;
}
@media (max-width: 991px) {
  .tcs-pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .tcs-pillar-grid { grid-template-columns: 1fr; }
  .tcs-pillar-card { min-height: 220px; }
  .tcs-pillar-card:hover,
  .tcs-pillar-card:focus-visible { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .tcs-pillar-card { transition: none; }
}

.tcs-curriculum-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 126px;
  padding: 20px 22px;
  background: #FFFFFF;
  border: 1px solid #D9DED9;
}

.tcs-curriculum-card--sage {
  background: #EDF4EE;
}

.tcs-curriculum-card .tcs-feature-label {
  margin: 0;
  color: #2F6F4E;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tcs-curriculum-card h3 {
  margin: 0 0 6px;
  color: #2F6F4E;
  font-family: "Lora", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}

.tcs-curriculum-card__content > p:not(.tcs-feature-meta) {
  margin: 0 0 7px;
  color: #3C3C3C;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.tcs-curriculum-card .tcs-feature-meta {
  margin: 0;
  color: #66756F;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .tcs-curriculum-card {
    grid-template-columns: 1fr;
    gap: 9px;
    min-height: 0;
    padding: 19px;
  }
}
.tcs-hero-heading,
.tcs-hero-heading h1 {
  font-family: "Lora", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.tcs-model-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #d9ded9;
  border-left: 1px solid #d9ded9;
}

.tcs-model-pillar-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: #ffffff;
  border-right: 1px solid #d9ded9;
  border-bottom: 1px solid #d9ded9;
}

/* Creates the alternating checkerboard treatment. */
.tcs-model-pillar-card:nth-child(2),
.tcs-model-pillar-card:nth-child(3) {
  background: #edf4ee;
}

.tcs-model-pillar-card__number {
  color: #2f6f4e;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
}

.tcs-model-pillar-card h3 {
  margin: 34px 0 14px;
  color: #2f6f4e;
  font-family: "Lora", serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.tcs-model-pillar-card p {
  margin: 0 0 20px;
  color: #41534b;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.tcs-model-pillar-card__link {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 0;
  color: #2f6f4e;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.tcs-model-pillar-card__link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tcs-model-pillar-card__link:focus-visible {
  outline: 3px solid #7eda58;
  outline-offset: 4px;
}

/* Mobile */
@media (max-width: 767px) {
  .tcs-model-pillar-grid {
    grid-template-columns: 1fr;
  }

  .tcs-model-pillar-card {
    min-height: 0;
    padding: 28px 24px;
  }

  /* Maintains alternating backgrounds in one column. */
  .tcs-model-pillar-card:nth-child(3) {
    background: #ffffff;
  }

  .tcs-model-pillar-card:nth-child(4) {
    background: #edf4ee;
  }

  .tcs-model-pillar-card h3 {
    margin-top: 24px;
    font-size: 26px;
  }
}
/* Curriculum tab content */

.tcs-curriculum-panel {
  min-height: 300px;
  padding: 4px 0;
  color: #3c3c3c;
}

.tcs-curriculum-panel__overline {
  margin: 0 0 18px;
  color: #2f6f4e;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tcs-curriculum-panel__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.tcs-curriculum-panel__heading h3 {
  margin: 0 0 20px;
  color: #2f6f4e;
  font-family: "Lora", serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.tcs-curriculum-panel__heading > span {
  flex: 0 0 auto;
  margin-top: 6px;
  padding: 7px 9px;
  background: #edf4ee;
  color: #2f6f4e;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tcs-curriculum-panel__description {
  max-width: 650px;
  margin: 0 0 30px;
  color: #41534b;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.tcs-curriculum-panel__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #d9ded9;
  border-left: 1px solid #d9ded9;
}

.tcs-curriculum-panel__details > div {
  padding: 18px;
  border-right: 1px solid #d9ded9;
  border-bottom: 1px solid #d9ded9;
}

.tcs-curriculum-panel__details p {
  margin: 0;
  color: #41534b;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  line-height: 1.55;
}

.tcs-curriculum-panel__details
  .tcs-curriculum-panel__label {
  margin-bottom: 7px;
  color: #2f6f4e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Keyboard focus inside the ACT3 tabs module */

.tcs-curriculum-tabs button:focus-visible,
.tcs-curriculum-tabs [role="tab"]:focus-visible {
  outline: 3px solid #7eda58;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .tcs-curriculum-panel {
    min-height: 0;
  }

  .tcs-curriculum-panel__heading {
    display: block;
  }

  .tcs-curriculum-panel__heading h3 {
    font-size: 34px;
  }

  .tcs-curriculum-panel__heading > span {
    display: inline-block;
    margin: 0 0 18px;
  }

  .tcs-curriculum-panel__details {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   CURRENT CURRICULUM — ACT3 CONTENT CARDS
   ========================================= */

.tcs-current-curriculum {
  display: block;
}

/* Apply the grid to ACT3's actual card row */
.tcs-current-curriculum > .module__inner > .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

/* Override ACT3's built-in column widths */
.tcs-current-curriculum > .module__inner > .row > .col {
  display: flex;
  width: auto !important;
  max-width: none !important;
  padding: 0;
}

/* Card */
.tcs-current-curriculum .content-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  min-height: 350px;
  padding: 32px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d9ded9;
  border-radius: 16px;
  box-shadow: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

/* Remove the unused ACT3 image area */
.tcs-current-curriculum .content-card__img:empty {
  display: none;
}

/* Remove theme spacing caused by the hidden image */
.tcs-current-curriculum .content-card__header {
  margin-top: 0;
  padding-top: 0;
}

/* Card title — ACT3 generates an H5 */
.tcs-current-curriculum .content-card__title-tag {
  margin: 0 0 18px;
  color: #2f6f4e !important;
  font-family: "Lora", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Card body */
.tcs-current-curriculum .content-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.tcs-current-curriculum .content-card__desc {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.tcs-current-curriculum .content-card__desc p {
  margin: 0 0 20px;
  color: #41534b !important;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

/* Push the two information blocks toward the bottom */
.tcs-current-curriculum .content-card__desc p:nth-child(2) {
  margin-top: auto;
}

/* Labels */
.tcs-current-curriculum .content-card__desc strong {
  color: #2f6f4e !important;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Subtle hover */
.tcs-current-curriculum .content-card:hover {
  border-color: #2f6f4e;
  box-shadow: 0 14px 34px rgba(36, 51, 47, 0.09);
  transform: translateY(-3px);
}

/* Tablet and mobile */
@media (max-width: 767px) {
  .tcs-current-curriculum > .module__inner > .row {
    grid-template-columns: 1fr;
  }

  .tcs-current-curriculum .content-card {
    min-height: 0;
    padding: 26px 24px;
  }

  .tcs-current-curriculum .content-card__title-tag {
    font-size: 25px;
  }

  .tcs-current-curriculum .content-card__desc p:nth-child(2) {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tcs-current-curriculum .content-card {
    transition: none;
  }

  .tcs-current-curriculum .content-card:hover {
    transform: none;
  }
}
/* =========================================
   SIMPLE LEARNING SKILLS GRID
   ========================================= */

.tcs-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #d9ded9;
  border-left: 1px solid #d9ded9;
}

.tcs-simple-grid > div {
  padding: 20px 24px;
  background: #ffffff;
  color: #2f6f4e;
  border-right: 1px solid #d9ded9;
  border-bottom: 1px solid #d9ded9;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
/* =========================================
   CLEAR PROGRESS LIST — COMPACT
   ========================================= */

.tcs-progress-list {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d9ded9;
  list-style: none;
}

.tcs-progress-list li {
  position: relative;
  margin: 0;
  padding: 27px 18px 27px 36px;
  color: #2f6f4e;
  border-bottom: 1px solid #d9ded9;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.tcs-progress-list li::before {
  position: absolute;
  top: 27px;
  left: 0;
  color: #2f6f4e;
  content: "✓";
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

/* Mobile */

@media (max-width: 600px) {
  .tcs-progress-list li {
    padding: 22px 14px 22px 32px;
    font-size: 16px;
  }

  .tcs-progress-list li::before {
    top: 21px;
    font-size: 19px;
  }
}
/* =========================================
   TEACH THE SKILL
   ========================================= */

.tcs-teach-skill {
  position: relative;
  max-width: 470px;
  margin: 0 auto;
  padding: 38px 42px 18px;
  background: #24332F;
  color: #ffffff;
}

.tcs-teach-skill__eyebrow {
  margin: 0 0 24px;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tcs-teach-skill__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tcs-teach-skill__steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  min-height: 58px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.tcs-teach-skill__steps li:first-child {
  border-top-color: rgba(255, 255, 255, 0.55);
}

.tcs-teach-skill__steps span {
  color: #b9e6a8;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.tcs-teach-skill__steps strong {
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

/* Optional image overlap from the comp */

.tcs-teach-skill-image {
  position: relative;
  z-index: 1;
  margin: 0 0 -48px -48px;
}

.tcs-teach-skill {
  z-index: 2;
}

/* Mobile */

@media (max-width: 767px) {
  .tcs-teach-skill {
    max-width: none;
    padding: 30px 26px 14px;
  }

  .tcs-teach-skill__steps li {
    min-height: 54px;
  }

  .tcs-teach-skill-image {
    margin: 0 0 20px;
  }
}
/* =========================================
   WHAT STUDENTS PRACTICE
   ========================================= */

.tcs-practice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #d9ded9;
  border-left: 1px solid #d9ded9;
}

.tcs-practice-grid__item {
  min-height: 230px;
  margin: 0;
  padding: 30px;
  background: #ffffff;
  border-right: 1px solid #d9ded9;
  border-bottom: 1px solid #d9ded9;
}

.tcs-practice-grid__item > span {
  display: block;
  margin-bottom: 30px;
  color: #2f6f4e;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
}

.tcs-practice-grid__item h3 {
  margin: 0 0 12px;
  color: #2f6f4e;
  font-family: "Lora", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.tcs-practice-grid__item p {
  max-width: 520px;
  margin: 0;
  color: #41534b;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

/* Mobile */
@media (max-width: 767px) {
  .tcs-practice-grid {
    grid-template-columns: 1fr;
  }

  .tcs-practice-grid__item,
    min-height: 0;
    padding: 25px 22px;
  }

  .tcs-practice-grid__item > span {
    margin-bottom: 20px;
  }

  .tcs-practice-grid__item h3 {
    font-size: 20px;
  }
}
/* =========================================
   SUPPORT THAT CHANGES
   ========================================= */

.tcs-support-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #d9ded9;
  border-left: 1px solid #d9ded9;
}

.tcs-support-step {
  min-height: 160px;
  padding: 26px 24px;
  background: #ffffff;
  border-right: 1px solid #d9ded9;
  border-bottom: 1px solid #d9ded9;
}

.tcs-support-step span {
  display: block;
  margin-bottom: 34px;
  color: #2f6f4e;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
}

.tcs-support-step p {
  margin: 0;
  color: #2f6f4e;
  font-family: "Lora", serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
}

/* Tablet */

@media (max-width: 900px) {
  .tcs-support-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */

@media (max-width: 600px) {
  .tcs-support-steps {
    grid-template-columns: 1fr;
  }

  .tcs-support-step {
    min-height: 0;
    padding: 22px;
  }

  .tcs-support-step span {
    margin-bottom: 18px;
  }

  .tcs-support-step p {
    font-size: 18px;
  }
}
}