:root {
    --cc-black: #111111;
    --cc-red: #ed1c24;
    --cc-white: #ffffff;
    --cc-background: #f7f8fa;
    --cc-border: #e6e8eb;
    --cc-text: #171717;
    --cc-muted: #6d7278;
}

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

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

body {
    margin: 0;
    min-width: 320px;
    background: var(--cc-white);
    color: var(--cc-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.admin-bar {
    min-height: calc(100vh - 32px);
}

#cc-site,
.cc-main,
.cc-content {
    width: 100%;
    min-width: 0;
}

.cc-main {
    display: block;
    margin: 0;
    padding: 0;
}

.cc-content {
    margin: 0;
    padding: 0;
}

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

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

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

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
    margin-top: 0;
}

.cc-reading-width,
.cc-simple-page {
    width: min(100% - 40px, 760px);
    margin-inline: auto;
    padding-block: 48px;
}

.cc-entry-header h1 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
}

.cc-featured-image {
    margin-bottom: 32px;
}

.cc-entry-content a,
.cc-simple-page a {
    color: var(--cc-red);
    font-weight: 700;
}

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

@media (max-width: 782px) {
    body.admin-bar {
        min-height: calc(100vh - 46px);
    }

    .cc-reading-width,
    .cc-simple-page {
        width: min(100% - 28px, 760px);
        padding-block: 32px;
    }
}
