:root {
    --white: #ffffff;
    --dark-text: #181349;
    --medium-text: #5d5c68;
    --light-bg: #f5f5f8;
    --border-color: #ddddea;
    --brand-primary: #160b50;
    --brand-accent: #ff7122;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

body {
    min-width: 20rem;
    margin: 0;
    color: var(--dark-text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    background: var(--light-bg);
}

a {
    color: inherit;
}

main {
    min-height: 100vh;
}

.container__header,
.container__footer {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.container__header nav,
.container__footer footer,
.template-home > section {
    width: min(70rem, calc(100% - 2rem));
    margin: 0 auto;
}

.container__header nav {
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-logo,
.admin-header-logo {
    font-weight: 700;
    text-decoration: none;
}

.header-links {
    display: flex;
    gap: 1rem;
}

.header-links a {
    color: var(--medium-text);
    font-size: 0.9375rem;
    text-decoration: none;
}

.template-home {
    padding: 4rem 0;
}

.template-home > section {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--white);
}

.template-home h1 {
    margin: 0;
    color: var(--brand-primary);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
}

.template-home p {
    max-width: 42rem;
    color: var(--medium-text);
}

.template-home div {
    display: grid;
    gap: 1rem;
}

.template-home div {
    grid-template-columns: repeat(auto-fit, minmax(10rem, max-content));
}

.template-home a {
    width: max-content;
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    background: var(--brand-primary);
}

.empty-state {
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.container__footer {
    border-top: 1px solid var(--border-color);
    border-bottom: 0;
}

.container__footer footer {
    padding: 1.5rem 0;
    color: var(--medium-text);
    font-size: 0.875rem;
}
