:root {
    --debut-color-text: #1f2933;
    --debut-color-muted: #667085;
    --debut-color-border: #e5e7eb;
    --debut-color-brand: #2563eb;
    --debut-color-background: #ffffff;
    --debut-container-width: 1120px;
    --debut-button-radius: 6px;
    --debut-font-size-base: 16px;
    --debut-line-height: 1.6;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: var(--debut-font-size-base);
    color: var(--debut-color-text);
    background: var(--debut-color-background);
    line-height: var(--debut-line-height);
}

body.debut-layout-boxed {
    background: #f3f4f6;
}

body.debut-layout-boxed .site {
    width: min(100%, 1320px);
    margin-inline: auto;
    background: #fff;
    box-shadow: 0 0 40px rgba(15, 23, 42, 0.08);
}

body.debut-layout-full-width .site {
    width: 100%;
}

body.debut-heading-small .entry__title {
    font-size: 2rem;
}

body.debut-heading-normal .entry__title {
    font-size: 2.5rem;
}

body.debut-heading-large .entry__title {
    font-size: 3rem;
}

a {
    color: var(--debut-color-brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button,
.wp-block-button__link,
input[type="submit"],
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--debut-button-radius);
    padding: 0.75em 1.25em;
    border: 1px solid var(--debut-color-brand);
    background: var(--debut-color-brand);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

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

.site {
    background: #fff;
}

.site-header {
    border-bottom: 1px solid var(--debut-color-border);
    background: #fff;
}

.site-header--sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.site-header--logo-left .site-header__inner {
    align-items: flex-start;
    text-align: left;
}

.site-header--centered .site-header__inner {
    align-items: center;
    text-align: center;
}

.site-header--centered .site-header__left,
.site-header--centered .site-header__right,
.site-header--stacked .site-header__left,
.site-header--stacked .site-header__right {
    width: 100%;
}

.site-header--centered .primary-navigation ul {
    align-items: center;
    justify-content: center;
}

.site-header--stacked .site-header__inner {
    align-items: flex-start;
    text-align: left;
}

.site-header__inner,
.site-footer__inner,
.site-main__inner {
    width: min(100% - 32px, var(--debut-container-width));
    margin-inline: auto;
}

.site-header__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
}

.site-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--debut-color-text);
}

.primary-navigation ul,
.footer-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-navigation a {
    color: var(--debut-color-text);
    font-weight: 500;
}

.site-main {
    padding: 40px 0;
}

.entry {
    max-width: 760px;
}

.entry__title {
    margin: 0 0 24px;
    line-height: 1.2;
    color: var(--debut-color-brand);
}

.entry__title a {
    color: inherit;
}

.entry__content > *:first-child {
    margin-top: 0;
}

.site-footer {
    border-top: 1px solid var(--debut-color-border);
    padding: 32px 0;
    color: var(--debut-color-muted);
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.site-footer p {
    margin: 0;
}

/* Tablet and up */
@media (min-width: 720px) {
    .site-header--logo-left .site-header__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .site-header--centered .site-header__inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 28px 0;
    }

    .site-header--centered .primary-navigation ul {
        justify-content: center;
    }

    .site-header--stacked .site-header__inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 28px 0;
    }

    .site-header--stacked .primary-navigation ul {
        justify-content: flex-start;
    }

    .primary-navigation ul,
    .footer-navigation ul {
        flex-direction: row;
        gap: 20px;
    }

    .site-main {
        padding: 56px 0;
    }

    .site-footer__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
}