:root {
    --pp-blue: #0b168f;
    --pp-blue-light: #2563eb;
    --pp-purple: #7c3aed;
    --pp-ink: #172033;
    --pp-muted: #6f7890;
    --pp-border: #e6eaf2;
    --pp-surface: #ffffff;
    --pp-soft: #f5f7fb;
}

body {
    background: var(--pp-soft);
}

.live-news-section {
    position: relative;
    padding: 20px 18px 34px;
    background: var(--pp-soft);
}

.live-news-container {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.live-news-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.live-news-kicker {
    color: var(--pp-blue-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.live-news-kicker i {
    color: #f59e0b;
}

.live-news-heading h2 {
    margin: 7px 0 4px;
    color: var(--pp-ink);
    font-size: clamp(22px, 3vw, 34px);
    letter-spacing: -.04em;
}

.live-news-heading p {
    margin: 0;
    color: var(--pp-muted);
    font-size: 12px;
}

.live-news-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 10px 13px;
    border: 1px solid var(--pp-border);
    border-radius: 10px;
    background: var(--pp-surface);
    color: var(--pp-blue-light);
    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
}

.live-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.live-news-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--pp-border);
    border-radius: 16px;
    background: var(--pp-surface);
    box-shadow: 0 9px 26px rgba(22, 35, 76, .06);
}

.live-news-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.live-news-image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8edf8;
}

.live-news-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.live-news-card:hover .live-news-image-wrap img {
    transform: scale(1.045);
}

.live-news-image-wrap span {
    position: absolute;
    left: 11px;
    bottom: 10px;
    padding: 5px 7px;
    border-radius: 6px;
    background: rgba(11, 22, 143, .9);
    color: #fff;
    font-size: 9px;
    font-weight: 750;
}

.live-news-card-body {
    padding: 14px;
}

.live-news-card-body h3 {
    display: -webkit-box;
    min-height: 2.7em;
    margin: 0 0 7px;
    overflow: hidden;
    color: var(--pp-ink);
    font-size: 15px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.live-news-card-body p {
    display: -webkit-box;
    min-height: 2.7em;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--pp-muted);
    font-size: 11px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.live-news-card-body small {
    color: var(--pp-muted);
    font-size: 10px;
}

.news-shell {
    min-height: 100vh;
    background: var(--pp-soft);
    color: var(--pp-ink);
    font-family: "Inter", Arial, sans-serif;
}

.news-shell-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px max(18px, calc((100% - 1240px) / 2));
    border-bottom: 1px solid var(--pp-border);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 5px 20px rgba(22, 35, 76, .04);
}

.news-shell-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pp-ink);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.news-shell-brand img {
    width: 112px;
    height: 42px;
    object-fit: contain;
}

.news-shell-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.news-shell-nav a {
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--pp-muted);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.news-shell-nav a:hover {
    background: #eef2ff;
    color: var(--pp-blue-light);
}

.news-shell-nav button,
.news-shell-nav .news-shell-logout-button {
    font: inherit;
}

.news-shell-icon {
    position: relative;
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--pp-border);
    border-radius: 10px;
    background: #fff;
    color: var(--pp-ink);
    cursor: pointer;
}

.news-shell-icon:hover,
.news-shell-icon.is-enabled {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: var(--pp-blue-light);
}

.news-shell-logout {
    margin: 0;
}

.news-shell-logout-button {
    padding: 8px 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--pp-muted);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
}

.news-shell-logout-button:hover {
    background: #fff1f2;
    color: #dc3545;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #f59e0b;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
}

.news-page-container,
.admin-simple-container {
    width: min(1240px, calc(100% - 36px));
    margin: 0 auto;
    padding: 32px 0 50px;
}

.news-page-heading,
.admin-simple-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.news-page-heading h1,
.admin-simple-heading h1 {
    margin: 4px 0 5px;
    font-size: clamp(24px, 4vw, 42px);
    letter-spacing: -.045em;
}

.news-page-heading p,
.admin-simple-heading p {
    margin: 0;
    color: var(--pp-muted);
    font-size: 12px;
}

.page-kicker {
    color: var(--pp-blue-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.news-card {
    overflow: hidden;
    border: 1px solid var(--pp-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 35, 76, .05);
}

.news-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #e8edf8;
}

.news-card-body {
    padding: 15px;
}

.news-card-body h2 {
    margin: 7px 0 7px;
    font-size: 17px;
    line-height: 1.3;
}

.news-card-body h2 a,
.news-article a {
    color: inherit;
    text-decoration: none;
}

.news-card-body p {
    display: -webkit-box;
    min-height: 2.8em;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--pp-muted);
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--pp-muted);
    font-size: 10px;
}

.news-category-badge {
    color: var(--pp-blue-light);
    font-weight: 800;
}

.pagination-wrap {
    margin-top: 24px;
}

.news-article {
    width: min(860px, 100%);
    margin: 0 auto;
    padding: clamp(20px, 5vw, 48px);
    border: 1px solid var(--pp-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(22, 35, 76, .06);
}

.news-article h1 {
    margin: 10px 0 12px;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.news-article-cover {
    width: 100%;
    max-height: 500px;
    margin: 20px 0 26px;
    border-radius: 14px;
    object-fit: cover;
}

.news-article-content {
    color: #354056;
    font-size: 16px;
    line-height: 1.8;
    white-space: pre-line;
}

.flash-message {
    width: min(1240px, calc(100% - 36px));
    margin: 18px auto 0;
    padding: 11px 14px;
    border: 1px solid #bdeed2;
    border-radius: 10px;
    background: #ecfdf3;
    color: #117a4a;
    font-size: 12px;
}

.flash-info {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.site-flash {
    position: fixed;
    z-index: 1600;
    top: 18px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: min(520px, calc(100% - 32px));
    padding: 12px 15px;
    border: 1px solid transparent;
    border-radius: 12px;
    box-shadow: 0 15px 36px rgba(15, 23, 42, .14);
    font-size: 12px;
    transform: translateX(-50%);
}

.site-flash-success {
    border-color: #bdeed2;
    background: #ecfdf3;
    color: #117a4a;
}

.site-flash-info {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.site-toast {
    position: fixed;
    z-index: 1700;
    right: 18px;
    bottom: 18px;
    max-width: min(360px, calc(100% - 36px));
    padding: 12px 15px;
    border: 1px solid #1d4ed8;
    border-radius: 11px;
    background: #172554;
    color: #fff;
    box-shadow: 0 15px 36px rgba(15, 23, 42, .2);
    font-size: 11px;
    line-height: 1.45;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .2s ease, transform .2s ease;
}

.site-toast.is-hidden {
    opacity: 0;
    transform: translateY(8px);
}

.public-page-container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 38px 0 64px;
}

.public-page-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
}

.public-page-heading h1 {
    margin: 6px 0 6px;
    color: var(--pp-ink);
    font-size: clamp(28px, 4vw, 45px);
    letter-spacing: -.05em;
}

.public-page-heading p {
    margin: 0;
    color: var(--pp-muted);
    font-size: 13px;
}

.public-heading-actions,
.profile-card-actions,
.public-form-footer {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.public-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.public-button:hover {
    transform: translateY(-1px);
}

.public-button-primary {
    background: linear-gradient(135deg, var(--pp-blue), var(--pp-blue-light));
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, .18);
}

.public-button-light {
    border-color: var(--pp-border);
    background: #fff;
    color: var(--pp-ink);
}

.public-button-light:hover {
    border-color: #bfdbfe;
    color: var(--pp-blue-light);
}

.public-button-danger {
    border-color: #fecdd3;
    background: #fff1f2;
    color: #be123c;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    gap: 17px;
    margin-bottom: 17px;
}

.profile-side-stack {
    display: grid;
    gap: 17px;
}

.profile-card,
.public-form-card {
    border: 1px solid var(--pp-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(22, 35, 76, .055);
}

.profile-identity-card {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 188px;
    padding: 26px;
}

.profile-avatar-large {
    display: grid;
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffad00, #ff7a00);
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    box-shadow: 0 12px 25px rgba(255, 145, 0, .22);
}

.profile-identity-copy {
    min-width: 0;
    flex: 1;
}

.profile-role-badge {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 7px;
    background: #eef2ff;
    color: var(--pp-blue-light);
    font-size: 10px;
    font-weight: 800;
}

.profile-identity-copy h2,
.profile-notification-card h2,
.profile-section-heading h2 {
    margin: 8px 0 4px;
    color: var(--pp-ink);
    font-size: 20px;
    letter-spacing: -.03em;
}

.profile-identity-copy p,
.profile-notification-card p {
    margin: 0;
    color: var(--pp-muted);
    font-size: 12px;
    overflow-wrap: anywhere;
}

.profile-notification-card,
.profile-stat-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 22px;
}

.profile-card-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    font-size: 17px;
}

.profile-card-icon-orange {
    background: #fff4df;
    color: #f59e0b;
}

.profile-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px !important;
}

.profile-status-active {
    color: #148553 !important;
}

.profile-stat-card {
    display: block;
}

.profile-stat-card > span,
.profile-stat-card small {
    display: block;
    color: var(--pp-muted);
    font-size: 11px;
}

.profile-stat-card strong {
    display: block;
    margin: 5px 0 5px;
    color: var(--pp-ink);
    font-size: 30px;
    letter-spacing: -.05em;
}

.profile-articles-card {
    padding: 24px;
}

.profile-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 13px;
}

.profile-section-heading h2 {
    margin-bottom: 0;
}

.profile-article-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 0;
    border-top: 1px solid var(--pp-border);
}

.profile-article-copy {
    min-width: 0;
}

.profile-article-category {
    color: var(--pp-blue-light);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.profile-article-copy h3 {
    margin: 5px 0;
    color: var(--pp-ink);
    font-size: 15px;
}

.profile-article-copy p {
    display: -webkit-box;
    margin: 0 0 7px;
    overflow: hidden;
    color: var(--pp-muted);
    font-size: 11px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.profile-article-copy small {
    color: var(--pp-muted);
    font-size: 10px;
}

.profile-empty-state {
    padding: 35px 15px 25px;
    color: var(--pp-muted);
    text-align: center;
}

.profile-empty-state > i {
    color: #93a3c8;
    font-size: 32px;
}

.profile-empty-state h3 {
    margin: 12px 0 6px;
    color: var(--pp-ink);
    font-size: 17px;
}

.profile-empty-state p {
    margin: 0 auto 16px;
    max-width: 420px;
    font-size: 12px;
}

/* =========================================================
   EDIT PROFIL PENGGUNA
========================================================= */

.profile-avatar-large {
    overflow: hidden;
}

.profile-avatar-large img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-editor-card {
    margin-bottom: 17px;
    padding: 24px;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-form-section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.profile-form-kicker {
    color: var(--pp-blue-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.profile-form-section-heading h2 {
    margin: 5px 0 0;
    color: var(--pp-ink);
    font-size: 20px;
    letter-spacing: -.035em;
}

.profile-form-lock,
.profile-form-optional {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border: 1px solid var(--pp-border);
    border-radius: 8px;
    color: var(--pp-muted);
    font-size: 10px;
    font-weight: 750;
    white-space: nowrap;
}

.profile-form-lock i {
    color: var(--pp-blue-light);
}

.profile-photo-editor {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px;
    border: 1px dashed var(--pp-border);
    border-radius: 13px;
    background: var(--pp-soft);
}

.profile-photo-preview {
    display: grid;
    width: 86px;
    height: 86px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--pp-blue), var(--pp-blue-light));
    color: #fff;
    font-size: 27px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(37, 99, 235, .18);
}

.profile-photo-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-photo-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.profile-form-label {
    color: var(--pp-ink);
    font-size: 11px;
    font-weight: 800;
}

.profile-form-label em {
    color: #dc3545;
    font-style: normal;
}

.profile-photo-copy input[type="file"] {
    width: 100%;
    max-width: 430px;
    padding: 10px;
    border: 1px dashed var(--pp-border);
    border-radius: 10px;
    background: #fff;
    color: var(--pp-ink);
    font: inherit;
    font-size: 11px;
    cursor: pointer;
}

.profile-form-help,
.profile-form-optional {
    color: var(--pp-muted);
    font-size: 10px;
    line-height: 1.45;
}

.profile-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.profile-form-field {
    display: grid;
    align-content: start;
    gap: 7px;
    min-width: 0;
}

.profile-form-field-full {
    grid-column: 1 / -1;
}

.profile-form-field input {
    width: 100%;
    min-height: 43px;
    padding: 11px 12px;
    border: 1px solid var(--pp-border);
    border-radius: 10px;
    outline: 0;
    background: #fff;
    color: var(--pp-ink);
    font: inherit;
    font-size: 12px;
}

.profile-form-field input:focus {
    border-color: var(--pp-blue-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.profile-form-field input.profile-form-readonly {
    background: #f4f6fb;
    color: var(--pp-muted);
    cursor: not-allowed;
}

.profile-form-error {
    color: #c73545;
    font-size: 10px;
    line-height: 1.4;
}

.profile-form-divider {
    height: 1px;
    background: var(--pp-border);
}

.profile-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    padding-top: 3px;
}

.profile-form-submit {
    border: 0;
}

.profile-form-errors {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid #fecdd3;
    border-radius: 12px;
    background: #fff1f2;
    color: #be123c;
    font-size: 11px;
    line-height: 1.45;
}

.profile-form-errors > i {
    margin-top: 2px;
}

.profile-form-errors strong {
    font-size: 12px;
}

.profile-form-errors ul {
    margin: 5px 0 0;
    padding-left: 16px;
}

.profile-pagination nav {
    font-size: 11px;
}

.public-form-notice,
.public-form-errors {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 17px;
    padding: 14px 16px;
    border: 1px solid #bfdbfe;
    border-radius: 13px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
}

.public-form-notice i,
.public-form-errors > i {
    margin-top: 2px;
    font-size: 16px;
}

.public-form-notice strong,
.public-form-notice span {
    display: block;
}

.public-form-notice span {
    margin-top: 3px;
    color: #46659e;
    font-size: 11px;
}

.public-form-errors {
    border-color: #fecdd3;
    background: #fff1f2;
    color: #be123c;
}

.public-form-errors strong {
    font-size: 12px;
}

.public-form-errors ul {
    margin: 6px 0 0;
    padding-left: 17px;
    font-size: 11px;
}

.public-form-card {
    padding: clamp(18px, 3vw, 28px);
}

.public-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.public-field {
    display: grid;
    align-content: start;
    gap: 7px;
}

.public-field-full {
    grid-column: 1 / -1;
}

.public-field > span {
    color: var(--pp-ink);
    font-size: 11px;
    font-weight: 800;
}

.public-field em {
    color: #dc3545;
    font-style: normal;
}

.public-field input,
.public-field textarea,
.public-field select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 13px;
    border: 1px solid var(--pp-border);
    border-radius: 10px;
    outline: 0;
    background: #fff;
    color: var(--pp-ink);
    font: inherit;
    font-size: 12px;
}

.public-field textarea {
    resize: vertical;
}

.public-field input:focus,
.public-field textarea:focus,
.public-field select:focus {
    border-color: var(--pp-blue-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.public-field small {
    color: var(--pp-muted);
    font-size: 10px;
    line-height: 1.45;
}

.public-form-footer {
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--pp-border);
}

.admin-simple {
    min-height: 100vh;
    background: var(--pp-soft);
}

.admin-simple-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px max(18px, calc((100% - 1240px) / 2));
    background: #0a1048;
    color: #fff;
}

.admin-simple-header strong {
    font-size: 14px;
}

.admin-simple-header a {
    color: #dbe5ff;
    font-size: 11px;
    text-decoration: none;
}

.admin-simple-card {
    padding: 22px;
    border: 1px solid var(--pp-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 35, 76, .05);
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 13px 12px;
    border-bottom: 1px solid var(--pp-border);
    text-align: left;
    font-size: 12px;
    vertical-align: top;
}

.admin-table th {
    color: var(--pp-muted);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.admin-table td strong {
    display: block;
    max-width: 390px;
    margin-bottom: 4px;
}

.admin-table td small {
    color: var(--pp-muted);
}

.admin-badge {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 7px;
    background: #eef2ff;
    color: var(--pp-blue-light);
    font-size: 10px;
    font-weight: 800;
}

.admin-badge.published { background: #e8faf0; color: #148553; }
.admin-badge.review { background: #fff4dc; color: #b86c00; }
.admin-badge.draft { background: #f1f3f7; color: #687186; }
.admin-badge.rejected { background: #fff1f2; color: #be123c; }

.admin-actions {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.admin-button,
.admin-button-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border: 0;
    border-radius: 9px;
    background: var(--pp-blue-light);
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.admin-button.secondary {
    border: 1px solid var(--pp-border);
    background: #fff;
    color: var(--pp-ink);
}

.admin-button-danger {
    background: #dc3545;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .4fr);
    gap: 18px;
}

.admin-form-main,
.admin-form-side {
    display: grid;
    align-content: start;
    gap: 15px;
}

.admin-field {
    display: grid;
    gap: 7px;
}

.admin-field label {
    color: var(--pp-ink);
    font-size: 11px;
    font-weight: 800;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    border: 1px solid var(--pp-border);
    border-radius: 9px;
    outline: 0;
    background: #fff;
    color: var(--pp-ink);
    font: inherit;
    font-size: 12px;
}

.admin-field textarea {
    min-height: 280px;
    resize: vertical;
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
    border-color: var(--pp-blue-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.field-error {
    color: #c53030;
    font-size: 10px;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.admin-search-simple {
    display: flex;
    gap: 8px;
    flex: 1 1 320px;
}

.admin-search-simple input,
.admin-search-simple select {
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid var(--pp-border);
    border-radius: 9px;
    background: #fff;
    color: var(--pp-ink);
    font-size: 11px;
}

.admin-search-simple input {
    flex: 1;
}

@media (max-width: 900px) {
    .live-news-grid,
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .live-news-heading,
    .news-page-heading,
    .admin-simple-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .live-news-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-shell-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-shell-nav {
        width: 100%;
    }

    .news-page-container,
    .admin-simple-container {
        width: min(100% - 24px, 1240px);
        padding-top: 22px;
    }
}

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

    .profile-side-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .public-page-container {
        width: min(100% - 24px, 1180px);
        padding-top: 24px;
    }

    .public-page-heading,
    .profile-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-heading-actions,
    .public-heading-actions .public-button {
        width: 100%;
    }

    .profile-side-stack,
    .public-form-grid {
        grid-template-columns: 1fr;
    }

    .profile-form-grid {
        grid-template-columns: 1fr;
    }

    .profile-form-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .profile-form-field-full {
        grid-column: auto;
    }

    .public-field-full {
        grid-column: auto;
    }

    .profile-identity-card {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 20px;
    }

    .profile-card-actions {
        width: 100%;
    }

    .profile-card-actions form,
    .profile-card-actions .public-button {
        width: 100%;
    }

    .profile-articles-card {
        padding: 18px;
    }

    .profile-article-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .public-form-footer,
    .public-form-footer .public-button {
        width: 100%;
    }

    .public-form-footer {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .profile-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .profile-form-actions > * {
        width: 100%;
    }
}
