/* reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMaxSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    background-color: #f5f5f5;
}

/* typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 28px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }

label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

small, .form-help {
    font-size: 14px;
    color: #666666;
}

/* login container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 32px 20px;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 48px 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0,1);
}

.login-title {
    margin-bottom: 24px;
    text-align: center;
}

/* logout container */
.logout-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 32px 20px;
}

.logout-card {
    width: 400px;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 48px 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logout-card p {
    margin-bottom: 16px;
    color: #666666;
}

.logout-title {
    margin-bottom: 16px;
    text-align: center;
}

.logout-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* form styles */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

.form-group abbr {
    text-decoration: none;
    color: #cc0000;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #0070cc;
    box-shadow: 0 0 0 3px rgba(0, 112, 204, 0.2);
}

.form-input::placeholder {
    color: #999999;
}

.form-help {
    display: block;
    margin-top: 4px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-label {
    cursor:pointer;
    margin: 0;
    font-size: 14px;
}

/* Buttons */
.btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

.btn-primary {
    background-color: #0070cc;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
    background-color: #0056a3;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-full-width {
    width: 100%;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #0070cc;
    border: 1px solid #cccccc;
}

.btn-secondary:hover {
    background-color: #eeeeee;
}

.btn-destructive {
    background-color: #cc0000;
    color: #ffffff;
}

.btn-destructive:hover {
    background-color: #990000;
}

/* Login footer */
.login-footer {
    margin-top: 16px;
    text-align: center;
}

.link-secondary {
    font-size: 14px;
    color: #0070cc;
    text-decoration: none;
}

.link-secondary:hover {
    text-decoration: underline;
}


/* Alerts */
.alert {
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-icon {
    flex-shrink: 0;
    font-size: 20px;
}

.alert-text{
    flex-grow: 1;
}

.alert-error {
    background-color: #ffe6e6;
    color: #cc0000;
    border-left: 4px solid #cc0000;
}

.alert-success {
    background-color: #e6f7e6;
    color: #0070cc;
    border-left: 4px solid #00aa00;
}

.alert-info {
    background-color: #e6f0ff;
    color: #0070cc;
    border-left: 4px solid #0070cc;
}

/* Admin header when logged in */
.admin-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-title {
    font-size: 28px;
    margin: 0;
}

.user-name {
    font-size: 14px;
    color: #666666;
}

/* Main content */
.main-content {
    padding: 24px 32px;
}

/* responsive design */
@media (max-width: 768px) {
    .login-card {
        padding: 32px 16px;
    }

    .logout-card {
        padding: 32px 16px;
    }

    .admin-header {
        flex-direction: column;
        gap: 12px;
    }

    .header-left, .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .main-content {
        padding: 16px;
    }

    .btn, .form-input {
        min-height: 40px;
    }

    .logout-actions {
        flex-direction: column;
    }

    .logout-actions .btn {
        width: 100%;
    }
}

/* interactive element touch targets */
input[type="checkbox"], a {
    min-width: 40px;
    min-height: 40px;
}

input[type="checkbox"] {
    cursor: pointer;
}

/* admin panel styles */
.admin-container {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.admin-sidebar {
    width: 200px;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 16px;
    height: fit-content;
}

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

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #333333;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 4px;
    transition: background-color 0.2s;
}

.nav-link:hover {
    background-color: #f5f5f5;
}

.nav-link.active {
    background-color: #0070cc;
    color: #ffffff;
}

.admin-content {
    flex: 1;
}

.admin-content h1 {
    margin-bottom: 24px;
}

/* Metrics grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.metric-card {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 1 3px rgba(0, 0, 0, 0.1);
}

.metric-title {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 32px;
    font-weight: 600;
    color: #0070cc;
    margin: 0;
}

/* Tables */
.accounts-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.accounts-table thead {
    background-color: #f5f5f5;
}

.accounts-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #eeeeee;
}

.accounts-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eeeeee;
}

.account-row:hover {
    background-color: #f9f9f9;
}

.account-actions {
    display: flex;
    gap: 8px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background-color: #e6f7e6;
    color: #00aa00;
}

.status-inactive {
    background-color: #ffe6e6;
    color: #cc0000;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 48px 32px;
    background-color: #ffffff;
    border-radius: 4px;
}

.empty-state h2 {
    color: #999999;
    margin-bottom: 12px;
}

.empty-state p {
    color: #666666;
    margin-bottom: 24px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
}

/* Forms */
.form-section {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 32px;
    max-width: 500px;
}

.info-box {
    background-color: #e6f0ff;
    border-left: 4px solid #0070cc;
    padding: 16px;
    border-radius: 4px;
    margin-top: 32px;
}

.info-box h3 {
    margin-top: 0;
    color: #0070cc;
}

.info-box ul {
    margin: 12px 0;
    padding-left: 20px;
}

info-box li {
    margin-bottom: 8px;
    color: #333333;
}

/* Dashboard section */
.dashboard-section {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 24px;
    margin-top: 24px;
}

.dashboard-section h2 {
    margin-top: 0;
}

.dashboard-section p {
    margin: 12px 0;
}

/* Post editor styles */
.editor-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #333333;
}


/* quill editor */
.quill-editor {
    min-height: 400px;
    background-color: #ffffff;
}

.quill-editor .ql-editor {
    min-height: 400px;
    font-size: 16px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMaxSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Captions in editor preview */
.ql-editor p.ql-caption {
    text-align: center;
    font-size: 0.85em;
    color: #888888;
    font-style: italic;
    margin: 4px 0 20px;
}

/* Editor actions */
.editor-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.button-group {
    display: flex;
    gap: 8px;
}

.link-secondary {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
}

.link-secondary:hover {
    color: #333333;
    text-decoration: underline;
}

/* status badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.status-draft {
    background-color: #0070cc;
    color: #ffffff;
}

.status-published {
    background-color: #00aa00;
    color: #ffffff;
}

/* responsive - editor actions on mobile */
@media (max-width: 767px) {
    .editor-actions {
        flex-direction: column;
        gap: 12px;
    }

    .button-group {
        width: 100%;
        flex-direction: column;
    }

    .button-group button {
        width: 100%;
    }
}

/* Existing token references */
:root {
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --color-dominant: #f5f5f5;
    --color-secondary: #ffffff;
    --color-accent: #0070cc;
    --color-destructive: #cc0000;
    --color-text-neutral: #333333;
    --color-text-muted: #666666;
    --color-success: #00aa00;
}

/* Link styles */
.link-primary {
    color: #0070cc;
    text-decoration: none;
    font-size: 16px;
}

.link-primary:hover {
    text-decoration: underline;
}

/* Post list table styles */
.posts-table {
    width: 100%;
    background-color: #ffffff;
    border-collapse: collapse;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2px;
}

.posts-table thead {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.posts-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #333333;
}

.posts-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.posts-table tbody tr:hover {
    background-color: #f9f9f9;
}

.posts-table td {
    padding: 12px 16px;
    font-size: 14px;
    color: #333333;
}

.post-row:last-child {
    border-bottom: none;
}

.post-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

/* text button styles for post actions */
.btn-text {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.btn-text.btn-primary {
    color: #0070cc;
}

.btn-text.btn-primary:hover {
    text-decoration: underline;
}

.btn-text.btn-secondary {
    color: #666666;
}

.btn-text.btn-secondary:hover {
    text-decoration: underline;
}

.btn-text.btn-destructive {
    color: #cc0000;
}

.btn-text.btn-destructive:hover {
    text-decoration: underline;
}

/* centred text for status and date */
.text-center {
    text-align: center;
}

/* Muted text for empty states and helpers */
.muted-text {
    color: #666666;
}

/* PUBLUC BLOG STYLES */

/* Public header */
.public-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 16px 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.public-site-title {
    grid-column: 2;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    color: #333333;
    text-align: center;
}

.public-header-nav {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 16px;
}

.public-header-nav-link {
    font-size: 14px;
    color: #555555;
    text-decoration: none;
}

.public-header-nav-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
}

/* public footer */
.public-footer {
    background-color: #f9f9f9;
    border-top: 1px solid #eeeeee;
    padding: 24px 32px;
    text-align: center;
    margin-top: 48px;
}

.public-footer-text {
    margin: 0;
    color: #666666;
    font-size: 14px;
}

/* public main content */
.public-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* Cloud carousel */
.cloud-carousel {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 36px;
    overflow: hidden;
}

.cloud-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.cloud-carousel-item {
    position: absolute;
    left: 50%;
    top: 50%;
    will-change: transform, opacity;
}

.cloud-carousel-item img {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    display: block;
    pointer-events: none;
    user-select: none;
}

.cloud-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #dddddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444444;
    transition: background-color 0.15s;
}

.cloud-carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.cloud-carousel-prev {
    left: 0;
}

.cloud-carousel-next {
    right: 0;
}

/* Public search styles */
.public-search {
    margin-bottom: 32px;
}

.public-search form {
    display: flex;
    gap: 8px;
}

.public-search-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.public-search-input:focus {
    outline: none;
    border-color: #0070cc;
    box-shadow: 0 0 0 3px rgba(1, 112, 204, 0.2);
}

.public-search-input::placeholder {
    color: #999999;
}

.public-search-button {
    padding: 12px 24px;
    background-color: #0070cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.public-search-button:hover {
    background-color: #0056a3;
}

/* Public posts container */
.public-posts-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* public card, post listing */
.public-card {
    display: flex;
    gap: 24px;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.public-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.public-card-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.public-card-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.public-card-author {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
}

.public-card-date {
    font-size: 12px;
    color: #666666;
}

.public-card-read-time {
    font-size: 12px;
    color: #666666;
}

.public-card-byline {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.public-card-avatar {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.public-card-byline-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.public-card-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.public-card-title a {
    color: #0070cc;
    text-decoration: none;
}

.public-card-title a:hover {
    text-decoration: underline;
}

.public-card-excerpt {
    margin: 8px 0 0 0;
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}

.public-card-views {
    font-size: 12px;
    color: #999999;
    margin-top: 8px;
}

/* Public pagination */
.public-pagination {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #eeeeee;
}

.public-pagination-info {
    font-size: 14px;
    color: #666666;
}

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

.public-pagination-link {
    padding: 8px 16px;
    background-color: #0070cc;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.public-pagination-link:hover {
    background-color: #0056a3;
}

.public-pagination-link-disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    pointer-events: none;
}

/* public no posts */
.public-no-posts {
    text-align: center;
    padding: 48px 32px;
}

.public-no-posts p {
    color: #666666;
    font-size: 16px;
}

/* public post (detail page) */
.public-post {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 40px;
}

.public-post-header {
    margin-bottom: 32px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 24px;
}

.public-post-title {
    margin: 0 0 16px 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: #333333;
}

.public-post-byline {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666666;
}

.public-post-byline span {
    display: flex;
    align-items: center;
}

.public-post-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

.public-post-content h1,
.public-post-content h2,
.public-post-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.public-post-content h1 {
    font-size: 28px;
}

.public-post-content h2 {
    font-size: 24px;
}

.public-post-content h3 {
    font-size: 20px;
}

.public-post-content p {
    margin-bottom: 16px;
}

.public-post-content a {
    color: #0070cc;
    text-decoration: underline;
}

.public-post-content a:hover {
    color: #0056a3;
}

.public-post-content blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid #0070cc;
    background-color: #f9f9f9;
    font-style: italic;
    color: #555555;
}

.public-post-content code {
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    color: #cc0000;
}

.public-post-content pre {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 16px;
    border-radius: 4px;
    overflow-x: auto;
    margin: 24px 0;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
}

.public-post-content pre code {
    background-color: transparent;
    padding: 0;
    color: #ecf0f1;
}

.public-post-content img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 4px;
}

.public-post-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 24px 0;
}

.public-post-content p.ql-caption {
    text-align: center;
    font-size: 0.85em;
    color: #888888;
    font-style: italic;
    margin: -12px 0 24px;
}

.public-post-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #eeeeee;
}

.public-post-back-link {
    color: #0070cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.public-post-back-link:hover {
    text-decoration: underline;
}

/* 404 error page */
.public-error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 32px 20px;
}

.public-error-content {
    text-align: center;
    max-width: 100%;
}

.public-error-code {
    font-size: 72px;
    font-weight: 700;
    color: #cccccc;
    margin: 0 0 16px 0;
    line-height: 1;
}

.public-error-message {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px 0;
}

.public-error-description {
    font-size: 16px;
    color: #666666;
    margin: 0 0 24px 0;
}

.public-error-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0070cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.public-error-link:hover {
    background-color: #0056a3;
}


/* RESPONSIVE DESIGN FOR PUBLIC PAGES */
@media (max-width: 768px){
    .public-header {
        padding: 16px 20px;
    }

    .public-site-title {
        font-size: 24px;
    }

    .public-footer {
        padding: 16px 20px;
        margin-top: 32px;
    }

    .public-content {
        max-width: 100%;
        padding: 16px;
    }

    .public-search form {
        width: 100%;
    }

    .public-search-button {
        width: 100%;
    }

    .public-card {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .public-card-image {
        width: 100%;
        height: auto;
        max-height: 250px;
    }

    .public-pagination {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .public-pagination-links {
        width: 100%;
    }

    .public-pagination-link {
        flex: 1;
        text-align: center;
    }

    .public-post {
        font-size: 24px;
    }

    .public-post-title {
        font-size: 24px;
    }

    .public-post-byline {
        flex-direction: column;
        gap: 8px;
    }

    .public-post-content {
        font-size: 16px;
    }

    .public post-content h1 {
        font-size: 24px;
    }

    .public post-content h2 {
        font-size: 20px;
    }

    .public post-content h3 {
        font-size: 18px;
    }

    .public-error-code {
        font-size: 56px;
    }

    .public-error-message {
        font-size: 20px;
    }
}