/* Explain: Base reset and typography defaults, responsive styles. - */
* {
    box-sizing: border-box;
}

[x-cloak] {
    display: none !important;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Make bold text stand out more */
b, strong {
    font-weight: 800;
    color: var(--primary-color);
}

.text-white b, .text-white strong {
    color: var(--accent-color);
}

.richtext-content > * {
    margin-bottom: 1.25rem;
}
.richtext-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.richtext-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.richtext-content p {
    line-height: 1.8;
}
.richtext-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.richtext-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.richtext-content li {
    margin-bottom: 0.5rem;
}
.richtext-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Fix Google Calendar Appointment Popup Background */
iframe[src*="calendar.google.com"] {
    background-color: #ffffff !important;
    color-scheme: light !important;
}