.aud-cost-calculator {
  margin: 2.5rem 0;
  padding: 1.5rem;
  border: 2px solid #1dbb99;
  border-radius: 10px;
  background: #f8fffd;
}

.aud-cost-calculator h2,
.aud-cost-calculator h3 {
  margin-top: 0;
}

.aud-cost-calculator [hidden] {
  display: none !important;
}

.aud-cost-calculator__intro {
  max-width: 850px;
}

.aud-cost-calculator__shared,
.aud-cost-calculator__provider,
.aud-cost-calculator__results {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid #d5e7e2;
  border-radius: 8px;
  background: #fff;
}

.aud-cost-calculator__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.aud-cost-calculator__providers,
.aud-cost-calculator__result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.aud-cost-calculator label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #2f2c2c;
  font-weight: 600;
}

.aud-cost-calculator input,
.aud-cost-calculator select {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border: 1px solid #9aa7a3;
  border-radius: 4px;
  background: #fff;
  color: #2f2c2c;
  font: inherit;
}

.aud-cost-calculator input:focus,
.aud-cost-calculator select:focus {
  outline: 3px solid rgba(29, 187, 153, 0.25);
  border-color: #12866f;
}

.aud-cost-calculator__check {
  flex-direction: row !important;
  align-items: center;
  font-weight: 400 !important;
}

.aud-cost-calculator__check input {
  width: auto;
  min-height: 0;
}

.aud-cost-calculator__note {
  margin: 0.75rem 0 0;
  color: #5e6664;
  font-size: 0.92em;
}

.aud-cost-calculator__warning {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-left: 4px solid #d9822b;
  background: #fff6ea;
  color: #5b3a16;
}

.aud-cost-calculator__result {
  padding: 1rem;
  border-radius: 6px;
  background: #f4f7f6;
}

.aud-cost-calculator__result--core {
  border-top: 4px solid #1dbb99;
}

.aud-cost-calculator__result--wellness {
  border-top: 4px solid #4f6f8f;
}

.aud-cost-calculator__total {
  margin: 0.5rem 0;
  color: #202328;
  font-size: 1.65rem;
  font-weight: 700;
}

.aud-cost-calculator__breakdown {
  margin: 0;
  padding-left: 1.25rem;
  color: #444445;
}

.aud-cost-calculator__difference {
  margin: 1.25rem 0 0;
  padding: 1rem;
  border-radius: 6px;
  background: #e8f5e9;
  color: #204f3f;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 767px) {
  .aud-cost-calculator {
    padding: 1rem;
  }

  .aud-cost-calculator__grid,
  .aud-cost-calculator__providers,
  .aud-cost-calculator__result-grid {
    grid-template-columns: 1fr;
  }
}
