.ehc-calculator {
  --ehc-bg: #ffffff;
  --ehc-surface: #f7f8fb;
  --ehc-surface-strong: #eef2f7;
  --ehc-border: #d7dde7;
  --ehc-border-strong: #b8c1cf;
  --ehc-text: #17212f;
  --ehc-text-muted: #667085;
  --ehc-success: #137333;
  --ehc-error: #b42318;
  --ehc-accent-start: #34537b;
  --ehc-accent-end: #1f314d;
  --ehc-accent-hover-start: #3d628f;
  --ehc-accent-hover-end: #243958;
  --ehc-radius-xl: 18px;
  --ehc-radius-lg: 14px;
  --ehc-radius-md: 12px;
  --ehc-radius-sm: 10px;
  --ehc-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--ehc-border);
  border-radius: var(--ehc-radius-xl);
  background: var(--ehc-bg);
  box-shadow: var(--ehc-shadow);
  color: var(--ehc-text);
}

.ehc-calculator,
.ehc-calculator *,
.ehc-calculator *::before,
.ehc-calculator *::after {
  box-sizing: border-box;
}

.ehc-calculator__head {
  margin-bottom: 14px;
}

.ehc-calculator__head h2 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.7vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ehc-text);
}

.ehc-calculator__subtitle {
  display: grid;
  gap: 2px;
  margin: 0;
  max-width: 820px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ehc-text-muted);
}

.ehc-calculator__subtitle-line {
  display: block;
  white-space: nowrap;
}

.ehc-calculator__subtitle-line.is-primary {
  display: block;
}

.ehc-calculator__form {
  display: grid;
  gap: 12px;
}

.ehc-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ehc-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid var(--ehc-border);
  border-radius: var(--ehc-radius-md);
  background: var(--ehc-surface);
  color: var(--ehc-text-muted);
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.ehc-step-indicator span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.ehc-step-indicator small {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.ehc-step-indicator.is-active {
  border-color: #344054;
  background: linear-gradient(180deg, #f2f4f7 0%, #eaecf0 100%);
  color: var(--ehc-text);
  box-shadow: inset 0 0 0 1px rgba(52, 64, 84, 0.12);
}

.ehc-step-indicator:disabled {
  cursor: default;
  opacity: .78;
}

.ehc-step {
  display: grid;
  gap: 12px;
}

.ehc-step[hidden] {
  display: none !important;
}

.ehc-calculator__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.ehc-field,
.ehc-choice-group {
  grid-column: span 6;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
}

.ehc-field--full,
.ehc-choice-group.ehc-field--full {
  grid-column: 1 / -1;
}

.ehc-field--half,
.ehc-choice-group.ehc-field--half {
  grid-column: span 6;
}

.ehc-field label,
.ehc-choice-group legend {
  display: block;
  min-height: 17px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ehc-text);
}

.ehc-field input,
.ehc-field textarea {
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 11px 13px;
  border: 1px solid var(--ehc-border);
  border-radius: var(--ehc-radius-md);
  background: #fff;
  color: var(--ehc-text);
  font-size: 14px;
  line-height: 1.35;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.ehc-field textarea {
  min-height: 96px;
  resize: vertical;
}

.ehc-field input::placeholder,
.ehc-field textarea::placeholder {
  color: #98a2b3;
}

.ehc-field input:hover,
.ehc-field textarea:hover {
  border-color: var(--ehc-border-strong);
}

.ehc-field input:focus,
.ehc-field textarea:focus {
  outline: none;
  border-color: #98a2b3;
  box-shadow: 0 0 0 3px rgba(71, 84, 103, 0.12);
}

.ehc-field-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 12px;
  align-items: center;
}

.ehc-field-inline input[type="number"] {
  text-align: center;
  font-weight: 800;
}

.ehc-field-inline input[type="range"] {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ehc-field-inline input[type="range"]:focus {
  box-shadow: none;
}

.ehc-field-inline input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #98a2b3 0%, #344054 100%);
}

.ehc-field-inline input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -6px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #34537b;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
  cursor: pointer;
}

.ehc-field-inline input[type="range"]::-moz-range-track {
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #98a2b3 0%, #344054 100%);
}

.ehc-field-inline input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #34537b;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
  cursor: pointer;
}

.ehc-choice {
  display: grid;
  gap: 10px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.ehc-choice--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ehc-choice--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ehc-choice--single {
  grid-template-columns: 1fr;
}

.ehc-choice__item {
  position: relative;
  min-width: 0;
  display: flex;
  height: 100%;
}

.ehc-choice__item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ehc-choice__item span {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  min-width: 0;
  min-height: 60px;
  height: 100%;
  padding: 10px 12px;
  border: 1px solid var(--ehc-border);
  border-radius: 12px;
  background: #fff;
  color: var(--ehc-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease;
}

.ehc-choice__item span small {
  display: block;
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ehc-text-muted);
}

.ehc-choice__item span:hover {
  border-color: #98a2b3;
  background: #fbfcfd;
}

.ehc-choice__item input:focus-visible + span {
  border-color: #98a2b3;
  box-shadow: 0 0 0 3px rgba(71, 84, 103, 0.12);
}

.ehc-choice__item input:checked + span {
  border-color: #344054;
  background: linear-gradient(180deg, #f2f4f7 0%, #eaecf0 100%);
  box-shadow: inset 0 0 0 1px rgba(52, 64, 84, 0.12);
}

.ehc-choice__item input:checked + span small {
  color: #475467;
}

.ehc-inline-note {
  min-height: 17px;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ehc-text-muted);
}

.ehc-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--ehc-border);
  border-radius: var(--ehc-radius-md);
  background: var(--ehc-surface);
  color: var(--ehc-text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.ehc-consent input {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: #34537b;
}

.ehc-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ehc-calculator__result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--ehc-border);
  border-radius: var(--ehc-radius-lg);
  background: linear-gradient(180deg, var(--ehc-surface) 0%, var(--ehc-surface-strong) 100%);
}

.ehc-calculator__result--actions {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
}

.ehc-calculator__buttons {
  display: grid;
  grid-template-columns: 150px minmax(250px, 1fr);
  gap: 10px;
  justify-content: end;
}

.ehc-calculator__label {
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #667085;
}

.ehc-calculator__price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #101828;
}

.ehc-calculator__price small {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  color: #667085;
}

.ehc-calculator__note {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--ehc-text-muted);
}

.ehc-calculator__button,
.ehc-calculator__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease, filter .15s ease;
}

.ehc-calculator__submit {
  border: 0 !important;
  background: linear-gradient(135deg, var(--ehc-accent-start) 0%, var(--ehc-accent-end) 100%) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(31, 49, 77, 0.18);
}

.ehc-calculator__submit:hover,
.ehc-calculator__submit:active {
  background: linear-gradient(135deg, var(--ehc-accent-hover-start) 0%, var(--ehc-accent-hover-end) 100%) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(31, 49, 77, 0.2);
  filter: brightness(1.02);
}

.ehc-calculator__button--secondary {
  border: 1px solid var(--ehc-border-strong);
  background: #fff;
  color: var(--ehc-text);
}

.ehc-calculator__button--secondary:hover,
.ehc-calculator__button--secondary:active {
  border-color: #98a2b3;
  background: #f8fafc;
}

.ehc-calculator__button:focus-visible,
.ehc-calculator__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(71, 84, 103, 0.18);
}

.ehc-calculator__submit:disabled {
  opacity: .72;
  cursor: not-allowed;
  filter: grayscale(.08);
}

.ehc-calculator__message {
  min-height: 18px;
  padding: 0 2px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.ehc-calculator__message.success {
  color: var(--ehc-success);
}

.ehc-calculator__message.error {
  color: var(--ehc-error);
}

@media (max-width: 1024px) {
  .ehc-choice--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ehc-choice--single {
    grid-template-columns: 1fr;
  }

  .ehc-calculator__result,
  .ehc-calculator__result--actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ehc-calculator {
    padding: 14px;
    border-radius: 16px;
  }

  .ehc-calculator__subtitle-line,
  .ehc-calculator__subtitle-line.is-primary {
    white-space: normal;
  }

  .ehc-steps,
  .ehc-calculator__grid {
    grid-template-columns: 1fr;
  }

  .ehc-field,
  .ehc-field--half,
  .ehc-field--full,
  .ehc-choice-group,
  .ehc-choice-group.ehc-field--half,
  .ehc-choice-group.ehc-field--full {
    grid-column: 1 / -1;
  }

  .ehc-choice--three,
  .ehc-choice--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ehc-choice__item span {
    min-height: 54px;
    padding: 8px 10px;
    font-size: clamp(8.8px, 2.85vw, 10px);
    line-height: 1.18;
    letter-spacing: -0.01em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .ehc-choice__item span small {
    font-size: 9px;
    margin-top: 3px;
    line-height: 1.2;
  }

  .ehc-field-inline {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 10px;
  }

  .ehc-calculator__buttons {
    grid-template-columns: 1fr;
  }

  .ehc-field input,
  .ehc-field textarea,
  .ehc-field-inline input[type="number"] {
    font-size: 16px;
  }

  .ehc-success-modal__title,
  .ehc-success-modal__text {
    white-space: normal;
  }
}

@media (max-width: 479px) {
  .ehc-calculator {
    margin: 18px 0;
    padding: 12px;
  }

  .ehc-calculator__head h2 {
    font-size: 21px;
  }

  .ehc-calculator__subtitle {
    font-size: 12px;
  }

  .ehc-step-indicator,
  .ehc-choice__item span,
  .ehc-field input,
  .ehc-field textarea,
  .ehc-calculator__button,
  .ehc-calculator__submit {
    min-height: 44px;
  }

  .ehc-choice__item span {
    min-height: 52px;
  }

  .ehc-calculator__price {
    font-size: 26px;
  }

  .ehc-success-modal__dialog {
    width: min(100%, 420px);
  }
}

.ehc-calculator__grid--contacts {
  align-items: start;
}

.ehc-calculator__grid--contacts .ehc-field,
.ehc-calculator__grid--contacts .ehc-choice-group {
  align-self: start;
}

.ehc-calculator__buttons {
  grid-template-columns: 150px minmax(260px, 1fr);
  align-items: stretch;
}

.ehc-calculator__buttons > * {
  min-width: 0;
}

.ehc-calculator__result--actions {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
}

.ehc-calculator__button,
.ehc-calculator__submit {
  min-width: 0;
  padding: 12px 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: normal;
}

.ehc-calculator__submit[type="submit"] {
  font-size: 13px;
  letter-spacing: -0.01em;
}

.ehc-field input[name="phone"] {
  font-variant-numeric: tabular-nums;
}


@media (max-width: 767px) {
  .ehc-choice-group[data-group="package"] .ehc-choice__item span,
  .ehc-choice-group[data-group="roof"] .ehc-choice__item span {
    font-size: clamp(8.4px, 2.7vw, 9.6px);
    line-height: 1.16;
    letter-spacing: -0.015em;
  }

  .ehc-choice-group[data-group="package"] .ehc-choice__item span small,
  .ehc-choice-group[data-group="roof"] .ehc-choice__item span small {
    font-size: 8.6px;
  }
}

@media (max-width: 359px) {
  .ehc-choice-group[data-group="package"] .ehc-choice__item span,
  .ehc-choice-group[data-group="roof"] .ehc-choice__item span {
    font-size: 8px;
    padding: 7px 8px;
  }
}

.ehc-success-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.ehc-success-modal[hidden] {
  display: none !important;
}

.ehc-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(4px);
}

.ehc-success-modal__dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(100%, 480px);
  max-width: calc(100vw - 24px);
  padding: 28px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  text-align: center;
}

.ehc-success-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3f8f61 0%, #1d6b44 100%);
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(29, 107, 68, 0.24);
}

.ehc-success-modal__title {
  display: block;
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
  white-space: nowrap;
  color: #101828;
}

.ehc-success-modal__text {
  display: block;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  white-space: nowrap;
  color: #475467;
}

.ehc-success-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 148px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ehc-accent-start) 0%, var(--ehc-accent-end) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.ehc-success-modal__button:hover {
  background: linear-gradient(135deg, var(--ehc-accent-hover-start) 0%, var(--ehc-accent-hover-end) 100%);
}

@media (max-width: 1024px) {
  .ehc-calculator__result--actions {
    grid-template-columns: 1fr;
  }

  .ehc-calculator__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ehc-calculator__grid--contacts {
    grid-template-columns: 1fr;
  }

  .ehc-calculator__grid--contacts .ehc-choice--three,
  .ehc-choice--three,
  .ehc-choice--two {
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 7px;
  }

  .ehc-calculator__buttons {
    grid-template-columns: 1fr;
  }

  .ehc-success-modal__dialog {
    padding: 24px 18px 18px;
    border-radius: 18px;
  }

  .ehc-success-modal__title {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .ehc-choice-group legend {
    min-height: auto;
  }

  .ehc-choice-group .ehc-choice__item {
    min-width: 0;
  }

  .ehc-choice-group .ehc-choice__item span {
    justify-content: flex-start;
  }

  .ehc-choice-group .ehc-choice__item span small {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .ehc-choice--three,
  .ehc-choice--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .ehc-choice__item span {
    min-height: 56px;
    padding: 7px 8px;
    font-size: 10px;
    line-height: 1.16;
  }

  .ehc-choice__item span small {
    font-size: 8.5px;
  }
}

@media (max-width: 359px) {
  .ehc-choice--three,
  .ehc-choice--two {
    grid-template-columns: 1fr;
  }

  .ehc-field-inline {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 767px) {
  .ehc-success-modal {
    padding: 14px;
  }

  .ehc-success-modal__dialog {
    width: 100%;
    max-width: 360px;
    padding: 22px 16px 18px;
  }

  .ehc-success-modal__title,
  .ehc-success-modal__text {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }

  .ehc-success-modal__title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
  }

  .ehc-success-modal__text {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.5;
  }

  .ehc-success-modal__button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .ehc-success-modal__dialog {
    max-width: 100%;
    padding: 20px 14px 16px;
  }

  .ehc-success-modal__title {
    font-size: 18px;
  }

  .ehc-success-modal__text {
    font-size: 12px;
  }
}


/* v1.4.8 fixes */
.ehc-success-modal__dialog {
  overflow: hidden;
}

.ehc-success-modal__text {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .ehc-success-modal__dialog {
    width: min(100%, 340px);
    padding: 20px 16px 18px;
  }

  .ehc-success-modal__text {
    font-size: 13px;
    line-height: 1.45;
    padding: 0 2px;
  }
}

@media (max-width: 380px) {
  .ehc-success-modal__dialog {
    width: 100%;
    padding: 18px 14px 16px;
  }

  .ehc-success-modal__text {
    font-size: 12px;
    line-height: 1.4;
  }
}


@media (max-width: 380px) {
  .ehc-success-modal__dialog {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .ehc-success-modal__title,
  .ehc-success-modal__text {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}


.ehc-foundation-highlight {
  gap: 0;
}

.ehc-foundation-highlight__inner {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(52, 83, 123, 0.22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(52, 83, 123, 0.08) 0%, rgba(31, 49, 77, 0.12) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.38);
}

.ehc-foundation-highlight__label {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #52607a;
}

.ehc-foundation-highlight__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  color: #162032;
}

.ehc-foundation-highlight__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.ehc-foundation-highlight__price {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(31, 49, 77, 0.1);
  color: #1f314d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.ehc-foundation-highlight__note {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: #52607a;
}

@media (max-width: 767px) {
  .ehc-foundation-highlight__inner {
    padding: 12px 13px;
    gap: 3px;
  }

  .ehc-foundation-highlight__title {
    font-size: 16px;
  }

  .ehc-foundation-highlight__meta {
    gap: 6px 10px;
  }

  .ehc-foundation-highlight__price {
    min-height: 28px;
    font-size: 12px;
  }

  .ehc-foundation-highlight__note {
    font-size: 11px;
  }
}
