.health-check-page {
    background: #f8f5f0;
}

[hidden] {
    display: none !important;
}

.health-check-page .container {
    width: min(var(--container-width, 1280px), calc(100vw - (var(--container-gutter, 5%) * 2)));
}

.health-check-hero {
    padding: clamp(8rem, 13vw, 13rem) 0 clamp(3rem, 7vw, 6rem);
}

.health-check-hero__inner {
    max-width: 920px;
}

.health-check-eyebrow,
.health-check-question__eyebrow {
    color: #005b50;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.health-check-hero h1 {
    margin: 1rem 0 1.4rem;
    max-width: 980px;
    color: #2e2e2e;
    font-size: clamp(2.55rem, 6vw, 5.6rem);
    line-height: .94;
    letter-spacing: -.055em;
}

.health-check-hero p:not(.health-check-eyebrow) {
    max-width: 720px;
    color: rgba(46, 46, 46, .74);
    font-size: clamp(1.05rem, 1.7vw, 1.24rem);
    line-height: 1.75;
}

.health-check-disclaimer {
    margin-top: 2rem;
    padding-left: 1.2rem;
    border-left: 2px solid rgba(0, 91, 80, .24);
}

.health-check-section {
    padding: 0 0 clamp(5rem, 9vw, 9rem);
}

.health-check-app {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 91, 80, .13);
    border-radius: 32px;
    background: rgba(253, 246, 236, .82);
    box-shadow: 0 28px 90px rgba(33, 43, 39, .09);
}

.health-check-app__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: end;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border-bottom: 1px solid rgba(0, 91, 80, .1);
}

.health-check-duration {
    color: rgba(46, 46, 46, .55);
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.55;
}

.health-check-module {
    color: #005b50;
    font-size: .92rem;
    font-weight: 700;
    text-align: right;
}

.health-check-module:empty {
    display: none;
}

.health-check-form,
.health-check-result {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    padding: clamp(1.4rem, 4vw, 3rem);
}

.health-check-result:focus {
    outline: none;
}

.health-check-result:focus-visible {
    outline: 2px solid rgba(0, 121, 107, .32);
    outline-offset: 6px;
}

.health-check-question {
    min-height: 390px;
}

.health-check-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.health-check-question__title {
    max-width: 900px;
    margin: .7rem 0 1.35rem;
    color: #2e2e2e;
    font-size: clamp(1.65rem, 3.4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.04em;
    scroll-margin-top: 6.5rem;
}

.health-check-question__hint,
.health-result-muted {
    max-width: 700px;
    color: rgba(46, 46, 46, .62);
    font-size: .95rem;
    line-height: 1.65;
}

.health-check-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    margin-top: 1.6rem;
}

.health-check-option {
    position: relative;
    display: flex;
    min-height: 74px;
    gap: .95rem;
    align-items: center;
    padding: 1.05rem 1.1rem;
    border: 1px solid rgba(46, 46, 46, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .54);
    color: #2e2e2e;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.health-check-option:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 91, 80, .32);
    background: rgba(255, 255, 255, .78);
}

.health-check-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.health-check-option__visual {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border: 1px solid rgba(0, 91, 80, .34);
    border-radius: 999px;
    background: #fdf6ec;
    box-shadow: inset 0 0 0 5px #fdf6ec;
}

.health-check-option input[type="checkbox"] + .health-check-option__visual {
    border-radius: 7px;
}

.health-check-option input:checked + .health-check-option__visual {
    border-color: #005b50;
    background: #005b50;
}

.health-check-option:has(input:checked) {
    border-color: rgba(0, 91, 80, .48);
    background: rgba(0, 91, 80, .055);
}

.health-check-option__text {
    font-weight: 600;
    line-height: 1.35;
}

.health-check-option__text--rich {
    font-weight: 400;
}

.health-check-option__emphasis {
    font-weight: 700;
}

.health-check-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(46, 46, 46, .08);
}

.health-check-actions__group {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.health-check-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .82rem 1.25rem;
    border: 1px solid rgba(0, 91, 80, .22);
    border-radius: 999px;
    background: transparent;
    color: #005b50;
    font: inherit;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
}

.health-check-button--primary {
    border-color: #005b50;
    background: #005b50;
    color: #fff;
}

.health-check-button:disabled {
    opacity: .38;
    cursor: not-allowed;
}

.health-check-error {
    margin: 0;
    color: #8d3f2f;
    font-size: .94rem;
}

.health-result-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(1.4rem, 4vw, 3rem);
    align-items: center;
    margin-bottom: 2rem;
}

.health-result-donut {
    display: grid;
    width: clamp(150px, 18vw, 210px);
    aspect-ratio: 1;
    place-items: center;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, #fdf6ec 0 58%, transparent 59%),
        conic-gradient(#005b50 calc(var(--health-score, 0) * 1%), rgba(0, 91, 80, .13) 0);
}

.health-result-donut span {
    color: #2e2e2e;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: .85;
}

.health-result-donut small {
    margin-top: -3.4rem;
    color: rgba(46, 46, 46, .58);
    font-weight: 700;
    letter-spacing: .12em;
}

.health-result-hero h2 {
    margin: .45rem 0 .9rem;
    color: #2e2e2e;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.health-result-hero p {
    max-width: 720px;
    color: rgba(46, 46, 46, .72);
    line-height: 1.7;
}

.health-result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.health-result-section,
.health-result-meter,
.health-result-cta {
    padding: clamp(1.25rem, 2.6vw, 1.8rem);
    border: 1px solid rgba(0, 91, 80, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .5);
}

.health-result-section {
    margin-top: 1rem;
}

.health-result-section h3,
.health-result-cta h3 {
    margin: 0 0 .9rem;
    color: #2e2e2e;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.2;
}

.health-result-section ul {
    display: grid;
    gap: .8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.health-result-section li {
    display: grid;
    gap: .2rem;
    color: rgba(46, 46, 46, .72);
    line-height: 1.55;
}

.health-result-section li strong {
    color: #2e2e2e;
}

.health-result-meter {
    margin-top: 0;
}

.health-result-meter__head {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    color: #2e2e2e;
    font-weight: 700;
}

.health-result-meter__track {
    overflow: hidden;
    height: 10px;
    margin: 1rem 0 .75rem;
    border-radius: 999px;
    background: rgba(0, 91, 80, .12);
}

.health-result-meter__track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #005b50;
}

.health-result-meter__status {
    margin: 0;
    color: rgba(46, 46, 46, .62);
    font-size: .92rem;
}

.health-result-articles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}

.health-result-article {
    display: grid;
    gap: .65rem;
    min-height: 180px;
    padding: 1rem;
    border: 1px solid rgba(46, 46, 46, .1);
    border-radius: 20px;
    background: rgba(253, 246, 236, .72);
    color: inherit;
    text-decoration: none;
}

.health-result-article span,
.health-result-article em {
    color: #005b50;
    font-size: .78rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.health-result-article strong {
    color: #2e2e2e;
    font-size: 1rem;
    line-height: 1.25;
}

.health-result-badge {
    display: inline-flex;
    margin-top: .9rem;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(0, 91, 80, .09);
    color: #005b50;
    font-size: .78rem;
    font-weight: 700;
}

.health-result-cta {
    display: grid;
    gap: .8rem;
    margin-top: 1rem;
    background: #005b50;
    color: #fff;
}

.health-result-cta h3,
.health-result-cta p {
    color: #fff;
}

.health-result-cta p {
    max-width: 680px;
    margin: 0;
    opacity: .86;
    line-height: 1.65;
}

.health-result-cta .button {
    justify-self: start;
    margin-top: .4rem;
    background: #fdf6ec;
    color: #005b50;
}

.health-report {
    display: grid;
    gap: clamp(1.35rem, 3.2vw, 2.25rem);
    min-width: 0;
    max-width: 100%;
}

.health-report-hero,
.health-report-summary,
.health-report-section,
.health-report-panel,
.health-report-consultation {
    min-width: 0;
    max-width: 100%;
    border: 1px solid rgba(0, 91, 80, .12);
    border-radius: 28px;
    background: rgba(255, 255, 255, .52);
    box-shadow: 0 18px 52px rgba(36, 56, 52, .055);
}

.health-report-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(1.8rem, 4.6vw, 3.6rem);
    background:
        radial-gradient(circle at 90% 0%, rgba(233, 218, 193, .42), transparent 18rem),
        rgba(255, 255, 255, .56);
}

.health-report-kicker {
    margin: 0 0 .75rem;
    color: #00796b;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    line-height: 1.35;
    text-transform: uppercase;
}

.health-report-hero h2,
.health-report-section h3,
.health-report-panel h3,
.health-report-consultation h3 {
    margin: 0;
    color: #2e2e2e;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.health-report-hero h2 {
    max-width: 760px;
    font-size: clamp(2.2rem, 5vw, 4.9rem);
}

.health-report-hero__copy > p:last-child,
.health-report-summary p,
.health-report-section p,
.health-report-panel p,
.health-report-consultation p {
    max-width: 760px;
    color: rgba(46, 46, 46, .72);
    line-height: 1.75;
}

.health-report-hero__copy > p:last-child {
    margin-top: 1.25rem;
}

.health-report-score,
.health-report-ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, #fdf6ec 0 66%, transparent 67%),
        conic-gradient(#00796b calc(var(--health-score, 0) * 1%), rgba(0, 91, 80, .12) 0);
}

.health-report-score {
    width: clamp(230px, 24vw, 330px);
    aspect-ratio: 1;
    gap: .55rem;
    padding: clamp(2.2rem, 4vw, 3rem);
    text-align: center;
}

.health-report-score span {
    color: #2e2e2e;
    font-size: clamp(3.2rem, 6.6vw, 5.6rem);
    font-weight: 850;
    line-height: .82;
}

.health-report-score small {
    color: rgba(46, 46, 46, .62);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.health-report-score strong {
    max-width: 12rem;
    color: #005b50;
    font-size: clamp(.95rem, 1.4vw, 1.08rem);
    line-height: 1.25;
    text-align: center;
}

.health-report-summary {
    display: grid;
    gap: .7rem;
    padding: clamp(1.35rem, 3vw, 2.2rem);
    border-left: 4px solid rgba(0, 121, 107, .58);
}

.health-report-summary p {
    margin: 0;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
}

.health-report-summary__mail-hint {
    margin-top: .45rem !important;
    color: #005b50 !important;
    font-weight: 650;
}

.health-report-section,
.health-report-panel {
    padding: clamp(1.6rem, 3.6vw, 2.8rem);
}

.health-report-section__head {
    margin-bottom: clamp(1.1rem, 2.6vw, 1.8rem);
}

.health-report-section h3,
.health-report-panel h3,
.health-report-consultation h3 {
    max-width: 800px;
    font-size: clamp(1.55rem, 3.2vw, 2.55rem);
}

.health-report-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .95rem;
}

.health-report-card,
.health-report-secondary-list article,
.health-report-module,
.health-result-article {
    min-width: 0;
    max-width: 100%;
    border: 1px solid rgba(0, 91, 80, .1);
    border-radius: 22px;
    background: rgba(253, 246, 236, .62);
}

.health-report-card {
    display: grid;
    gap: .75rem;
    padding: 1.2rem;
}

.health-report-card span,
.health-report-priority > span,
.health-report-secondary-list span,
.health-report-module__head span {
    color: #005b50;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.health-report-card h4,
.health-report-ring-card h4,
.health-report-secondary-list strong,
.health-report-module__head strong {
    color: #2e2e2e;
    font-size: 1.08rem;
    line-height: 1.25;
}

.health-report-card p,
.health-report-secondary-list p,
.health-report-module p {
    margin: 0;
    font-size: .92rem;
}

.health-report-panel--quiet {
    background: rgba(233, 218, 193, .23);
}

.health-report-priority {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .85rem;
    padding: clamp(1.3rem, 3vw, 2rem);
    overflow: hidden;
    border: 1px solid rgba(0, 91, 80, .15);
    border-radius: 24px;
    background: rgba(233, 218, 193, .25);
}

.health-report-priority::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: #00796b;
}

.health-report-priority > * {
    min-width: 0;
    max-width: 100%;
}

.health-report-priority p {
    margin: 0;
}

.health-report-priority h3 {
    overflow-wrap: break-word;
    hyphens: auto;
}

.health-report-secondary-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
    margin-top: .9rem;
}

.health-report-secondary-list article {
    display: grid;
    gap: .55rem;
    padding: 1.1rem;
}

.health-report-who-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.health-report-ring-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 1.6rem);
    align-items: center;
    padding: clamp(1.1rem, 2.8vw, 1.6rem);
    border: 1px solid rgba(0, 91, 80, .12);
    border-radius: 24px;
    background: rgba(253, 246, 236, .52);
}

.health-report-ring {
    width: clamp(116px, 14vw, 150px);
    aspect-ratio: 1;
    gap: .35rem;
    padding: 1.25rem;
    text-align: center;
}

.health-report-ring span {
    color: #2e2e2e;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 850;
    line-height: 1;
}

.health-report-ring small {
    max-width: 7.5rem;
    color: rgba(46, 46, 46, .62);
    font-size: .68rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.health-report-status {
    display: inline-flex;
    margin-top: .6rem !important;
    padding: .45rem .65rem;
    border-radius: 999px;
    background: rgba(0, 121, 107, .08);
    color: #005b50 !important;
    font-size: .78rem;
    font-weight: 850;
}

.health-report-module-list {
    display: grid;
    gap: .8rem;
}

.health-report-module {
    display: grid;
    gap: .75rem;
    padding: 1rem 1.1rem;
}

.health-report-module__head {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
}

.health-report-module__bar {
    overflow: hidden;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 91, 80, .12);
}

.health-report-module__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #00796b;
}

.health-report-complaints__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
    margin: 1.25rem 0;
}

.health-report-complaints__facts div {
    padding: .95rem;
    border: 1px solid rgba(0, 91, 80, .1);
    border-radius: 18px;
    background: rgba(253, 246, 236, .6);
}

.health-report-complaints__facts dt {
    color: rgba(46, 46, 46, .58);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.health-report-complaints__facts dd {
    margin-top: .35rem;
    color: #2e2e2e;
    font-weight: 750;
    line-height: 1.35;
}

.health-report-note-list {
    display: grid;
    gap: .75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.health-report-note-list li {
    padding-left: 1rem;
    border-left: 2px solid rgba(0, 121, 107, .46);
    color: rgba(46, 46, 46, .72);
    line-height: 1.65;
}

.health-report-articles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}

.health-report-email {
    display: grid;
    grid-template-columns: minmax(18rem, .4fr) minmax(0, .6fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    background: rgba(233, 218, 193, .22);
}

.health-check-email-step {
    display: grid;
    grid-template-columns: minmax(18rem, .42fr) minmax(0, .58fr);
    gap: clamp(1.75rem, 5vw, 4rem);
    align-items: center;
}

.health-check-email-step .health-report-email__copy p {
    max-width: 560px;
    color: rgba(46, 46, 46, .72);
    font-size: 1rem;
    line-height: 1.7;
}

.health-report-email__copy {
    min-width: 0;
    max-width: 550px;
}

.health-report-email h3 + p {
    margin-top: .95rem;
}

.health-report-email__copy p:last-child {
    max-width: 540px;
}

.health-report-email .health-result-muted {
    margin: 0;
}

.health-report-email__form {
    display: grid;
    gap: .95rem;
    width: 100%;
    min-width: 0;
    max-width: 620px;
    justify-self: stretch;
}

.health-report-email__label {
    color: rgba(46, 46, 46, .62);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.health-report-email__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .75rem;
    align-items: start;
    min-width: 0;
}

.health-report-email__submit {
    display: grid;
    gap: .55rem;
    min-width: 12rem;
}

.health-report-email__row input {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: .8rem 1rem;
    border: 1px solid rgba(0, 91, 80, .2);
    border-radius: 999px;
    background: rgba(253, 246, 236, .72);
    color: #2e2e2e;
    font: inherit;
}

.health-report-email__row input:focus {
    border-color: rgba(0, 91, 80, .56);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 91, 80, .08);
}

@media (max-width: 1100px) {
    .health-report-email__row {
        grid-template-columns: 1fr;
    }

    .health-report-email__submit {
        min-width: 0;
    }

    .health-report-email__submit .health-check-button {
        width: 100%;
    }
}

.health-report-email__newsletter {
    padding: .85rem;
    background: rgba(253, 246, 236, .5);
}

.health-report-email__success {
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(0, 121, 107, .18);
    border-radius: 22px;
    background: rgba(0, 121, 107, .08);
    color: #2e2e2e;
    line-height: 1.65;
}

.health-report-email__success strong {
    display: block;
    margin-bottom: .35rem;
    color: #005b50;
}

.health-report-email__success p {
    margin: 0;
    color: rgba(46, 46, 46, .72);
}

.health-check-confirm {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(46, 46, 46, .28);
}

.health-check-confirm__dialog {
    width: min(520px, 100%);
    padding: clamp(1.35rem, 4vw, 2rem);
    border: 1px solid rgba(0, 91, 80, .16);
    border-radius: 26px;
    background: #fdf6ec;
    box-shadow: 0 24px 70px rgba(46, 46, 46, .18);
}

.health-check-confirm__dialog h3 {
    margin: 0;
    color: #2e2e2e;
    font-size: clamp(1.45rem, 4vw, 2rem);
    line-height: 1.12;
}

.health-check-confirm__dialog p {
    margin: .9rem 0 0;
    color: rgba(46, 46, 46, .72);
    line-height: 1.65;
}

.health-check-confirm__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: flex-end;
    margin-top: 1.35rem;
}

.health-check-error--success {
    color: #005b50;
    white-space: pre-line;
    font-weight: 650;
}

.health-report-consultation {
    display: grid;
    gap: .9rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: #005b50;
}

.health-report-consultation .health-report-kicker,
.health-report-consultation h3,
.health-report-consultation p {
    color: #fff;
}

.health-report-consultation p {
    margin: 0;
    opacity: .88;
}

.health-report-consultation .button {
    justify-self: start;
    margin-top: .45rem;
    background: #fdf6ec;
    color: #005b50;
}

.health-report-feedback {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(0, 91, 80, .16);
    border-radius: 22px;
    background: rgba(253, 246, 236, .54);
}

.health-report-feedback h3 {
    margin: .15rem 0 .25rem;
    color: #2e2e2e;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.2;
    letter-spacing: -.02em;
}

.health-report-feedback p:not(.health-report-kicker) {
    margin: 0;
    max-width: 42rem;
    color: #686f6b;
    font-size: .94rem;
    line-height: 1.55;
}

.health-report-feedback__link {
    flex: 0 0 auto;
    color: #005b50;
    font-size: .92rem;
    font-weight: 750;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 91, 80, .35);
}

.health-report-feedback__link:hover {
    border-color: #005b50;
}

@media (max-width: 820px) {
    .health-check-app__top,
    .health-result-hero,
    .health-result-grid,
    .health-result-articles,
    .health-report-hero,
    .health-report-card-grid,
    .health-report-secondary-list,
    .health-report-who-grid,
    .health-report-articles,
    .health-check-email-step,
    .health-report-email {
        grid-template-columns: 1fr;
    }

    .health-report-email__row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .health-report-email__submit {
        min-width: 0;
    }

    .health-check-module {
        text-align: left;
    }

    .health-check-options {
        grid-template-columns: 1fr;
    }

    .health-check-question {
        min-height: auto;
    }

    .health-result-donut {
        width: 168px;
    }

    .health-report-score {
        width: min(240px, 72vw);
        justify-self: center;
    }

    .health-report-ring-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .health-report-complaints__facts {
        grid-template-columns: 1fr;
    }

    .health-report-feedback {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .health-check-page .header .button {
        display: none;
    }

    .health-check-hero {
        padding-top: 7rem;
    }

    .health-check-hero h1 {
        max-width: 17rem;
        font-size: clamp(1.52rem, 7.2vw, 1.85rem);
        line-height: 1;
        letter-spacing: -.045em;
    }

    .health-check-hero p:not(.health-check-eyebrow),
    .health-check-disclaimer {
        max-width: calc(100vw - 2rem);
    }

    .health-check-app {
        border-radius: 24px;
    }

    .health-check-result {
        padding: .7rem;
    }

    .health-report-hero,
    .health-report-summary,
    .health-report-section,
    .health-report-panel,
    .health-report-consultation,
    .health-report-feedback {
        border-radius: 22px;
    }

    .health-report-hero,
    .health-report-section,
    .health-report-panel,
    .health-report-consultation,
    .health-report-summary {
        padding: 1.25rem;
    }

    .health-check-question__title {
        font-size: clamp(1.45rem, 8vw, 2rem);
        line-height: 1.08;
        scroll-margin-top: 5.75rem;
    }

    .health-check-options {
        gap: .65rem;
        margin-top: 1.1rem;
    }

    .health-check-option {
        min-height: 62px;
        padding: .9rem;
        border-radius: 18px;
    }

    .health-check-actions {
        margin-top: 1.35rem;
        padding-top: 1rem;
    }

    .health-report-hero h2 {
        max-width: 13.5rem;
        font-size: clamp(1.58rem, 7.4vw, 1.95rem);
        line-height: 1.08;
    }

    .health-report-section h3,
    .health-report-panel h3,
    .health-report-consultation h3 {
        font-size: clamp(1.35rem, 6.4vw, 1.72rem);
        line-height: 1.12;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .health-report-score {
        width: min(196px, 66vw);
        gap: .38rem;
        padding: 1.8rem;
    }

    .health-report-score span {
        font-size: clamp(2.75rem, 15vw, 3.75rem);
    }

    .health-report-score strong {
        max-width: 9.5rem;
        font-size: .88rem;
    }

    .health-report-ring {
        width: min(132px, 48vw);
        padding: 1.15rem;
    }

    .health-report-ring span {
        font-size: clamp(1.15rem, 6vw, 1.55rem);
    }

    .health-report-module__head {
        display: grid;
        gap: .35rem;
    }

    .health-report-card,
    .health-report-secondary-list article,
    .health-report-module,
    .health-result-article {
        padding: 1rem;
        border-radius: 18px;
    }

    .health-check-actions {
        align-items: stretch;
    }

    .health-check-actions,
    .health-check-actions__group,
    .health-check-button {
        width: 100%;
    }

    .health-check-actions__group {
        order: 1;
    }

    .health-check-actions [data-health-reset] {
        order: 2;
    }

    .health-check-actions [data-health-error] {
        order: 3;
    }

    .health-check-actions [data-health-next] {
        order: -1;
    }

    .health-result-meter__head {
        display: grid;
        gap: .35rem;
    }
}
