/* Explain: Base reset and typography defaults for the studio site */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    color: var(--text-color);
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(196, 115, 70, 0.12), transparent 26rem),
        radial-gradient(circle at 88% 8%, rgba(230, 184, 184, 0.3), transparent 24rem),
        var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
    text-rendering: optimizeLegibility;
}

button,
a,
select {
    cursor: pointer;
}

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

::selection {
    background: var(--accent-color);
    color: #ffffff;
}

/* Rich Text content blocks */
.rich-text p {
    margin-bottom: 1.35rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}
.rich-text ul {
    margin-bottom: 1.5rem;
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-muted);
}
.rich-text li {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    line-height: 1.7;
}
.rich-text strong {
    font-weight: 700;
    color: var(--text-color);
}
.rich-text a {
    color: var(--accent-color);
    text-decoration: underline;
}
