:root {
    --site-width: 1200px;
    --content-width: 760px;
    --spacing-page: clamp(1rem, 4vw, 2rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
}

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

a {
    color: inherit;
}

.site-container {
    width: min(calc(100% - (var(--spacing-page) * 2)), var(--site-width));
    margin-inline: auto;
}

.site-header,
.site-footer {
    padding-block: 1.5rem;
}

.site-header .site-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo {
    font-weight: 700;
    text-decoration: none;
}

.site-menu,
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-main {
    min-height: 60vh;
    padding-block: 3rem;
}

.entry-content {
    width: min(100%, var(--content-width));
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 9999;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: #fff;
    color: #000;
}