:root {
    --rb-container-width: 1480px;
    --rb-page-padding: 24px;

    --rb-primary: #e10600;
    --rb-primary-dark: #b80500;

    --rb-dark: #111318;
    --rb-dark-soft: #1b1e24;

    --rb-background: #f4f5f7;
    --rb-surface: #ffffff;

    --rb-text: #17191d;
    --rb-text-muted: #6d7179;

    --rb-border: #e3e5e8;

    --rb-radius-sm: 8px;
    --rb-radius-md: 12px;
    --rb-radius-lg: 18px;
    --rb-radius-xl: 24px;

    --rb-shadow:
        0 10px 35px rgba(17, 19, 24, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.5;

    color: var(--rb-text);
    background: var(--rb-background);
}

body.rb-sidebar-open {
    overflow: hidden;
}

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

img {
    display: block;

    max-width: 100%;
    height: auto;
}

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

button {
    cursor: pointer;
}

.rb-container {
    width: min(
        calc(
            100% - (var(--rb-page-padding) * 2)
        ),
        var(--rb-container-width)
    );

    margin-inline: auto;
}

.site-main {
    min-height: 70vh;
}