:root {
    --plmo-bg: #050505;
    --plmo-surface: #0b1220;
    --plmo-surface-2: #111827;
    --plmo-text: #ffffff;
    --plmo-muted: #a1a1aa;
    --plmo-line: rgba(255, 255, 255, 0.12);
    --plmo-live: #ff2d55;
    --plmo-cyan: #22d3ee;
    --plmo-green: #22c55e;
    --plmo-yellow: #facc15;
    --plmo-radius: 8px;
    --plmo-max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--plmo-bg);
}

body {
    background: var(--plmo-bg);
    color: var(--plmo-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    margin: 0;
}

a {
    color: inherit;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

.plmo-container {
    margin: 0 auto;
    max-width: var(--plmo-max);
    padding: 0 16px;
}

.plmo-skip-link {
    background: var(--plmo-cyan);
    color: #050505;
    left: 12px;
    padding: 8px 10px;
    position: absolute;
    top: -80px;
    z-index: 10000;
}

.plmo-skip-link:focus {
    top: 12px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.plmo-topbar {
    background: #000;
    border-bottom: 1px solid var(--plmo-line);
    font-size: 13px;
}

.plmo-topbar__inner {
    align-items: center;
    display: flex;
    gap: 12px;
    min-height: 42px;
}

.plmo-live-pill {
    background: var(--plmo-live);
    border-radius: 999px;
    color: #fff;
    flex: 0 0 auto;
    font-weight: 800;
    padding: 4px 9px;
    text-decoration: none;
}

.plmo-topbar__data {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.plmo-topbar__weather {
    display: none;
}

.plmo-topbar .plc-market-strip,
.plmo-topbar .plc-widget {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.plmo-topbar .plc-market-strip__inner {
    gap: 14px;
}

.plmo-topbar .plc-weather__main strong {
    font-size: 18px;
}

.plmo-topbar .plc-weather__meta,
.plmo-topbar .plc-widget__header,
.plmo-topbar .plc-sponsor {
    display: none;
}

.plmo-header {
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--plmo-line);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.plmo-header__inner {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr auto;
    min-height: 82px;
}

.plmo-brand {
    display: grid;
    text-decoration: none;
}

.plmo-brand__name {
    color: var(--plmo-text);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.plmo-brand__tag {
    color: var(--plmo-muted);
    font-size: 12px;
}

.plmo-menu-toggle {
    background: var(--plmo-surface);
    border: 1px solid var(--plmo-line);
    border-radius: var(--plmo-radius);
    color: var(--plmo-text);
    display: grid;
    gap: 4px;
    height: 42px;
    justify-content: center;
    padding: 10px;
    width: 46px;
}

.plmo-menu-toggle span {
    background: #fff;
    display: block;
    height: 2px;
    width: 20px;
}

.plmo-nav {
    display: none;
    grid-column: 1 / -1;
}

.plmo-nav.is-open {
    display: block;
}

.plmo-nav ul {
    display: grid;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0 0 12px;
}

.plmo-nav a {
    border-radius: var(--plmo-radius);
    color: var(--plmo-muted);
    display: block;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 10px;
    text-decoration: none;
    text-transform: uppercase;
}

.plmo-nav a:hover,
.plmo-nav a:focus {
    background: var(--plmo-surface);
    color: var(--plmo-text);
}

.plmo-header__search {
    display: none;
}

.plmo-search {
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--plmo-line);
    border-radius: 999px;
    display: flex;
    overflow: hidden;
}

.plmo-search .search-field {
    background: transparent;
    border: 0;
    color: #fff;
    min-height: 38px;
    outline: 0;
    padding: 0 12px;
    width: 180px;
}

.plmo-search .search-submit {
    background: var(--plmo-cyan);
    border: 0;
    color: #031016;
    font-weight: 800;
    min-height: 38px;
    padding: 0 12px;
}

.plmo-main {
    min-height: 60vh;
}

.plmo-hero {
    display: grid;
    gap: 14px;
    padding-top: 24px;
}

.plmo-hero__kicker {
    background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(255,45,85,0.12));
    border: 1px solid var(--plmo-line);
    border-radius: var(--plmo-radius);
    display: grid;
    gap: 4px;
    padding: 16px;
}

.plmo-hero__kicker span {
    color: var(--plmo-cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.plmo-hero__kicker strong {
    font-size: clamp(24px, 5vw, 52px);
    line-height: 1.02;
}

.plmo-hero__side,
.plmo-grid,
.plmo-news-grid {
    display: grid;
    gap: 14px;
}

.plmo-card {
    background: var(--plmo-surface);
    border: 1px solid var(--plmo-line);
    border-radius: var(--plmo-radius);
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease;
}

.plmo-card:hover {
    border-color: rgba(34, 211, 238, .45);
    transform: translateY(-2px);
}

.plmo-card__media {
    aspect-ratio: 16 / 9;
    background: var(--plmo-surface-2);
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.plmo-card__media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.plmo-card__fallback {
    align-items: center;
    color: var(--plmo-muted);
    display: flex;
    height: 100%;
    justify-content: center;
}

.plmo-card__body {
    padding: 14px;
}

.plmo-card__top,
.plmo-card__meta,
.plmo-post-meta,
.plmo-archive-header p {
    color: var(--plmo-muted);
    font-size: 13px;
}

.plmo-card__top {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.plmo-cat {
    background: rgba(34,211,238,.12);
    border-radius: 999px;
    color: var(--plmo-cyan);
    font-size: 11px;
    font-weight: 900;
    padding: 3px 8px;
    text-decoration: none;
    text-transform: uppercase;
}

.plmo-card h3 {
    font-size: 18px;
    line-height: 1.25;
    margin: 7px 0;
}

.plmo-card h3 a {
    text-decoration: none;
}

.plmo-card p {
    color: var(--plmo-muted);
    margin: 0;
}

.plmo-section,
.plmo-page,
.plmo-single {
    padding: 26px 0;
}

.plmo-section__header {
    align-items: end;
    border-bottom: 1px solid var(--plmo-line);
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
}

.plmo-section__header h2,
.plmo-page__header h1,
.plmo-single__header h1,
.plmo-archive-header h1 {
    line-height: 1.08;
    margin: 0;
}

.plmo-section__header h2 {
    font-size: 22px;
}

.plmo-live-band {
    background: linear-gradient(180deg, #08111f, #050505);
    margin-top: 22px;
    padding: 24px 0;
}

.plmo-home-tools {
    display: grid;
    gap: 14px;
}

.plmo-breaking,
.plc-breaking {
    scrollbar-width: none;
}

.plc-breaking {
    border: 0;
    overflow: hidden;
}

.plc-breaking__track {
    scrollbar-width: none;
}

.plc-breaking__track::-webkit-scrollbar {
    display: none;
}

.plmo-layout {
    display: grid;
    gap: 22px;
}

.plmo-archive-header {
    margin-bottom: 18px;
}

.plmo-archive-header--split {
    align-items: center;
    display: grid;
    gap: 14px;
}

.plmo-content {
    width: 100%;
}

.plmo-entry {
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.plmo-live-stage {
    margin-bottom: 18px;
}

.plmo-live-info,
.plmo-contact__actions {
    display: grid;
    gap: 14px;
}

.plmo-live-info section,
.plmo-contact {
    background: var(--plmo-surface);
    border: 1px solid var(--plmo-line);
    border-radius: var(--plmo-radius);
    padding: 16px;
}

.plmo-button {
    align-items: center;
    background: var(--plmo-cyan);
    border-radius: var(--plmo-radius);
    color: #031016;
    display: inline-flex;
    font-weight: 900;
    min-height: 42px;
    padding: 0 14px;
    text-decoration: none;
}

.plmo-button--ghost {
    background: transparent;
    border: 1px solid var(--plmo-line);
    color: #fff;
}

.plmo-entry a {
    color: var(--plmo-cyan);
}

.plmo-featured {
    margin: 18px 0;
}

.plmo-sidebar {
    display: grid;
    gap: 14px;
}

.plmo-widget {
    background: var(--plmo-surface);
    border: 1px solid var(--plmo-line);
    border-radius: var(--plmo-radius);
    padding: 14px;
}

.plmo-widget-title {
    font-size: 16px;
    margin: 0 0 10px;
}

.plmo-footer {
    background: #000;
    border-top: 1px solid var(--plmo-line);
    margin-top: 30px;
    padding: 30px 0 16px;
}

.plmo-footer__grid {
    display: grid;
    gap: 20px;
}

.plmo-footer a {
    color: var(--plmo-muted);
    display: block;
    margin: 4px 0;
    text-decoration: none;
}

.plmo-footer__bottom {
    border-top: 1px solid var(--plmo-line);
    color: var(--plmo-muted);
    margin-top: 20px;
    padding-top: 14px;
}

@media (min-width: 760px) {
    .plmo-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .plmo-menu-toggle {
        display: none;
    }

    .plmo-nav,
    .plmo-header__search {
        display: block;
        grid-column: auto;
    }

    .plmo-nav ul {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }

    .plmo-topbar__weather {
        display: block;
        width: 180px;
    }

    .plmo-hero {
        grid-template-columns: 1.5fr 1fr;
    }

    .plmo-hero__kicker {
        grid-column: 1 / -1;
    }

    .plmo-grid,
    .plmo-news-grid,
    .plmo-home-tools {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plmo-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .plmo-live-info,
    .plmo-contact__actions,
    .plmo-archive-header--split {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .plmo-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

@media (min-width: 1040px) {
    .plmo-grid,
    .plmo-news-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .plmo-hero__side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* v0.1.2 visual hotfix */
body {
    background: #05070b;
}

.plmo-topbar {
    background: #050505;
    color: #cbd5e1;
    font-size: 11px;
    letter-spacing: .02em;
    overflow: hidden;
}

.plmo-topbar__inner {
    display: flex;
    gap: 10px;
    min-height: 34px;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
}

.plmo-topbar__inner::-webkit-scrollbar {
    display: none;
}

.plmo-topbar__inner span,
.plmo-topbar__inner time {
    border-left: 1px solid rgba(255,255,255,.1);
    padding-left: 10px;
}

.plmo-live-pill {
    font-size: 11px;
    padding: 3px 8px;
}

.plmo-header {
    top: 0;
}

.plmo-header__inner {
    gap: 16px;
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
}

.plmo-brand {
    min-width: 150px;
}

.plmo-brand__name {
    font-size: clamp(26px, 3vw, 38px);
}

.plmo-brand__tag {
    display: none;
}

.plmo-nav {
    display: none;
}

.plmo-nav.is-open {
    display: block;
    grid-column: 1 / -1;
}

.plmo-nav ul {
    gap: 2px;
}

.plmo-nav a {
    font-size: 12px;
    padding: 8px 9px;
}

.plmo-header__search {
    display: none;
}

.plmo-menu-toggle {
    display: grid;
}

.plmo-search {
    background: #0f172a;
    border-color: rgba(255,255,255,.14);
}

.plmo-search .search-field {
    width: 160px;
}

.plmo-breaking-wrap {
    background: #ff2d55;
    color: #050505;
}

.plmo-breaking-wrap .plmo-container {
    padding: 0;
}

.plmo-breaking-wrap .plc-breaking,
.plmo-breaking-fallback {
    align-items: center;
    background: transparent;
    color: #050505;
    display: flex;
    gap: 14px;
    min-height: 38px;
    overflow: hidden;
    padding: 0 16px;
}

.plmo-breaking-wrap .plc-breaking strong,
.plmo-breaking-fallback strong {
    background: #050505;
    border-radius: 0;
    color: #fff;
    flex: 0 0 auto;
    font-size: 11px;
    letter-spacing: .08em;
    padding: 6px 9px;
    text-transform: uppercase;
}

.plmo-breaking-wrap .plc-breaking__track {
    display: flex;
    gap: 22px;
    overflow: hidden;
    white-space: nowrap;
}

.plmo-hero {
    gap: 16px;
    padding-top: 18px;
}

.plmo-hero__kicker {
    background: #07111f;
    min-height: 110px;
    padding: 18px;
}

.plmo-hero__main .plmo-card {
    min-height: 100%;
}

.plmo-hero__main .plmo-card__media {
    aspect-ratio: 16 / 10;
}

.plmo-hero__main .plmo-card h3 {
    font-size: clamp(26px, 4vw, 42px);
}

.plmo-card {
    background: #0b1220;
    border-color: rgba(255,255,255,.1);
    box-shadow: 0 14px 40px rgba(0,0,0,.22);
}

.plmo-card__body {
    padding: 16px;
}

.plmo-card h3 {
    font-size: 19px;
}

.plmo-section {
    padding: 22px 0;
}

.plmo-section__header {
    margin-bottom: 16px;
}

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

.plmo-home-tools {
    align-items: stretch;
    background: #07111f;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-top: 1px solid rgba(255,255,255,.08);
    max-width: none;
    padding-bottom: 18px;
    padding-top: 18px;
}

.plmo-home-tools__inner {
    display: grid;
    gap: 14px;
}

.plmo-home-tools__inner > * {
    min-width: 0;
}

.plmo-live-stage .plc-live {
    margin: 0 auto;
    max-width: 980px;
}

.plmo-live-info section,
.plmo-contact {
    background: #0b1220;
}

.plmo-contact__actions {
    margin: 18px 0;
}

@media (min-width: 760px) {
    .plmo-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .plmo-nav {
        display: block;
    }

    .plmo-nav ul {
        justify-content: flex-end;
    }

    .plmo-menu-toggle {
        display: none;
    }

    .plmo-header__search {
        display: block;
    }

    .plmo-hero {
        grid-template-columns: minmax(0, 1.45fr) minmax(320px, .9fr);
    }

    .plmo-news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .plmo-home-tools__inner {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1120px) {
    .plmo-header__inner {
        grid-template-columns: auto minmax(0, 1fr) 240px;
    }

    .plmo-search .search-field {
        width: 170px;
    }

    .plmo-hero__main .plmo-card__media {
        aspect-ratio: 16 / 8.8;
    }
}

/* v0.1.3 surgical header/topbar/first-screen hotfix */
.plmo-topbar,
.plmo-header,
.plmo-breaking-wrap {
    position: relative;
    z-index: 50;
}

.plmo-topbar {
    height: 32px;
}

.plmo-topbar__inner {
    align-items: center;
    color: #d4d4d8;
    display: flex;
    gap: 0;
    height: 32px;
    min-height: 32px;
    overflow-x: auto;
    padding: 0 14px;
    scrollbar-width: none;
    white-space: nowrap;
}

.plmo-topbar__inner span,
.plmo-topbar__inner time {
    border-left: 1px solid rgba(255,255,255,.1);
    font-size: 11px;
    line-height: 1;
    padding: 0 9px;
}

.plmo-topbar__inner b {
    color: #fff;
    font-weight: 800;
}

.plmo-live-pill {
    align-items: center;
    display: inline-flex;
    height: 20px;
    margin-right: 9px;
}

.plmo-header {
    background: #05070b;
}

.plmo-header__inner {
    display: grid;
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 76px;
    padding-bottom: 0;
    padding-top: 0;
}

.plmo-header__brand {
    align-items: center;
    display: flex;
    min-width: 150px;
}

.plmo-brand {
    align-items: center;
    display: flex;
}

.plmo-brand img,
.plmo-brand .custom-logo {
    height: auto;
    max-height: 54px;
    max-width: 172px;
    width: auto;
}

.plmo-brand__name {
    font-size: 34px;
    line-height: .95;
}

.plmo-nav {
    display: none;
    min-width: 0;
}

.plmo-nav.is-open {
    background: #05070b;
    border-top: 1px solid rgba(255,255,255,.1);
    display: block;
    grid-column: 1 / -1;
    padding-bottom: 10px;
}

.plmo-nav ul {
    align-items: center;
    gap: 2px;
}

.plmo-nav li,
.plmo-nav a {
    white-space: nowrap;
}

.plmo-nav a {
    font-size: 11px;
    letter-spacing: .03em;
    line-height: 1;
    padding: 10px 8px;
}

.plmo-header__tools {
    display: none;
}

.plmo-menu-toggle {
    display: grid;
}

.plmo-search {
    height: 38px;
    min-width: 190px;
}

.plmo-search .search-field {
    font-size: 13px;
    height: 38px;
    min-height: 38px;
    width: 130px;
}

.plmo-search .search-submit {
    font-size: 12px;
    height: 38px;
    min-height: 38px;
}

.plmo-breaking-wrap {
    background: #ff2d55;
    height: 38px;
    overflow: hidden;
}

.plmo-breaking-wrap .plmo-container {
    height: 38px;
    max-width: none;
}

.plmo-breaking-wrap .plc-breaking,
.plmo-breaking-fallback {
    height: 38px;
    min-height: 38px;
    padding: 0 14px;
}

.plmo-breaking-wrap .plc-breaking__track {
    overflow: hidden;
}

.plmo-breaking-wrap .plc-breaking__track a,
.plmo-breaking-wrap .plc-breaking__track span,
.plmo-breaking-fallback span {
    color: #050505;
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    line-height: 38px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    white-space: nowrap;
}

.plmo-main {
    padding-top: 0;
}

.plmo-hero {
    padding-top: 14px;
}

.plmo-hero__kicker {
    min-height: 82px;
    padding: 14px 16px;
}

.plmo-hero__kicker strong {
    font-size: clamp(22px, 4.2vw, 44px);
}

@media (min-width: 900px) {
    .plmo-topbar,
    .plmo-topbar__inner {
        height: 32px;
        min-height: 32px;
    }

    .plmo-header__inner {
        min-height: 76px;
    }

    .plmo-nav {
        display: block;
    }

    .plmo-nav ul {
        display: flex;
        justify-content: flex-end;
        overflow: hidden;
    }

    .plmo-header__tools {
        display: block;
    }

    .plmo-menu-toggle {
        display: none;
    }
}

@media (min-width: 1160px) {
    .plmo-header__inner {
        grid-template-columns: 190px minmax(0, 1fr) 230px;
    }

    .plmo-nav a {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .plmo-search .search-field {
        width: 150px;
    }
}

/* v0.1.4 polish */
.plmo-public-view .customize-partial-edit-shortcut,
.plmo-public-view .customize-partial-edit-shortcut-button,
.plmo-public-view .post-edit-link,
.plmo-public-view .edit-link {
    display: none !important;
}

.plmo-footer {
    background: linear-gradient(180deg, #05070b, #000);
    padding-top: 40px;
}

.plmo-footer__grid {
    gap: 18px;
}

.plmo-footer section,
.plmo-footer__nav {
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 16px;
}

.plmo-footer h2 {
    color: #fff;
    font-size: 15px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.plmo-footer p {
    color: #a1a1aa;
    margin: 0 0 10px;
}

.plmo-footer a {
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: #d4d4d8;
    padding: 6px 0;
}

.plmo-contact {
    max-width: none;
}

.plmo-contact__panel {
    background: linear-gradient(135deg, rgba(34,211,238,.1), rgba(255,45,85,.08));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    display: grid;
    gap: 16px;
    margin: 18px 0;
    padding: 18px;
}

.plmo-contact__panel h2 {
    margin: 0 0 6px;
}

.plmo-contact__actions {
    align-content: start;
}

.plmo-news-grid .plmo-card__media {
    aspect-ratio: 16 / 10;
}

.navigation.pagination,
.page-numbers {
    margin-top: 18px;
}

.page-numbers {
    display: inline-flex;
    gap: 6px;
}

.page-numbers a,
.page-numbers .current {
    background: #0b1220;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    color: #fff;
    padding: 7px 10px;
    text-decoration: none;
}

@media (max-width: 899px) {
    .plmo-header__inner {
        min-height: 64px;
    }

    .plmo-brand__name {
        font-size: 28px;
    }

    .plmo-hero__kicker {
        min-height: auto;
    }

    .plmo-card h3 {
        font-size: 18px;
    }

    .plmo-section__header {
        align-items: flex-start;
        display: grid;
        gap: 8px;
    }
}

@media (min-width: 900px) {
    .plmo-footer__grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }

    .plmo-contact__panel {
        grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
    }
}

/* v0.1.5 production polish */
.plmo-public-view [class*="customize-partial-edit"],
.plmo-public-view [class*="customize-partial"],
.plmo-public-view a[href*="customize.php"],
.plmo-public-view a[href*="post.php?action=edit"] {
    display: none !important;
}

.plmo-header {
    box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

.plmo-header__inner {
    border-left: 1px solid rgba(255,255,255,.06);
    border-right: 1px solid rgba(255,255,255,.06);
}

.plmo-brand__name span,
.plmo-footer__brand h2 span {
    color: var(--plmo-cyan);
}

.plmo-nav a {
    border: 1px solid transparent;
    border-radius: 999px;
}

.plmo-nav a:hover,
.plmo-nav a:focus {
    border-color: rgba(34,211,238,.22);
}

.plmo-search {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.plmo-hero__main .plmo-card {
    background: linear-gradient(180deg, #0f172a, #0b1220);
}

.plmo-hero__main .plmo-card__body {
    padding: 20px;
}

.plmo-hero__side .plmo-card__media {
    aspect-ratio: 16 / 8.5;
}

.plmo-card__top {
    margin-bottom: 8px;
}

.plmo-card__meta {
    margin-top: 12px;
}

.plmo-section__header h2 {
    font-size: clamp(21px, 2vw, 28px);
}

.plmo-news-grid {
    row-gap: 22px;
}

.page-numbers {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-numbers a,
.page-numbers .current {
    min-width: 38px;
    text-align: center;
}

.page-numbers .current {
    background: var(--plmo-cyan);
    color: #031016;
    font-weight: 900;
}

.plmo-contact__actions .plmo-button {
    justify-content: center;
}

.plmo-footer__brand h2 {
    font-size: 26px;
    letter-spacing: 0;
    text-transform: none;
}

.plmo-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.plmo-footer__social a {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
}

@media (max-width: 759px) {
    .plmo-footer__grid {
        gap: 12px;
    }

    .plmo-contact__actions {
        grid-template-columns: 1fr;
    }
}

/* v0.1.6 urgent visual hotfix */
:root {
    --plmo-pink: #f72585;
}

.plmo-header__inner {
    align-items: center !important;
}

.plmo-header__brand,
.plmo-brand {
    align-items: center !important;
    display: flex !important;
    justify-content: flex-start;
}

.plmo-brand img,
.plmo-brand .custom-logo {
    display: block;
    max-height: 56px !important;
    max-width: 190px !important;
    object-fit: contain;
}

.plmo-brand__name {
    color: #fff;
    font-size: clamp(30px, 3vw, 42px) !important;
    font-weight: 950;
}

.plmo-search {
    background: #111;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(247,37,133,.08);
    overflow: hidden;
}

.plmo-search .search-field {
    background: transparent !important;
    color: #fff !important;
}

.plmo-search .search-submit {
    background: var(--plmo-pink) !important;
    color: #fff !important;
}

.plmo-menu-toggle {
    align-items: center;
    border-radius: 10px;
    height: 40px !important;
    width: 42px !important;
}

.plmo-nav.is-open {
    width: 100%;
}

.plmo-nav.is-open ul {
    display: grid;
    gap: 4px;
}

.plmo-nav.is-open a {
    background: rgba(255,255,255,.04);
    border-radius: 8px;
    padding: 12px;
}

.plmo-topbar__inner {
    -webkit-overflow-scrolling: touch;
}

.plmo-breaking-wrap,
.plmo-breaking-wrap .plmo-container,
.plmo-breaking-wrap .plc-breaking,
.plmo-breaking-fallback {
    height: 38px !important;
    min-height: 38px !important;
}

.plmo-breaking-wrap .plc-breaking__track {
    min-width: 0;
}

.plmo-breaking-wrap .plc-breaking__track > *:not(:first-child) {
    display: none;
}

.plmo-home-tools .plc-widget,
.plmo-home-tools .plc-dollar,
.plmo-home-tools .plc-crypto,
.plmo-home-tools .plc-weather,
.plmo-sidebar .plc-widget {
    border-radius: 12px;
    padding: 16px;
}

.plc-dollar__row,
.plc-crypto__row {
    font-size: 14px;
}

.navigation.pagination {
    display: flex;
    justify-content: center;
    margin: 24px auto 0;
    width: 100%;
}

.navigation.pagination .nav-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.navigation.pagination .page-numbers {
    align-items: center;
    background: #0b1220;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 9px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    min-height: 38px;
    min-width: 38px;
    padding: 0 12px;
    text-decoration: none;
}

.navigation.pagination .page-numbers.current {
    background: var(--plmo-pink);
    border-color: var(--plmo-pink);
    color: #fff;
}

@media (max-width: 899px) {
    body {
        padding-bottom: 72px;
    }

    .plmo-main {
        padding-bottom: 72px;
    }

    .plmo-header__inner {
        grid-template-columns: 1fr auto;
        min-height: auto !important;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .plmo-header__brand {
        min-width: 0;
    }

    .plmo-brand img,
    .plmo-brand .custom-logo {
        max-height: 50px !important;
        max-width: 170px !important;
    }

    .plmo-header__tools {
        display: block !important;
        grid-column: 1 / -1;
        width: 100%;
    }

    .plmo-search {
        display: flex;
        width: 100%;
    }

    .plmo-search label {
        flex: 1;
    }

    .plmo-search .search-field {
        font-size: 14px;
        width: 100% !important;
    }

    .plmo-search .search-submit {
        flex: 0 0 auto;
        min-width: 86px;
    }

    .plmo-home-tools__inner {
        grid-template-columns: 1fr !important;
    }

    .plc-dollar__row,
    .plc-crypto__row {
        align-items: start !important;
        display: grid !important;
        gap: 6px !important;
        grid-template-columns: 1fr !important;
        padding: 12px !important;
    }

    .plc-weather__main {
        align-items: flex-start;
        display: grid;
    }

    .plc-weather__main strong {
        font-size: 40px !important;
    }

    .plc-weather__meta {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }

    .plmo-hero {
        padding-top: 10px;
    }

    .plmo-hero__main .plmo-card h3 {
        font-size: 24px !important;
    }

    .plmo-footer {
        padding-bottom: 82px;
    }
}

@media (min-width: 900px) {
    .plmo-header__inner {
        grid-template-columns: 210px minmax(0, 1fr) 240px !important;
        min-height: 82px !important;
    }

    .plmo-nav ul {
        justify-content: flex-end;
    }
}

/* v0.1.7 header/logo/mobile final hotfix */
.plmo-header__brand {
    min-width: 0 !important;
}

.plmo-brand {
    min-width: 0 !important;
    width: auto;
}

.plmo-logo {
    align-items: center;
    display: flex;
    line-height: 0;
}

.plmo-logo--mobile {
    display: none;
}

.plmo-logo img,
.plmo-logo .custom-logo {
    background: transparent !important;
    display: block !important;
    height: auto !important;
    object-fit: contain !important;
    width: auto !important;
}

.plmo-logo--desktop img,
.plmo-logo--desktop .custom-logo {
    max-height: 52px !important;
    max-width: 220px !important;
}

.plmo-menu-toggle {
    background: #050505 !important;
    border: 1px solid #ff2d95 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    height: 44px !important;
    padding: 10px !important;
    width: 44px !important;
}

.plmo-menu-toggle span {
    background: #f7b5cd !important;
    border-radius: 2px;
    height: 2px !important;
    width: 20px !important;
}

.plmo-menu-toggle:hover,
.plmo-menu-toggle:focus {
    background: #190812 !important;
    border-color: #22d3ee !important;
}

@media (max-width: 899px) {
    .plmo-header__inner {
        align-items: center !important;
        grid-template-columns: minmax(0, 1fr) 44px !important;
        gap: 10px !important;
        padding-bottom: 10px !important;
        padding-top: 10px !important;
    }

    .plmo-header__brand {
        justify-content: flex-start !important;
        overflow: hidden;
    }

    .plmo-brand {
        max-width: 132px !important;
        overflow: hidden;
    }

    .plmo-logo--desktop {
        display: none !important;
    }

    .plmo-logo--mobile {
        display: flex !important;
        max-width: 120px !important;
    }

    .plmo-logo--mobile img,
    .plmo-logo--mobile .custom-logo {
        max-height: 42px !important;
        max-width: 120px !important;
    }

    .plmo-brand__name {
        font-size: 28px !important;
        max-width: 120px;
        overflow: hidden;
        white-space: nowrap;
    }

    .plmo-header__tools {
        grid-column: 1 / -1 !important;
    }

    .plmo-nav.is-open {
        grid-column: 1 / -1 !important;
        margin-top: 0 !important;
    }
}

/* v0.1.9 mobile header/logo only */
.customize-partial-edit-shortcut,
.customize-partial-edit-shortcut-button {
    display: none !important;
}

@media (max-width: 782px) {
    html,
    body {
        overflow-x: hidden;
    }

    .plmo-topbar,
    .plmo-topbar__inner {
        height: 30px !important;
        min-height: 30px !important;
    }

    .plmo-header {
        overflow: visible;
    }

    .plmo-header__inner {
        align-items: center !important;
        display: grid !important;
        gap: 8px !important;
        grid-template-columns: 44px minmax(0, 1fr) 44px !important;
        min-height: 62px !important;
        padding: 8px 14px !important;
    }

    .plmo-header__brand,
    .site-branding,
    .site-logo {
        align-items: center !important;
        display: flex !important;
        grid-column: 2 !important;
        justify-content: center !important;
        min-width: 0 !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .plmo-brand,
    .custom-logo-link {
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        max-width: 170px !important;
        min-width: 0 !important;
        overflow: hidden !important;
        text-align: center !important;
        width: auto !important;
    }

    .plmo-logo,
    .desktop-logo,
    .mobile-logo {
        display: flex !important;
        justify-content: center !important;
        max-width: 170px !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .plmo-logo img,
    .plmo-logo .custom-logo,
    .custom-logo-link img,
    img.custom-logo,
    .site-logo img,
    .desktop-logo img,
    .mobile-logo img {
        background: transparent !important;
        display: block !important;
        height: auto !important;
        max-height: 46px !important;
        max-width: 170px !important;
        object-fit: contain !important;
        width: auto !important;
    }

    .plmo-logo--desktop,
    .plmo-logo--mobile {
        display: none !important;
    }

    .plmo-brand__name {
        color: #fff !important;
        display: block !important;
        font-size: 26px !important;
        font-weight: 950 !important;
        line-height: 1 !important;
        max-width: 170px !important;
        overflow: hidden !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    .plmo-brand__sub {
        color: #22d3ee !important;
        display: block !important;
        font-size: 9px !important;
        font-weight: 800 !important;
        letter-spacing: .16em !important;
        margin-top: 2px !important;
        text-align: center !important;
    }

    .plmo-menu-toggle {
        align-self: center !important;
        background: #050505 !important;
        border: 1px solid #ff2d95 !important;
        border-radius: 10px !important;
        box-shadow: none !important;
        grid-column: 3 !important;
        height: 44px !important;
        justify-self: end !important;
        margin: 0 !important;
        padding: 10px !important;
        position: static !important;
        width: 44px !important;
    }

    .plmo-menu-toggle span {
        background: #fff !important;
    }

    .plmo-header__tools {
        grid-column: 1 / -1 !important;
        margin-top: 0 !important;
        width: 100% !important;
    }

    .plmo-nav.is-open {
        background: #050505 !important;
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
}

@media (min-width: 900px) {
    .plmo-header__inner {
        grid-template-columns: 230px minmax(0, 1fr) 230px !important;
        min-height: 74px !important;
    }

    .plmo-header__brand {
        justify-content: flex-start !important;
    }

    .plmo-nav a {
        white-space: nowrap !important;
    }
}

/* v0.1.8 data widgets + legacy bottom audio hotfix */
body,
.plmo-main {
    padding-bottom: 0 !important;
}

#puni-persist-radio,
#puni-radio-inner,
#puni-yt-frame,
[id*="puni-persist-radio"],
[id*="puni-radio"],
[class*="puni-radio"] {
    display: none !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.plmo-home-tools {
    overflow: hidden;
}

.plmo-home-tools__inner {
    align-items: stretch;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr);
    max-width: var(--plmo-max);
    width: 100%;
}

.plmo-home-tools .plc-widget,
.plmo-home-tools .plc-dollar,
.plmo-home-tools .plc-crypto,
.plmo-home-tools .plc-weather {
    background: #0b1220 !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 14px !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 18px !important;
}

.plc-widget__header {
    gap: 10px;
    min-width: 0;
}

.plc-widget__header h3 {
    font-size: 17px !important;
}

.plc-dollar__grid,
.plc-crypto__list {
    display: grid !important;
    gap: 10px !important;
    min-width: 0 !important;
}

.plc-dollar__row,
.plc-crypto__row {
    align-items: center !important;
    background: rgba(255,255,255,.045) !important;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px !important;
    display: grid !important;
    gap: 8px !important;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) minmax(0, 1fr) !important;
    min-width: 0 !important;
    padding: 11px 12px !important;
}

.plc-dollar__row *,
.plc-crypto__row * {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
}

.plc-dollar__row strong,
.plc-crypto__row strong {
    color: #fff;
    font-size: 14px;
}

.plc-dollar__row span,
.plc-crypto__row span {
    color: #d4d4d8;
    font-size: 14px;
    line-height: 1.3;
}

.plc-weather__main {
    min-width: 0;
}

.plc-weather__main strong {
    font-size: clamp(34px, 5vw, 44px) !important;
}

.plc-weather__main span,
.plc-weather__main small {
    overflow-wrap: anywhere;
}

.plc-weather__meta {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.plmo-radio-card {
    align-items: center;
    background: linear-gradient(135deg, rgba(247,37,133,.13), rgba(34,211,238,.08));
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 14px;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 18px auto;
    max-width: 980px;
    padding: 18px;
}

.plmo-radio-card span {
    color: var(--plmo-cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.plmo-radio-card h2,
.plmo-radio-card p {
    margin: 0;
}

.plmo-radio-toggle,
.plmo-radio-empty {
    align-items: center;
    background: var(--plmo-pink);
    border: 0;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
}

.plmo-radio-empty {
    background: rgba(255,255,255,.08);
    color: #d4d4d8;
}

.plmo-menu-toggle {
    background: #050505 !important;
    border-color: #ff2d95 !important;
}

.plmo-menu-toggle span {
    background: #fff !important;
}

@media (max-width: 899px) {
    .plmo-home-tools__inner {
        grid-template-columns: 1fr !important;
    }

    .plmo-home-tools .plc-widget,
    .plmo-home-tools .plc-dollar,
    .plmo-home-tools .plc-crypto,
    .plmo-home-tools .plc-weather {
        padding: 16px !important;
        width: 100% !important;
    }

    .plc-dollar__row,
    .plc-crypto__row {
        align-items: start !important;
        grid-template-columns: 1fr !important;
        gap: 5px !important;
    }

    .plc-dollar__row strong,
    .plc-crypto__row strong,
    .plc-dollar__row span,
    .plc-crypto__row span {
        font-size: 14px !important;
    }

    .plc-weather__main {
        display: grid !important;
        gap: 8px !important;
    }

    .plc-weather__main strong {
        font-size: 38px !important;
    }

    .plmo-radio-card {
        grid-template-columns: 1fr;
    }

    .plmo-radio-toggle,
    .plmo-radio-empty {
        width: 100%;
    }
}

@media (min-width: 900px) {
    .plmo-home-tools__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* v0.1.10 mobile header row hotfix */
@media (min-width: 783px) {
    .mobile-header-row {
        display: contents;
    }
}

@media (max-width: 782px) {
    html,
    body {
        overflow-x: hidden;
    }

    .site-header,
    .plmo-header {
        overflow: visible;
        padding: 0 !important;
    }

    .site-header__inner,
    .plmo-header__inner {
        box-sizing: border-box;
        display: block !important;
        min-height: 0 !important;
        padding-bottom: 10px !important;
        padding-top: 8px !important;
        width: 100%;
    }

    .mobile-header-row {
        align-items: center !important;
        box-sizing: border-box;
        display: flex !important;
        gap: 14px !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    .site-branding,
    .mobile-brand,
    .plmo-header__brand {
        align-items: center !important;
        display: flex !important;
        flex: 1 1 auto !important;
        justify-content: flex-start !important;
        min-width: 0 !important;
        overflow: hidden !important;
        text-align: left !important;
        width: auto !important;
    }

    .plmo-brand,
    .custom-logo-link {
        align-items: flex-start !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        max-width: 150px !important;
        min-width: 0 !important;
        overflow: hidden !important;
        text-align: left !important;
        width: auto !important;
    }

    .plmo-logo,
    .plmo-logo img,
    .custom-logo,
    img.custom-logo,
    .custom-logo-link img {
        background: transparent !important;
        display: block !important;
        height: auto !important;
        max-height: 42px !important;
        max-width: 150px !important;
        object-fit: contain !important;
        width: auto !important;
    }

    .plmo-brand__name {
        font-size: 25px !important;
        line-height: 1 !important;
        text-align: left !important;
        white-space: nowrap !important;
    }

    .plmo-brand__sub {
        font-size: 9px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        white-space: nowrap !important;
    }

    .menu-toggle,
    .mobile-menu-toggle,
    .plmo-menu-toggle {
        align-self: center !important;
        background: #050505 !important;
        border: 1px solid #ff2d95 !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        box-sizing: border-box;
        display: grid !important;
        flex: 0 0 44px !important;
        gap: 4px !important;
        height: 44px !important;
        justify-self: end !important;
        margin: 0 0 0 auto !important;
        padding: 10px !important;
        place-content: center !important;
        position: static !important;
        width: 44px !important;
    }

    .plmo-menu-toggle span {
        background: #fff !important;
        border-radius: 2px !important;
        height: 2px !important;
        width: 20px !important;
    }

    .mobile-search-row,
    .site-search,
    .plmo-header__tools {
        box-sizing: border-box;
        display: block !important;
        margin-top: 12px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .plmo-search {
        display: flex !important;
        max-width: 100% !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    .plmo-search label {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .plmo-search .search-field {
        min-width: 0 !important;
        width: 100% !important;
    }

    .plmo-search .search-submit {
        background: #f72585 !important;
        color: #fff !important;
        flex: 0 0 auto !important;
    }

    .mobile-navigation,
    .plmo-nav.is-open {
        background: #050505 !important;
        box-sizing: border-box;
        margin-top: 10px !important;
        width: 100% !important;
    }

    .plmo-nav:not(.is-open) {
        display: none !important;
    }

    .plmo-nav.is-open ul {
        display: grid !important;
        gap: 4px !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .plmo-nav.is-open a {
        background: rgba(255,255,255,.055) !important;
        border: 1px solid rgba(255,255,255,.08) !important;
        border-radius: 10px !important;
        color: #fff !important;
        padding: 12px !important;
        text-align: left !important;
    }
}

/* v0.2.0 editorial order + institutional pages */
.plmo-home-tools {
    background: linear-gradient(180deg, #07111f, #05070b);
    padding: 30px 0 !important;
}

.plmo-section__header--stack {
    align-items: start;
    display: grid;
    gap: 4px;
    margin-bottom: 16px;
}

.plmo-section__header--stack p,
.plmo-about-strip > div > p,
.plmo-page__header p {
    color: var(--plmo-cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    margin: 0;
    text-transform: uppercase;
}

.plmo-home-tools__inner {
    max-width: var(--plmo-max);
}

.plmo-home-tools .plc-widget,
.plmo-home-tools .plc-dollar,
.plmo-home-tools .plc-crypto,
.plmo-home-tools .plc-weather {
    min-height: 100%;
}

.plmo-about-strip,
.plmo-about-cta {
    align-items: center;
    background: linear-gradient(135deg, rgba(247,37,133,.11), rgba(34,211,238,.08));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
    padding: 20px;
}

.plmo-about-strip h2,
.plmo-about-strip p {
    margin: 0;
}

.plmo-about-strip > div {
    display: grid;
    gap: 8px;
}

.plmo-news-page {
    overflow: hidden;
}

.plmo-category-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 24px;
}

.plmo-category-nav a {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 9px 12px;
    text-decoration: none;
    white-space: nowrap;
}

.plmo-category-nav a:hover,
.plmo-category-nav a:focus {
    border-color: var(--plmo-pink);
    color: #fff;
}

.plmo-news-page .plmo-news-grid,
.plmo-news-page .plmo-grid {
    align-items: stretch;
    gap: 18px;
}

.plmo-news-page .plmo-card {
    height: 100%;
}

.navigation.pagination {
    width: 100%;
}

.navigation.pagination .nav-links {
    justify-content: center;
}

.navigation.pagination .page-numbers {
    margin: 0;
}

.plmo-contact__panel,
.plmo-contact-form,
.plmo-about-blocks {
    display: grid;
    gap: 14px;
}

.plmo-contact-form {
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    margin-top: 18px;
    padding: 18px;
}

.plmo-contact-form label {
    display: grid;
    gap: 6px;
}

.plmo-contact-form span {
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 800;
}

.plmo-contact-form input,
.plmo-contact-form select,
.plmo-contact-form textarea {
    background: #050505;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    color: #fff;
    min-height: 44px;
    padding: 10px 12px;
    width: 100%;
}

.plmo-contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.plmo-contact-form__wide,
.plmo-contact-form .plmo-button {
    grid-column: 1 / -1;
}

.plmo-hp {
    left: -9999px;
    position: absolute;
}

.plmo-form-message {
    border-radius: 10px;
    font-weight: 800;
    margin: 18px 0;
    padding: 12px 14px;
}

.plmo-form-message--success {
    background: rgba(34,197,94,.15);
    border: 1px solid rgba(34,197,94,.35);
}

.plmo-form-message--error {
    background: rgba(247,37,133,.14);
    border: 1px solid rgba(247,37,133,.35);
}

.plmo-about-page {
    display: grid;
    gap: 20px;
}

.plmo-about-copy {
    color: #d4d4d8;
    display: grid;
    font-size: 17px;
    gap: 12px;
    line-height: 1.7;
}

.plmo-about-copy p {
    margin: 0;
}

.plmo-about-blocks {
    grid-template-columns: minmax(0, 1fr);
}

.plmo-about-blocks section {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 16px;
}

.plmo-about-blocks h2,
.plmo-about-blocks p,
.plmo-about-blocks ul {
    margin-top: 0;
}

.plmo-live-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.plmo-footer {
    padding-bottom: 28px !important;
}

.plmo-footer__grid {
    align-items: stretch;
}

.plmo-footer section,
.plmo-footer__nav {
    min-width: 0;
}

.plmo-footer a {
    overflow-wrap: anywhere;
}

@media (min-width: 760px) {
    .plmo-about-strip,
    .plmo-about-cta {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .plmo-contact-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plmo-about-blocks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .plmo-home-tools__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 782px) {
    .plmo-category-nav {
        flex-wrap: nowrap;
        margin-left: -14px;
        margin-right: -14px;
        overflow-x: auto;
        padding: 0 14px 4px;
        scrollbar-width: thin;
    }

    .plmo-about-strip,
    .plmo-about-cta,
    .plmo-contact-form {
        padding: 16px;
    }

    .plmo-live-actions .plmo-button,
    .plmo-about-cta .plmo-button,
    .plmo-contact-form .plmo-button {
        justify-content: center;
        width: 100%;
    }

    .plmo-footer {
        padding-bottom: 28px !important;
    }
}

/* v0.2.1 QA hotfix */
.site-logo--header {
    background: transparent !important;
    display: inline-grid;
    gap: 2px;
    line-height: 1;
    max-height: 58px;
    overflow: hidden;
}

.site-logo--header .plmo-brand__name {
    color: #fff;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 950;
    letter-spacing: 0;
}

.site-logo--header .plmo-brand__sub {
    color: #f7b5cd;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.plmo-home-tools > .plmo-container {
    display: grid;
    gap: 16px;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: var(--plmo-max);
    width: min(100% - 28px, var(--plmo-max));
}

.plmo-home-tools .plmo-section__header--stack {
    margin-left: 0;
    max-width: var(--plmo-max);
    text-align: left;
}

.plmo-home-tools__inner {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.plmo-news-page {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.plmo-news-page .plmo-archive-header {
    display: grid;
    gap: 8px;
    margin-bottom: 0;
}

.plmo-news-page .plmo-archive-header h1 {
    font-size: clamp(36px, 6vw, 64px);
}

.plmo-news-page .plmo-archive-header div {
    color: #d4d4d8;
    max-width: 760px;
}

.plmo-contact-form .plmo-button,
.plmo-button--whatsapp {
    background: #22c55e !important;
    color: #03110a !important;
}

.plmo-contact-form .plmo-button:hover,
.plmo-contact-form .plmo-button:focus,
.plmo-button--whatsapp:hover,
.plmo-button--whatsapp:focus {
    background: #25d366 !important;
    color: #03110a !important;
}

.plmo-about-hero {
    background: linear-gradient(135deg, rgba(247,37,133,.14), rgba(34,211,238,.11));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: clamp(22px, 5vw, 44px);
}

.plmo-about-hero h1 {
    font-size: clamp(42px, 8vw, 82px);
}

.plmo-about-hero div {
    color: #e5e7eb;
    font-size: clamp(17px, 2.3vw, 24px);
    max-width: 820px;
}

.plmo-feature-icon {
    align-items: center;
    background: rgba(34,211,238,.12);
    border: 1px solid rgba(34,211,238,.28);
    border-radius: 999px;
    color: var(--plmo-cyan);
    display: inline-flex;
    font-size: 12px;
    font-weight: 950;
    height: 34px;
    justify-content: center;
    margin-bottom: 12px;
    width: 34px;
}

.plmo-commercial-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.plmo-breaking-wrap {
    background: #050505;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.plmo-breaking-wrap .plmo-container {
    max-width: var(--plmo-max);
}

.plmo-breaking-fallback,
.plmo-breaking-wrap .plc-breaking {
    border-radius: 0;
    min-height: 40px;
}

@media (max-width: 782px) {
    .site-logo--header {
        max-height: 44px;
        max-width: 170px;
    }

    .site-logo--header .plmo-brand__name {
        font-size: 25px !important;
    }

    .site-logo--header .plmo-brand__sub {
        font-size: 8px !important;
    }

    .plmo-home-tools > .plmo-container {
        width: min(100% - 28px, var(--plmo-max));
    }

    .plmo-news-page .plmo-news-grid,
    .plmo-news-page .plmo-grid {
        grid-template-columns: 1fr !important;
    }
}

/* v0.2.7 stable home shell + editorial portada */
.pl-home {
    background: #05070d;
    overflow-x: hidden;
    width: 100%;
}

.pl-shell {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1180px;
    width: min(100% - 32px, 1180px);
}

.pl-home section,
.pl-home-hero,
.pl-home-live,
.pl-home-about,
.pl-home-section {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    width: 100%;
}

.pl-home-hero,
.pl-home-live,
.pl-home-about,
.pl-home-section {
    margin-top: 24px;
}

.pl-home-hero {
    margin: 0 auto 32px;
    width: 100%;
}

.pl-section-heading {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    margin-bottom: 18px;
    padding: 24px;
    width: 100%;
}

.pl-section-heading span {
    color: #ffffff;
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pl-section-heading h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    margin: 0;
}

.pl-editorial-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
}

.pl-editorial-grid .plmo-card,
.pl-editorial-grid article,
.pl-home-grid {
    min-width: 0;
    width: 100%;
}

.pl-editorial-grid img {
    height: 240px;
    object-fit: cover;
    width: 100%;
}

.pl-home-grid {
    display: grid;
    gap: 16px;
}

.pl-home-section .plmo-section__header {
    margin-bottom: 16px;
}

@media (min-width: 760px) {
    .pl-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1040px) {
    .pl-home-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1000px) {
    .pl-editorial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pl-shell {
        width: min(100% - 20px, 100%);
    }

    .pl-editorial-grid {
        grid-template-columns: 1fr;
    }

    .pl-section-heading {
        padding: 18px;
    }

    .pl-editorial-grid img {
        height: 220px;
    }
}
