:root {
    --focus-ring: #0a84ff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

.container {
    width: min(var(--container, 1160px), calc(100vw - 2rem));
    margin: 0 auto;
}

.rich-text > :first-child {
    margin-top: 0;
}

.rich-text > :last-child {
    margin-bottom: 0;
}

.rich-text p,
.rich-text ul,
.rich-text ol {
    margin: 0 0 1rem;
}

.rich-text ul,
.rich-text ol {
    padding-left: 1.25rem;
}

.rich-text li + li {
    margin-top: 0.45rem;
}

.rich-text h2,
.rich-text h3,
.rich-text h4 {
    margin: 1.6rem 0 0.8rem;
}

.contact-form-disabled [disabled],
.modern-contact-form-disabled [disabled] {
    cursor: not-allowed;
}
