/* ======================================================
   社内ポータル - Linear/Notion風ミニマルデザイン
   ====================================================== */

*, *::before, *::after { box-sizing: border-box; }

:root {
    --bg: #fafafa;
    --bg-card: #ffffff;
    --bg-hover: #f4f4f4;
    --bg-subtle: #f8f8f8;
    --border: #e8e8e8;
    --border-strong: #d4d4d4;
    --text: #1a1a1a;
    --text-secondary: #5a5a5a;
    --text-muted: #8a8a8a;
    --text-faint: #aaaaaa;
    --accent: #1a1a1a;
    --accent-soft: #2a2a2a;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --pinned: #fef3c7;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 2px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 8px;
    --radius-lg: 12px;
    --sidebar-width: 240px;
    --font-sans: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ========== Sidebar ========== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: #ffffff;
    border-right: 1px solid var(--border);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    z-index: 20;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
}

.brand-mark {
    width: 28px; height: 28px;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.02em;
}

.brand-name {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.01em;
}

.sidebar-section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 14px 10px 6px;
    font-weight: 500;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 500;
    transition: background .12s, color .12s;
}

.nav-item:hover {
    background: var(--bg-hover);
    color: var(--text);
}

.nav-item.active {
    background: var(--bg-hover);
    color: var(--text);
    font-weight: 600;
}

.nav-item svg {
    flex-shrink: 0;
    opacity: .75;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-chip {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text);
    min-width: 0;
    transition: background .12s;
}

.user-chip:hover { background: var(--bg-hover); }

.user-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logout-btn {
    width: 28px; height: 28px;
    border: none;
    background: transparent;
    border-radius: 6px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .12s, color .12s;
}
.logout-btn:hover { background: var(--bg-hover); color: var(--text); }

/* ========== Main ========== */
main.has-sidebar {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 32px 64px;
}

.page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 4px;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 13.5px;
    margin: 0;
}

.section-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.section-more {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}
.section-more:hover { color: var(--text); }

.dash-section { margin-bottom: 40px; }

/* ========== Buttons ========== */
.btn-primary, .btn-ghost, .btn-danger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all .12s;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover { background: #000; }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }

.btn-ghost {
    background: #fff;
    color: var(--text);
    border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-hover); border-color: var(--border-strong); }

.btn-danger {
    background: #fff;
    color: var(--danger);
    border-color: #fecaca;
}
.btn-danger:hover { background: #fef2f2; }

.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ========== Avatar ========== */
.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    font-weight: 600;
    color: #fff;
    user-select: none;
}
.avatar-initial { color: #fff; }
img.avatar { object-fit: cover; }

/* ========== Cards / Lists ========== */
.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.article-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    transition: border-color .12s, box-shadow .12s, transform .12s;
}

.article-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow);
}

.article-card-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    padding: 2px 8px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
}

.pin-badge {
    display: inline-flex;
    padding: 2px 8px;
    background: var(--pinned);
    color: #92400e;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.article-date {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 11.5px;
}

.article-card-title {
    font-size: 14.5px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-excerpt {
    font-size: 12.5px;
    color: var(--text-secondary);
    margin: 0 0 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ========== Link Cards ========== */
.link-section { margin-bottom: 32px; }

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
}

.link-grid.compact {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.link-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .12s, box-shadow .12s;
    overflow: hidden;
}

.link-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow);
}

.link-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    color: var(--text);
}

.link-card.compact .link-card-inner {
    align-items: center;
    padding: 10px 12px;
}

.link-icon {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.link-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.link-icon-fallback {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
}

.link-body {
    flex: 1;
    min-width: 0;
}

.link-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.link-meta {
    margin-top: 6px;
    display: flex;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted);
}

.link-url-hint, .link-clicks { font-variant-numeric: tabular-nums; }

.link-menu-btn {
    position: absolute;
    top: 6px; right: 6px;
    width: 26px; height: 26px;
    border: none;
    background: transparent;
    border-radius: 4px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .12s, background .12s;
}

.link-card:hover .link-menu-btn { opacity: 1; }
.link-menu-btn:hover { background: var(--bg-hover); color: var(--text); }

/* ========== Filter / Search ========== */
.filter-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-input {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 12px;
    flex: 1;
    min-width: 240px;
    transition: border-color .12s;
}

.search-input:focus-within { border-color: var(--accent); }

.search-input svg { color: var(--text-muted); }

.search-input input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--text);
}

.filter-bar select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
}

.clear-filter {
    font-size: 12.5px;
    color: var(--text-muted);
}
.clear-filter:hover { color: var(--text); }

/* ========== Tags ========== */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.tag {
    display: inline-flex;
    padding: 3px 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    color: var(--text-secondary);
    transition: all .12s;
}

.tag:hover, .tag.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ========== Article view ========== */
.article-view .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { color: var(--text-faint); }

.article-full {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 56px;
    max-width: 780px;
    margin: 0 auto;
}

.article-header { margin-bottom: 32px; }

.article-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 8px 0 16px;
    line-height: 1.25;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-muted);
}

.meta-sep { color: var(--text-faint); }

.article-actions {
    margin-top: 16px;
    display: flex;
    gap: 8px;
}

.article-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

.article-content h1, .article-content h2, .article-content h3, .article-content h4 {
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: 2em;
    margin-bottom: 0.6em;
}
.article-content h2 { font-size: 1.5em; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.article-content h3 { font-size: 1.2em; }
.article-content h4 { font-size: 1.05em; }

.article-content p { margin: 1em 0; }
.article-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.article-content ul, .article-content ol { padding-left: 1.5em; margin: 1em 0; }
.article-content li { margin: 0.3em 0; }

.article-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 2px 0 2px 16px;
    margin: 1.2em 0;
    color: var(--text-secondary);
    font-style: italic;
}

.article-content code {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.88em;
    font-family: "SF Mono", Menlo, Monaco, Consolas, monospace;
}

.article-content pre {
    background: #1a1a1a;
    color: #e4e4e4;
    padding: 16px 18px;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 1.4em 0;
    font-size: 13px;
}
.article-content pre code {
    background: transparent;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1em 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: 13.5px;
}
.article-content th, .article-content td {
    border: 1px solid var(--border);
    padding: 8px 12px;
    text-align: left;
}
.article-content th { background: var(--bg-subtle); font-weight: 600; }

.article-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2em 0;
}

.article-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ========== Editor ========== */
.editor-page {
    max-width: 900px;
}

.editor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.editor-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.editor-title {
    width: 100%;
    border: none;
    outline: none;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    font-family: inherit;
    color: var(--text);
    background: transparent;
}
.editor-title::placeholder { color: var(--text-faint); }

.editor-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.meta-select, .meta-tags {
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    background: #fff;
}
.meta-select { flex: 0 0 200px; }
.meta-tags { flex: 1; }

.check-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
}

/* TinyMCE外枠の調整 */
.tox.tox-tinymce {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
}

/* ========== Forms (general) ========== */
form label {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 5px;
    margin-top: 12px;
}

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=url],
form select,
form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13.5px;
    font-family: inherit;
    background: #fff;
    color: var(--text);
    transition: border-color .12s;
}
form input:focus, form select:focus, form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
form input:disabled, form textarea:disabled { background: var(--bg-subtle); color: var(--text-muted); }

.hint {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 4px;
}

.settings-form { max-width: 480px; }
.settings-form button { margin-top: 16px; }

/* ========== Modal ========== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal.hidden { display: none; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.35);
    backdrop-filter: blur(2px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 480px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    padding: 24px 28px;
}

.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.modal-head h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    width: 28px; height: 28px;
    border: none;
    background: transparent;
    font-size: 20px;
    color: var(--text-muted);
    border-radius: 6px;
}
.modal-close:hover { background: var(--bg-hover); color: var(--text); }

.modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.modal-actions-right { display: flex; gap: 8px; margin-left: auto; }

.hidden { display: none !important; }

/* ========== Admin ========== */
.tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}
.tab {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color .12s, border-color .12s;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--text); border-bottom-color: var(--accent); font-weight: 600; }

.admin-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 20px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.data-table th {
    text-align: left;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.data-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.data-table tr:hover { background: var(--bg-subtle); }
.data-table code {
    font-family: "SF Mono", Menlo, monospace;
    font-size: 11.5px;
    background: var(--bg-subtle);
    padding: 2px 6px;
    border-radius: 3px;
}

.role-chip {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 500;
}
.role-admin { background: #fef3c7; color: #92400e; }
.role-editor { background: #dbeafe; color: #1e40af; }
.role-viewer { background: #f3f4f6; color: #525252; }

.sortable-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sortable-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}
.sortable-list li:last-child { border-bottom: none; }
.sortable-list .cat-name {
    flex: 1;
    border: 1px solid transparent;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
}
.sortable-list .cat-name:hover { background: var(--bg-subtle); }
.sortable-list .cat-name:focus { border-color: var(--border); background: #fff; }

/* ========== Flash / Empty ========== */
.flash {
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    margin-bottom: 20px;
    border: 1px solid;
}
.flash-success { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.flash-error { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.flash-info { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }

.empty-state {
    text-align: center;
    padding: 56px 20px;
    color: var(--text-muted);
    background: #fff;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
}
.empty-state p { margin: 0 0 16px; }

.pin-dot {
    font-size: 10px;
    opacity: .8;
}

/* ========== Auth / Login ========== */
body.auth-body {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}
.auth-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 400px;
    max-width: 100%;
    box-shadow: var(--shadow);
}
.auth-brand { margin-bottom: 20px; }
.auth-brand .brand-mark { width: 40px; height: 40px; font-size: 18px; border-radius: 8px; }
.auth-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 4px; }
.auth-subtitle { color: var(--text-muted); font-size: 13px; margin: 0 0 28px; }
.auth-form label { margin-top: 14px; }
.auth-form button { margin-top: 24px; }
.auth-error { background: #fef2f2; color: #b91c1c; padding: 10px 14px; border-radius: var(--radius); font-size: 13px; margin-bottom: 16px; border: 1px solid #fecaca; }

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 12px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .sidebar-brand { border-bottom: none; padding: 4px 8px; margin-bottom: 0; flex: 1; }
    .sidebar-nav { flex-direction: row; flex-wrap: wrap; gap: 4px; width: 100%; margin-top: 8px; }
    .sidebar-section-label { display: none; }
    .sidebar-footer { width: 100%; margin-top: 8px; padding-top: 8px; }
    main.has-sidebar { margin-left: 0; }
    .container { padding: 24px 16px 48px; }
    .article-full { padding: 32px 20px; }
    .article-title { font-size: 24px; }
    .page-title { font-size: 20px; }
}
