* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-top: 22px;
    padding-bottom: 22px;
}

.site-title a {

    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    color: #111 !important;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.site-title p {
    margin: 0px 0 0;
    font-size: 14px;

}

.site-title {
    line-height: 1;
    text-transform: uppercase;
    font-size: 13px;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav > ul {
    display: flex;
    gap: 14px;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    color: #111;
    text-decoration: none;
    padding: 8px 0;
    text-transform: uppercase;
    font-size: 14px;
}

.main-nav a:hover,
.main-nav .active > a {
    text-decoration: underline;
}

.has-submenu > a::after {
    content: " ▾";
    font-size: 12px;
}

.submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 0;
    z-index: 20;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu a {
    padding: 8px 14px;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    height: 3px;
    background: #111;
    border-radius: 2px;
}

.site-main {
    padding: 32px 0;
}

.site-main .container {
    max-width: 900px;
}

.site-main h1 {
    margin-top: 0;
    font-size: 26px;
    font-weight: 100 !important;
    line-height: 1.15;
}

.site-main h2 {
    margin-top: 28px;
    font-size: 20px;
    font-weight: 100 !important;
}

.site-main h3 {
    font-size: 18px;
    font-weight: 100 !important;
}

.site-main img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 28px auto;
}

.site-footer {
    border-top: 1px solid #e5e5e5;
    padding: 24px 0;
    color: #111;
    font-size: 14px;
}

.site-footer p {
    margin: 0 0 6px;
}

.site-footer p:last-child {
    margin-bottom: 0;
}

.site-footer-links a,
.site-meta a {
    color: #111;
}

.site-meta {
    color: #111;
}

@media (max-width: 800px) {
    .header-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .site-title {
        margin-bottom: 0;
    }

    .nav-toggle-label {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 20px;
    }

    .nav-toggle:checked ~ .main-nav {
        display: block;
    }

    .main-nav > ul {
        display: block;
    }

    .submenu {
        display: block;
        position: static;
        border: none;
        padding-left: 18px;
    }

    .site-main h1 {
        font-size: 22px;
    }
}


.site-main h5 {
    margin-top: 28px;
    margin-bottom: 10px;padding-left:20px;border-left:5px solid #000;
font-size:1.1em;
    line-height: 1.35;
    font-weight: 100!important;font-style: italic;
    letter-spacing: 0.03em;

}

.site-main strong {
    font-weight: 700;
}

.site-main a {
    color: #111;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-main a:hover {
    color: #111;
    text-decoration: none;
}

.site-main img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 28px auto;
}

.site-main blockquote {
    margin: 15px;
    padding: 5px 12px;
    border-left: 3px solid #111;
    font-style: italic;
}

.site-main blockquote p {
    margin: 0;
}

.site-main table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
}

.site-main th,
.site-main td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: left;
}

.site-main thead th {
    background: #f5f5f5;
}

.site-main code {
    font-family: Consolas, Monaco, monospace;
    font-size: 0.9em;
    background: #f5f5f5;
    padding: 2px 5px;
    border-radius: 3px;
}

.site-main pre {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 14px 16px;
    overflow-x: auto;
    margin: 28px 0;
}

.site-main pre code {
    background: none;
    padding: 0;
    font-size: 0.9em;
}
