body {
    margin: 0;
    color: #222222;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    background: #ffffff;
    overflow-wrap: break-word;
}

a {
    color: #005ea8;
}

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

.skip-link {
    z-index: 100000;
    top: -100px;
    left: 0;
    background: #005ea8;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    clip: auto;
    width: auto;
    height: auto;
    overflow: visible;
}

.site-header {
    width: min(100% - 2rem, 72rem);
    margin: 0 auto;
    padding: 1.5rem 0;
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    cursor: pointer;
}

.menu-toggle-bar,
.menu-toggle-bar::before,
.menu-toggle-bar::after {
    display: block;
    width: 1.25rem;
    height: 2px;
    margin: 0 auto;
    background: #222222;
    content: "";
}

.menu-toggle-bar::before {
    transform: translateY(-5px);
}

.menu-toggle-bar::after {
    transform: translateY(3px);
}

.primary-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.primary-navigation a {
    text-decoration: none;
}

.content-wrapper {
    width: min(100% - 2rem, 72rem);
    margin: 0 auto;
    padding: 3rem 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
}

.widget-area {
    min-width: 0;
}

.site-main {
    min-width: 0;
}

.entry-title {
    margin: 0 0 1rem;
    line-height: 1.2;
}

.post,
.page {
    margin-bottom: 3rem;
}

.post-thumbnail {
    margin-bottom: 1.5rem;
}

.post-thumbnail img,
.entry-content img,
.entry-content iframe,
.entry-content video,
.entry-content embed,
.entry-content object {
    display: block;
    max-width: 100%;
    height: auto;
}

.comments-area {
    margin-top: 3rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .children {
    list-style: none;
    padding-left: 1.5rem;
}

.post-navigation {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.pagination {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
}

.site-footer {
    width: min(100% - 2rem, 72rem);
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid #eeeeee;
}

@media (min-width: 60rem) {
    .content-wrapper {
        grid-template-columns: minmax(0, 1fr) 18rem;
    }
}

@media (max-width: 40rem) {
    .menu-toggle {
        display: flex;
    }

    .primary-navigation {
        display: none;
    }

    .primary-navigation.is-open {
        display: block;
    }

    .primary-navigation ul {
        flex-direction: column;
        gap: 0.75rem;
    }
}
