*,
*::before,
*::after {
	box-sizing: border-box;
}
html, body {
	margin: 0;
	padding: 0;
}
body {
	min-height: 100vh;
    padding-top: 48px;
	background-color: #ffffff;
	color: #000000;
	font-family: 'Roboto', Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
}
html {
    scroll-behavior: smooth;
}
.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2000;
    width: 1px;
    height: 1px;
    padding: 0.625rem 0.875rem;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    background: #FFFFFF;
    color: #000000;
}
.skip-link:focus,
.skip-link:focus-visible {
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 48px;
    background: #000000;
    color: #FFFFFF;
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    min-height: 48px;
    margin: 0 auto;
    padding: 12px;
}
.site-title {
    font-weight: normal;
    text-decoration: none;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}
.site-nav-link {
    text-decoration: none;
}
.site-nav-link.is-current {
    font-weight: 700;
}
#main-content {
    scroll-margin-top: 48px;
}
footer {
    border-top: 1px solid #cacaca;
}
.site-footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px;
}
.footer-copy {
    font-size: 12px;
    margin: 0;
    color: #afafaf;
}
.hero {
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #FFFFFF;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
}
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 0 60px;
}
.hero h1 {
    font-size: 72px;
    margin: 0;
}
.hero h2 {
    margin: 0;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
}
.shell {
    max-width: 1200px;
    padding: 60px;
    margin: 0 auto;
}
.shell p {
    font-size: 18px;
    color: #4d4d4d;
}
.about {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #cacaca;
}
.about .left {
    width: 50%;
}
.about .right {
    width: 50%;
}
.about .left h1 {
    font-size: 48px;
    margin: 0;
}
.links {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #cacaca;
}
.social-link {
    padding: 24px 0 24px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}
.social-link:hover .title,
.social-link:focus-visible .title {
    text-decoration: underline;
}
.social-link:not(:last-of-type) {
    border-bottom: 1px solid #cacaca;
}
.social-link img {
    width: 72px;
    height: 72px;
}
.social-link .info .title {
    font-size: 24px;
    font-weight: bold;
}
.social-link .info .description {
    font-size: 18px;
    color: #4d4d4d;
}
.section-posts-feed h1 {
    font-size: 48px;
    margin: 0;
}
.posts-shell > p {
    max-width: 760px;
}
.posts-shell > p a {
    text-decoration: underline;
}
.posts-search {
    margin: 32px 0 16px 0;
}
.search-field {
    display: block;
}
.search-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cacaca;
    font: inherit;
}
.posts-status,
.posts-empty,
.posts-error {
    color: #4d4d4d;
}
.posts-feed {
    border-top: 1px solid #cacaca;
}
.posts-card {
    padding: 24px 0;
    border-bottom: 1px solid #cacaca;
}
.posts-card__title {
    font-size: 28px;
    margin: 0 0 8px 0;
}
.posts-card__title a {
    text-decoration: none;
}
.posts-card__title a:hover,
.posts-card__title a:focus-visible {
    text-decoration: underline;
}
.posts-card__author,
.posts-card__description,
.posts-card__meta {
    margin: 0;
}
.posts-card__author,
.posts-card__meta {
    color: #afafaf;
}
.posts-card__description {
    margin: 12px 0;
    color: #4d4d4d;
}
.posts-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}
.posts-load-more,
.posts-back-link {
    display: inline-block;
    padding: 10px 14px;
    border: 1px solid #000000;
    background: #000000;
    color: #ffffff;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
}
.posts-load-more:disabled {
    cursor: default;
    opacity: 0.6;
}
.section-posts-article {
    padding-top: 48px;
}
.posts-article {
    max-width: 760px;
    margin: 0 auto;
}
.posts-article__hero {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}
.posts-article__title {
    margin: 0;
    font-size: 62px;
    line-height: 1.1;
}
.posts-article__meta,
.posts-article__excerpt {
    margin: 0;
}
.posts-article__meta {
    color: #afafaf;
    font-size: 15px;
}
.posts-article__excerpt {
    color: #4d4d4d;
    font-size: 24px;
    line-height: 1.5;
}
.posts-article__thumbnail {
    margin: 0 0 32px 0;
    padding-bottom: 32px;
    border-bottom: 1px solid #cacaca;
}
.posts-article__thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}
.posts-article:not(.posts-article--has-thumbnail) .posts-article__excerpt {
    padding-bottom: 32px;
    border-bottom: 1px solid #cacaca;
}
.posts-article__body {
    color: #4d4d4d;
    font-size: 18px;
    line-height: 1.75;
}
.posts-article__body > :first-child {
    margin-top: 32px;
}
.posts-article__body > :last-child {
    margin-bottom: 0;
}
.posts-article__body h1,
.posts-article__body h2,
.posts-article__body h3,
.posts-article__body h4,
.posts-article__body h5,
.posts-article__body h6 {
    margin: 1.75em 0 0.6em 0;
    color: #000000;
    line-height: 1.15;
}
.posts-article__body p,
.posts-article__body ul,
.posts-article__body ol,
.posts-article__body blockquote,
.posts-article__body pre,
.posts-article__body table {
    margin: 0 0 1.1em 0;
}
.posts-article__body a {
    text-decoration: underline;
}
.posts-article__body ul,
.posts-article__body ol {
    padding-left: 1.4em;
}
.posts-article__body blockquote {
    border-left: 2px solid #cacaca;
    padding-left: 16px;
}
.posts-article__body pre,
.posts-article__body code {
    background: #f7f7f7;
    color: #000000;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.posts-article__body pre {
    padding: 16px;
    overflow: auto;
    border: 1px solid #cacaca;
}
.posts-article__body code {
    padding: 0.1em 0.3em;
}
.posts-article__body table {
    width: 100%;
    border-collapse: collapse;
}
.posts-article__body th,
.posts-article__body td {
    padding: 10px;
    border: 1px solid #cacaca;
    text-align: left;
}
@media (max-width: 768px) {
    .posts-article__title {
        font-size: 42px;
    }

    .posts-article__excerpt {
        font-size: 20px;
    }
}
