.cmctf-formula-page {
  --cmctf-green: #0f4e43;
  --cmctf-gold: #bd9231;
  --cmctf-ink: #26364b;
  --cmctf-border: #d9e2dc;
  background: #fffefb;
  color: var(--cmctf-ink);
}

#primary.cmctf-formula-page {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  flex: 0 0 100%;
}

#primary.cmctf-formula-page .cmctf-formula {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 24px 54px;
  box-sizing: border-box;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

.cmctf-formula__header {
  margin-bottom: 42px;
}

.cmctf-formula__title {
  margin: 0;
  color: var(--cmctf-green);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cmctf-formula__subtitle {
  margin: 6px 0 0;
  font-size: 23px;
}

.cmctf-formula__subtitle::after,
.cmctf-formula__section > h2::after {
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 15px;
  background: var(--cmctf-gold);
  content: "";
}

.cmctf-formula__section {
  margin-top: 34px;
}

.cmctf-formula__section > h2 {
  margin: 0 0 18px;
  color: var(--cmctf-green);
  font-size: 29px;
  font-weight: 700;
  line-height: 1.2;
}

.cmctf-formula__table-scroll {
  overflow-x: auto;
  border: 1px solid var(--cmctf-border);
  border-radius: 4px;
}

.cmctf-formula table {
  width: 100%;
  min-width: 650px;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  font: inherit;
}

.cmctf-formula th,
.cmctf-formula td {
  padding: 10px 18px;
  border: 0;
  border-right: 1px solid var(--cmctf-border);
  border-bottom: 1px solid var(--cmctf-border);
  text-align: left;
}

.cmctf-formula th:last-child,
.cmctf-formula td:last-child {
  border-right: 0;
}

.cmctf-formula tbody tr:last-child td {
  border-bottom: 0;
}

.cmctf-formula th {
  background: #d5e3d9;
  color: #123f38;
  font-weight: 700;
}

.cmctf-formula tbody tr:nth-child(even) {
  background: #f5f6f3;
}

.cmctf-formula__copy p,
.cmctf-formula__section > p {
  margin: 0;
}

.cmctf-formula__note {
  display: grid;
  grid-template-columns: 48px 1px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 38px;
  padding: 24px 28px;
  border-radius: 7px;
  background: linear-gradient(90deg, #fff8e8, #fbf4e3);
}

.cmctf-formula__note::before {
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 100%;
  min-height: 58px;
  background: #caa752;
  content: "";
}

.cmctf-formula__note-icon {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--cmctf-gold);
  color: #fff;
  font: 700 24px/1 Arial, sans-serif;
}

.cmctf-formula__note > div {
  grid-column: 3;
  grid-row: 1;
}

.cmctf-formula__note h2 {
  margin: 0 0 2px;
  color: #74561f;
  font-size: 20px;
}

.cmctf-formula__note p {
  margin: 0;
}

@media (max-width: 700px) {
  #primary.cmctf-formula-page .cmctf-formula {
    padding: 34px 16px 40px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
  }

  .cmctf-formula__header {
    margin-bottom: 30px;
  }

  .cmctf-formula__title {
    font-size: clamp(36px, 12vw, 48px);
  }

  .cmctf-formula__subtitle {
    font-size: 20px;
  }

  .cmctf-formula__section {
    margin-top: 29px;
  }

  .cmctf-formula__section > h2 {
    font-size: 25px;
  }

  .cmctf-formula th,
  .cmctf-formula td {
    padding: 9px 13px;
  }

  .cmctf-formula__note {
    grid-template-columns: 38px 1px 1fr;
    gap: 14px;
    padding: 20px 16px;
  }

  .cmctf-formula__note-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

@media (max-width: 430px) {
  .cmctf-formula__note {
    grid-template-columns: 36px 1fr;
  }

  .cmctf-formula__note::before {
    display: none;
  }

  .cmctf-formula__note > div {
    grid-column: 2;
  }
}
