@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");

:root {
    --bg: #d6d6d6;
    --ink: #000000;
    --panel: #f0f0f0;
    --row: #e6e6e6;
    --row-alt: #dfe6e7;
    --row-border: #8fa1a3;
    --teal: #4f8f8d;
    --teal-dark: #2b6a68;
    --link: #0000ff;
    --link-hover: #900060;
    --link-accent: #00ffae;
    --link-muted: #7abfac;
    --text-muted: #919191;
    --sidebar: #101010;
    --sidebar-width: 20vw;
    --sidebar-pad: calc(var(--sidebar-width) * 0.075);
    --sidebar-tile: calc(var(--sidebar-width) * 0.85);
    --sidebar-gap: 0px;
    --sidebar-top: 8vh;
    --font-body: "VT323", monospace;
}

html, body {
    background: var(--bg) !important;
    color: var(--ink) !important;
    font-family: var(--font-body) !important;
    font-size: 12pt;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

* {
    font-family: var(--font-body) !important;
}

body {
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0 auto 0 0;
    width: var(--sidebar-width);
    background-color: var(--sidebar);
    box-shadow: inset -1px 0 0 #232323;
    z-index: 0;
}

body::after,
html::before,
html::after,
.retro-container::before,
.retro-container::after {
    content: "";
    position: fixed;
    left: var(--sidebar-pad);
    width: var(--sidebar-tile);
    height: var(--sidebar-tile);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #2b2b2b;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 1;
}

body::after {
    top: var(--sidebar-top);
    background-image: url("/images/left/window.jpg");
}

html::before {
    top: calc(var(--sidebar-top) + (var(--sidebar-tile) + var(--sidebar-gap)) * 1);
    background-image: url("/images/left/smoker.png");
}

html::after {
    top: calc(var(--sidebar-top) + (var(--sidebar-tile) + var(--sidebar-gap)) * 2);
    background-image: url("/images/left/ghoul.png");
}

.retro-container::before {
    top: calc(var(--sidebar-top) + (var(--sidebar-tile) + var(--sidebar-gap)) * 3);
    background-image: url("/images/left/window.jpg");
}

.retro-container::after {
    top: calc(var(--sidebar-top) + (var(--sidebar-tile) + var(--sidebar-gap)) * 4);
    background-image: url("/images/left/caller.png");
}

.site-header {
    width: 100%;
    position: relative;
    z-index: 2;
}

.site-header__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    min-height: 0;
    box-sizing: border-box;
}

.site-header__cat {
    display: block;
    width: calc(100% - var(--sidebar-width));
    margin-left: var(--sidebar-width);
    height: auto;
    image-rendering: auto;
}

.site-header__face {
    display: block;
    width: 100%;
    height: auto;
    image-rendering: auto;
}

.site-header__banner {
    width: 100%;
    background: url("/images/top/header_background.png") repeat;
    border-bottom: 2px solid #1b2f2f;
    padding: 10px 16px;
    box-sizing: border-box;
}

.site-header__logo {
    display: block;
    height: 48px;
    width: auto;
    image-rendering: auto;
}

.site-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 6px 12px;
    background: #d6d6d6;
    border-bottom: 1px solid #b1b1b1;
}

.site-nav__link {
    font-size: 12pt;
    color: #000;
    padding: 2px 6px;
    border: 1px solid transparent;
    text-transform: uppercase;
    text-decoration: none;
}

.site-nav__link.is-active {
    background: #ffffff;
    border-color: #b1b1b1;
}

.header {
    margin-bottom: 20px;
}
.header h1 {
    font-size: 2.2em;
    font-weight: bold;
    color: #e0e0e0;
    margin: 0 0 8px 0;
    font-family: var(--font-display);
}
.header p {
    color: var(--text-muted);
    font-size: 1.1em;
    margin: 0;
}

.footer {
    margin-top: 40px;
    color: #b0b0b0;
    font-size: 1em;
}

.footer-bar {
    background: var(--teal);
    border-top: 2px solid var(--teal-dark);
    padding: 10px 12px;
    margin: 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12pt;
    color: #0f2d2b;
}

.footer-copy {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 12px;
}

.footer-links a {
    color: var(--link);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

.board {
    margin: 0 auto;
    max-width: 900px;
    background: var(--panel);
    border: 1px solid var(--row-border);
    box-shadow: 0 1px 0 #c1c1c1;
    padding: 10px 0 20px;
}

.faq-board {
    padding: 10px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 12px;
    align-items: start;
}

.faq-sidebar {
    border: 1px solid var(--row-border);
    background: #dde3e4;
}

.faq-sidebar-header {
    background: linear-gradient(0deg, var(--teal-dark), var(--teal));
    color: #e9f7f7;
    font-size: 12pt;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 8px;
    border-bottom: 1px solid #3e7270;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.faq-link {
    display: block;
    padding: 6px 8px;
    background: #e6e6e6;
    border: 1px solid #b1b1b1;
    color: var(--link);
    font-size: 12pt;
}

.faq-link:hover {
    color: var(--link-hover);
}

.faq-link.is-active {
    background: #ffffff;
    color: var(--link-hover);
}

.faq-empty {
    color: var(--text-muted);
    font-style: italic;
    font-size: 12pt;
}

.faq-content {
    border: 1px solid var(--row-border);
    background: #ffffff;
    padding: 10px 12px;
}

.faq-content-header {
    font-size: 16pt;
    margin-bottom: 10px;
    border-bottom: 1px solid #b1b1b1;
    padding-bottom: 6px;
}

.faq-content-body {
    font-size: 12pt;
    color: #1b1b1b;
}

.section-board {
    padding: 10px;
}

.section-breadcrumbs {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 12pt;
    margin: 4px 4px 10px;
}

.section-topic-table {
    padding: 0;
    background: #d5dadd;
}

.section-topic-header,
.section-topic-row {
    display: grid;
    grid-template-columns: 2.6fr 0.5fr 0.5fr 1.4fr;
    align-items: center;
    gap: 0;
    padding: 0;
}

.section-topic-header {
    background: linear-gradient(0deg, var(--teal-dark), var(--teal));
    border-bottom: 1px solid #3e7270;
    font-size: 12pt;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #e9f7f7;
    font-family: var(--font-body);
}

.section-topic-row {
    border-top: 1px solid #c6c6c6;
    background: #e6e6e6;
}

.section-topic-row:nth-child(even) {
    background: #dfe6e7;
}

.section-topic-col {
    padding: 6px 8px;
    border-left: 1px solid #b1b1b1;
    box-sizing: border-box;
}

.section-topic-col:first-child {
    border-left: none;
}

.section-topic-main {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.section-topic-main .user-icon {
    width: 32px;
    height: 32px;
}

.section-topic-text a {
    font-size: 12pt;
}

.section-topic-excerpt {
    font-size: 12pt;
    color: var(--text-muted);
}

.section-topic-replies,
.section-topic-views {
    text-align: center;
    font-size: 12pt;
}

.section-topic-last {
    font-size: 12pt;
    color: var(--ink);
}

.section-topic-last-author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}
.board h2 {
    background: linear-gradient(0deg, var(--teal-dark), var(--teal));
    color: #e9f7f7;
    font-size: 14pt;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 8px 12px;
    margin: 16px 10px 0;
    border: 1px solid #3e7270;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.category {
    margin: 0 10px 18px;
    border: 1px solid var(--row-border);
    background: #dde3e4;
}

.category.new-posts,
.category.best-topics,
.category.section-table {
    border-top: none;
}

.section-table {
    padding: 0;
    background: #d5dadd;
}

.section-table-header,
.section-row {
    display: grid;
    grid-template-columns: 2.6fr 0.5fr 0.5fr 1.4fr;
    align-items: center;
    gap: 0;
    padding: 0;
}

.section-table-header {
    background: linear-gradient(0deg, var(--teal-dark), var(--teal));
    border-bottom: 1px solid #3e7270;
    font-family: var(--font-body);
    font-size: 12pt;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #e9f7f7;
}

.section-row {
    border-top: 1px solid #c6c6c6;
    background: #e6e6e6;
}

.section-row:nth-child(even) {
    background: #dfe6e7;
}

.section-col {
    padding: 6px 8px;
    border-left: 1px solid #b1b1b1;
    box-sizing: border-box;
}

.section-col:first-child {
    border-left: none;
}

.section-col-title {
    font-size: 12pt;
    font-family: var(--font-body);
    color: #1b1b1b;
}

.section-col-topics,
.section-col-posts {
    text-align: center;
    font-size: 12pt;
    font-family: var(--font-body);
}

.section-col-last {
    font-size: 12pt;
    color: var(--ink);
    font-family: var(--font-body);
}

.section-col-last a {
    color: var(--link);
}

.section-last-author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.section-last-author span {
    color: var(--text-muted);
}

.section-last-empty {
    color: var(--text-muted);
    font-style: italic;
}

.forum {
    position: relative;
    padding: 6px 10px 6px 44px;
    background-color: var(--row);
    border-top: 1px solid #c6c6c6;
    border-bottom: 1px solid #b1b1b1;
    margin: 0;
}
.forum:nth-child(even) {
    background: var(--row-alt);
}
.forum::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #6f7f80;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.category .forum:nth-child(4n + 1)::before { background-image: url("/images/left/caller.png"); }
.category .forum:nth-child(4n + 2)::before { background-image: url("/images/left/ghoul.png"); }
.category .forum:nth-child(4n + 3)::before { background-image: url("/images/left/smoker.png"); }
.category .forum:nth-child(4n + 4)::before { background-image: url("/images/left/window.jpg"); }
.forum h3 {
    margin: 0 0 2px 0;
    font-size: 12pt;
    font-weight: 700;
    color: #1b1b1b;
    letter-spacing: 0.2px;
    font-family: inherit;
}
.forum h3 a {
    color: #1d2dc4;
    text-decoration: none;
}
.forum h3 a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}
.forum p {
    margin: 3px 0 0 0;
    font-size: 12pt;
    color: var(--text-muted);
    font-family: inherit;
}

.new-posts .forum {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    padding: 6px 10px;
}

.new-post-user,
.best-topic-user {
    display: flex;
    align-items: center;
    min-width: 40px;
}

.new-post-user .user-container,
.best-topic-user .user-container {
    gap: 8px;
}

.new-posts .forum::before,
.best-topics .forum::before {
    content: none;
}

.new-post-user .user-icon,
.best-topic-user .user-icon {
    width: 32px;
    height: 32px;
}

.new-post-date {
    min-width: 150px;
    font-size: 12pt;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    text-align: right;
}

.new-post-title {
    margin: 0;
    flex: 1;
}

.best-topics .forum {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 10px;
}

.best-topic-title {
    margin: 0;
    flex: 1;
}

.best-topic-meta {
    margin: 0;
    font-size: 12pt;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}


/* Remove Bootstrap look from forum elements */
.forum, .board, .category, .header, .footer, .forum h3, .forum p {
    box-shadow: none !important;
    border-radius: 0 !important;
}

.left-most-btn {
    margin-right: 12px;
}

/* Links */
a {
    color: var(--link);
    text-decoration: none;
    font-family: inherit;
}
a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}
a:visited {
    color: var(--link-hover);
}
a:active {
    color: var(--link-hover);
}

/* Remove modern topic/comment styles from forum index */
.forum-container, .section, .section-header, .section-name, .topic-list, .topic, .topic-title, .topic-meta, .comment-count, .secret-section {
    all: unset;
    display: revert;
}

/* Utility for icons in h2 */
.board h2 .icon {
    font-size: 1.2em;
    margin-right: 6px;
}

/* Retro Topic Page Styles */
.topic-container {
    max-width: 900px;
    margin: 20px auto 30px auto;
    background: var(--panel);
    border: 1px solid var(--row-border);
    border-radius: 0;
    padding: 10px;
    font-family: var(--font-body);
    color: var(--ink);
    box-shadow: none;
    margin-bottom: 60px;
}

.topic-breadcrumbs {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 12pt;
    margin: 4px 4px 10px;
}

.topic-title-bar {
    background: #f3f3f3;
    border: 1px solid #b1b1b1;
    padding: 8px 10px;
    font-size: 12pt;
    margin: 0 4px 10px;
}

.comments-header {
    background: linear-gradient(0deg, var(--teal-dark), var(--teal));
    border: 1px solid #3e7270;
    color: #e9f7f7;
    font-size: 12pt;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 8px;
    margin: 10px 4px 0;
}

.comment-thread {
    margin-left: 0;
    padding-left: 0;
}

.comment {
    background: #e6e6e6;
    border-top: 1px solid #c6c6c6;
    border-bottom: 1px solid #b1b1b1;
    border-radius: 0;
    padding: 0;
    margin: 0;
    position: relative;
    color: var(--ink);
    font-family: var(--font-body);
    box-shadow: none;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.comment.has-children {
    margin-bottom: 8px;
}

.comment-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 110px;
}

.comment-sidebar {
    border-right: 1px solid #b1b1b1;
    background: #dfe6e7;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.comment-sidebar .user-icon {
    width: 48px;
    height: 48px;
}

.comment-side-meta {
    font-size: 12pt;
    color: var(--ink);
}

.comment-side-name {
    font-weight: bold;
}

.comment-side-count {
    color: var(--text-muted);
}

.comment-main {
    padding: 10px 12px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    font-size: 12pt;
    color: var(--text-muted);
    border-bottom: 1px solid #c6c6c6;
    padding-bottom: 6px;
    margin-bottom: 8px;
}

.comment-content {
    font-size: 12pt;
    color: var(--ink);
}

.comment-attachments {
    margin-top: 10px;
    font-size: 12pt;
}

.comment-attachments-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.comment-attachments-list img {
    max-width: 120px;
    max-height: 120px;
    border: 1px solid #b1b1b1;
    background: #fff;
    padding: 2px;
}

.no-comments {
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-body);
    padding: 10px 12px;
}
.comment.has-children {
    padding-bottom: 8px;
}
/* Comment form buttons */
.btn, .btn-primary, .btn-link, button {
    font-family: var(--font-ui) !important;
    font-size: 14pt !important;
    background: none !important;
    color: var(--link-accent) !important;
    border: 1px solid var(--link-accent) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 2px 10px !important;
    margin-top: 6px;
    margin-bottom: 0;
    transition: none;
}
.comment > .btn,
.comment > .btn-primary,
.comment > .btn-link,
.comment > button {
    margin: 8px 0 8px 190px;
}

.topic-post {
    margin: 0 4px 10px;
}
.btn:hover, .btn-primary:hover, .btn-link:hover, button:hover {
    background: var(--link-accent) !important;
    color: #181818 !important;
    border: 1px solid var(--link-accent) !important;
}
/* Remove Bootstrap form look */
.form-control, textarea, input[type="text"], input[type="email"], input[type="password"] {
    font-family: var(--font-body) !important;
    font-size: 12pt !important;
    background: #232323 !important;
    color: #e0e0e0 !important;
    border: 1px solid #333 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 6px 10px !important;
}

#secret_form_secret {
    margin-top: 10px;
}

.post {
    background-color: #1a1a1a;
    padding: 10px;
    margin: 10px 0;
    border-left: 3px solid #00ffcc;
}
.user {
    font-weight: bold;
    margin-bottom: 4px;
}
.timestamp {
    font-weight: normal;
    color: #888;
    font-size: 0.85em;
    margin-left: 10px;
}
.content {
    margin-top: 4px;
}

.post-meta {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 5px;
}
.avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
}
.userinfo {
    display: flex;
    flex-direction: column;
}
.bio {
    font-size: 0.85em;
    color: #999;
}

.meta {
    font-size: 0.75em;
    color: #777;
    margin-top: 2px;
}
.signature {
    margin-top: 10px;
    padding-top: 5px;
    border-top: 1px dashed #444;
    font-size: 0.85em;
    color: #888;
}

/* Retro Navbar */
.retro-navbar {
    display: none !important;
    width: 100%;
    background: linear-gradient(0deg, #1d3e3d, #3f7a78);
    color: #e7f5f4;
    font-family: var(--font-ui);
    font-size: 14pt;
    padding: 0.7em 30px 0.7em calc(var(--sidebar-width) + 30px);
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    border-bottom: 2px solid #1b2f2f;
    box-shadow: none;
    position: relative;
    z-index: 1;
}
.retro-navbar .navbar-title a {
    color: #e9fbfb;
    text-decoration: none;
    font-weight: bold;
    font-size: 14pt;
}
.retro-navbar .navbar-links {
    font-size: 12pt;
    display: inline-flex;
    align-items: center;
    gap: 1em;
}
.retro-navbar .navbar-links a {
    color: #c7e9e7;
    text-decoration: none;
    font-weight: normal;
}
.retro-navbar .navbar-links a:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* Retro Container */
.retro-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 0 calc(var(--sidebar-width) + 30px);
    background: none;
    position: relative;
    z-index: 1;
}

/* Retro Flash Messages */
.retro-flash-success {
    background: #181;
    color: #d0ffd0;
    border: 1px solid #393;
    padding: 8px 18px;
    margin: 18px 0;
    font-family: inherit;
    font-size: 1em;
    border-radius: 2px;
}
.retro-flash-error {
    background: #811;
    color: #ffd0d0;
    border: 1px solid #933;
    padding: 8px 18px;
    margin: 18px 0;
    font-family: inherit;
    font-size: 1em;
    border-radius: 2px;
}

.copyright-footer {
    position: static;
    left: auto;
    bottom: auto;
    margin: 40px 0 0 24px;
    padding: 0;
    z-index: 10;
    background: none;
    font-size: 1em;
    color: #b0b0b0;
    font-family: inherit;
}

.login-container {
    max-width: 420px;
    margin: 60px auto 0 auto;
    padding: 32px 32px 24px 32px;
    background: #232323;
    border: 1px solid #333;
    border-radius: 0;
    font-family: inherit;
    color: #e0e0e0;
}
.login-header {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 24px;
    color: #e0e0e0;
    font-family: inherit;
}
.login-container form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.login-container .form-label {
    font-size: 1.15em;
    margin-bottom: 4px;
    font-family: inherit;
}
.login-container .form-control {
    width: 100%;
    margin-bottom: 0;
    font-family: inherit;
}
.login-container .mb-3 {
    margin-bottom: 18px !important;
}
.login-container label[for="email"],
.login-container label[for="password"] {
    margin-bottom: 4px;
}
.login-container input[type="email"],
.login-container input[type="password"] {
    display: block;
    width: 100%;
    margin-bottom: 0;
    font-family: inherit;
}
.login-container .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.login-container button[type="submit"] {
    width: 100%;
    margin-top: 8px;
}

/* Remove .comment-body .reply-btn rule if present */
.reply-action {
    margin-top: 8px;
    display: inline-block;
}

.mb-3 {
    margin-bottom: 18px !important;
}

textarea, .form-control[type="textarea"] {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    resize: vertical !important;
    box-sizing: border-box;
    min-height: 90px !important;
}

.banned-message, .alert-danger {
    background: #a80000 !important;
    color: #fff !important;
    border: 1px solid #ff4444 !important;
    padding: 10px 14px !important;
    border-radius: 3px !important;
    font-family: var(--font-body);
    font-size: 12pt;
    margin-bottom: 12px;
    margin-top: 8px;
} 

.register-container {
    max-width: 420px;
    margin: 60px auto 0 auto;
    padding: 32px 32px 24px 32px;
    background: #232323;
    border: 1px solid #333;
    border-radius: 0;
    font-family: inherit;
    color: #e0e0e0;
    margin-bottom: 60px;
}
.register-header {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 24px;
    color: #e0e0e0;
    font-family: inherit;
}
.register-container form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.register-container .form-label {
    font-size: 1.15em;
    margin-bottom: 4px;
    font-family: inherit;
}
.register-container .form-control {
    width: 100%;
    margin-bottom: 0;
    font-family: inherit;
}
.register-container .mb-3 {
    margin-bottom: 18px !important;
}
.register-container .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.register-container button[type="submit"] {
    width: 100%;
    margin-top: 8px;
}

.resend-confirmation-link {
    margin-top: 18px;
    display: block;
    text-align: center;
    color: #00e0c0;
    text-decoration: underline;
    font-size: 1em;
}

.user-container {
    display: flex;
    align-items: center;
    gap: 6px; /* Space between the image and username */
    font-family: inherit;
    color: #e0e0e0;
}

.user-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.username {
    font-size: 1em;
    font-weight: bold;
}

.inline-meta {
    display: inline-flex;
    align-items: center;
    gap: 4px; /* Space between 'by' and the user template */
}

.inline-meta span {
    font-size: 1em;
    font-weight: normal;
    color: #2d2d2d;
    margin-right: 8px;
}

@media (max-width: 900px) {
    body::before {
        display: none;
    }

    body::after,
    html::before,
    html::after,
    .retro-container::before,
    .retro-container::after {
        display: none;
    }

    .retro-navbar {
        padding: 0.7em 16px;
        font-size: 1.05em;
    }

    .site-header__inner {
        padding: 0;
        min-height: 0;
    }

    .site-header__cat {
        width: 100%;
        margin-left: 0;
    }

    .site-header__face {
        width: 100%;
    }


    .retro-container {
        padding: 0 16px;
    }
}
