.nw-post {
    max-width: 820px;
    margin: 0 auto;
}

.nw-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nw-post-date {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.72);
}

.nw-post-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(0, 255, 136, 0.12);
    color: #7ef3b8;
}

.nw-post-tag--events {
    background: rgba(255, 210, 74, 0.16);
    color: #ffe7a0;
}

.nw-post-tag--blog {
    background: rgba(120, 170, 255, 0.16);
    color: #cfe0ff;
}

.nw-post-tag--maintenance {
    background: rgba(255, 106, 0, 0.16);
    color: #ffd0ad;
}

.nw-post-body {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    font-size: 1rem;
}

.nw-post-body p {
    margin: 0 0 1.1rem;
}

.nw-post-body h2,
.nw-post-body h3 {
    margin: 1.6rem 0 0.8rem;
    color: #fff;
    font-family: "Bebas Neue", Impact, sans-serif;
    letter-spacing: 0.03em;
}

.nw-post-body h2 { font-size: 1.6rem; }
.nw-post-body h3 { font-size: 1.3rem; }

.nw-post-body strong,
.nw-post-body b {
    color: #ffd24a;
    font-weight: 700;
}

.nw-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
}

.nw-post-body th,
.nw-post-body td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.nw-post-body th {
    background: rgba(255, 106, 0, 0.14);
    color: #ffd24a;
    font-weight: 700;
}

.nw-post-body tr:last-child th,
.nw-post-body tr:last-child td {
    border-bottom: none;
}

.nw-post-body a {
    color: #ff9a4d;
    text-decoration: underline;
}

.nw-post-body a:hover {
    color: #ffd24a;
}

.nw-post-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nw-post-nav--top {
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 0;
    border-top: none;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nw-post-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nw-post-nav-link:hover {
    color: #ffd24a;
}

.nw-post-nav-link--older {
    margin-left: auto;
}

@media (max-width: 640px) {
    .nw-post-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nw-post-nav-link--older {
        margin-left: 0;
    }
}

/* All info listing (/all) */
.nw-all-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: start;
}

.nw-all-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.nw-all-tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nw-all-tab:hover {
    border-color: rgba(255, 210, 74, 0.45);
    color: #ffd24a;
}

.nw-all-tab.is-active {
    border-color: rgba(255, 106, 0, 0.7);
    color: #ff9a4d;
    background: rgba(255, 106, 0, 0.12);
}

.nw-all-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.24);
}

.nw-all-item {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nw-all-item:last-child {
    border-bottom: none;
}

.nw-all-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.nw-all-item-date {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    white-space: nowrap;
}

.nw-all-item-title {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.nw-all-item-title:hover {
    color: #ffd24a;
}

.nw-all-empty {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.nw-all-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.nw-all-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.24);
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}

.nw-all-page:hover {
    border-color: rgba(255, 210, 74, 0.45);
    color: #ffd24a;
}

.nw-all-page.is-current {
    border-color: rgba(255, 106, 0, 0.7);
    color: #ff9a4d;
    background: rgba(255, 106, 0, 0.12);
}

.nw-all-ellipsis {
    color: rgba(255, 255, 255, 0.45);
    padding: 0 4px;
}

.nw-all-side-block {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.24);
    padding: 16px;
    margin-bottom: 16px;
}

.nw-all-side-title {
    margin: 0 0 12px;
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    color: #ffd24a;
}

.nw-all-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nw-all-side-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nw-all-side-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nw-all-side-list a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.nw-all-side-list a:hover {
    color: #ffd24a;
}

.nw-all-side-list time {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .nw-all-layout {
        grid-template-columns: 1fr;
    }

    .nw-all-side {
        order: 2;
    }
}

