/*
|--------------------------------------------------------------------------
| Pressline Theme
|--------------------------------------------------------------------------
| Premium newspaper and magazine theme for Cyvento.
| Theme-specific styles only.
|--------------------------------------------------------------------------
*/

/* --------------------------------------------------------------------------
   Variables
-------------------------------------------------------------------------- */

:root {
    --pl-bg: #ffffff;
    --pl-surface: #ffffff;
    --pl-surface-soft: #f6f6f4;
    --pl-surface-muted: #efefec;

    --pl-text: #101014;
    --pl-text-soft: #595961;
    --pl-text-muted: #85858d;

    --pl-line: #dedee2;
    --pl-line-dark: #bbbbc2;

    --pl-accent: #ff3b30;
    --pl-accent-dark: #d9261c;
    --pl-accent-soft: #fff0ee;

    --pl-black: #09090b;
    --pl-white: #ffffff;

    --pl-success: #138a55;
    --pl-warning: #e89116;
    --pl-blue: #006ad4;
    --pl-purple: #7546d8;

    --pl-container: 1320px;
    --pl-content: 820px;

    --pl-radius-sm: 4px;
    --pl-radius-md: 8px;
    --pl-radius-lg: 14px;

    --pl-shadow-sm:
        0 4px 16px rgba(0, 0, 0, 0.05);

    --pl-shadow-md:
        0 16px 44px rgba(0, 0, 0, 0.09);

    --pl-font-sans:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --pl-font-serif:
        Georgia,
        "Times New Roman",
        serif;

    --pl-transition:
        180ms ease;
}

/* --------------------------------------------------------------------------
   Dark appearance
-------------------------------------------------------------------------- */

.pl-html[data-theme="dark"] {
    --pl-bg: #111113;
    --pl-surface: #18181b;
    --pl-surface-soft: #202024;
    --pl-surface-muted: #29292e;

    --pl-text: #f7f7f8;
    --pl-text-soft: #c5c5ca;
    --pl-text-muted: #93939c;

    --pl-line: #34343b;
    --pl-line-dark: #484851;

    --pl-black: #ffffff;
    --pl-white: #111113;

    color-scheme: dark;
}

/* --------------------------------------------------------------------------
   Reset
-------------------------------------------------------------------------- */

.pl-html {
    scroll-behavior: smooth;
}

.pl-body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--pl-bg);
    color: var(--pl-text);
    font-family: var(--pl-font-sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

.pl-body img,
.pl-body svg {
    max-width: 100%;
}

.pl-body img {
    display: block;
}

.pl-body a {
    color: inherit;
}

.pl-body button,
.pl-body input,
.pl-body textarea,
.pl-body select {
    font: inherit;
}

.pl-body button {
    color: inherit;
}

.pl-body ul,
.pl-body ol {
    margin: 0;
    padding: 0;
}

.pl-body li {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Container
-------------------------------------------------------------------------- */

.pl-container {
    width: min(
        calc(100% - 40px),
        var(--pl-container)
    );
    margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Accessibility
-------------------------------------------------------------------------- */

.pl-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 99999;
    padding: 10px 16px;
    transform: translateY(-160%);
    background: var(--pl-black);
    color: var(--pl-white);
    border-radius: var(--pl-radius-sm);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: transform var(--pl-transition);
}

.pl-skip-link:focus {
    transform: translateY(0);
}

.pl-body :focus-visible {
    outline: 2px solid var(--pl-accent);
    outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Header shell
-------------------------------------------------------------------------- */

.pl-header {
    position: relative;
    z-index: 200;
    background: var(--pl-surface);
    color: var(--pl-text);
    border-top: 3px solid var(--pl-black);
}

.pl-header-bar {
    border-bottom: 1px solid var(--pl-line);
    background: var(--pl-surface);
}

.pl-header-bar-inner {
    position: relative;
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}

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

.pl-header-right {
    justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   Header links
-------------------------------------------------------------------------- */

.pl-feed-link,
.pl-newsletter-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: var(--pl-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.pl-feed-link:hover,
.pl-newsletter-link:hover {
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Menu button
-------------------------------------------------------------------------- */

.pl-menu-button {
    width: 36px;
    height: 36px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.pl-menu-button span {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--pl-text);
    transition:
        transform var(--pl-transition),
        width var(--pl-transition);
}

.pl-menu-button span:nth-child(2) {
    width: 16px;
}

.pl-menu-button:hover span:nth-child(2) {
    width: 22px;
}

/* --------------------------------------------------------------------------
   Brand
-------------------------------------------------------------------------- */

.pl-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    color: var(--pl-text);
    text-decoration: none;
    text-align: center;
}

.pl-brand img {
    width: auto;
    max-width: 240px;
    max-height: 52px;
    object-fit: contain;
}

.pl-brand-text {
    display: block;
    font-family: var(--pl-font-serif);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.055em;
}

/* --------------------------------------------------------------------------
   Header icon buttons
-------------------------------------------------------------------------- */

.pl-icon-button {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pl-text);
    cursor: pointer;
    text-decoration: none;
    transition:
        background var(--pl-transition),
        color var(--pl-transition);
}

.pl-icon-button:hover {
    background: var(--pl-surface-soft);
    color: var(--pl-accent);
}

.pl-icon-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   Category menu
-------------------------------------------------------------------------- */

.pl-category-menu {
    position: relative;
}

.pl-category-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pl-text);
    cursor: pointer;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.pl-category-button:hover {
    color: var(--pl-accent);
}

.pl-nav-chevron {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--pl-transition);
}

.pl-category-button[aria-expanded="true"] .pl-nav-chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.pl-category-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 500;
    min-width: 240px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    background: var(--pl-surface);
    border: 1px solid var(--pl-line);
    box-shadow: var(--pl-shadow-md);
    transition:
        visibility var(--pl-transition),
        opacity var(--pl-transition),
        transform var(--pl-transition);
}

.pl-category-menu.is-open .pl-category-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.pl-category-dropdown a {
    display: block;
    padding: 10px 12px;
    color: var(--pl-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.pl-category-dropdown a:hover {
    background: var(--pl-surface-soft);
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Desktop navigation
-------------------------------------------------------------------------- */

.pl-desktop-nav {
    border-bottom: 1px solid var(--pl-line);
    background: var(--pl-surface);
}

.pl-desktop-nav-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.pl-nav-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.pl-nav-list > li {
    position: relative;
}

.pl-nav-list > li > a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    color: var(--pl-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.pl-nav-list > li:first-child > a {
    padding-left: 0;
}

.pl-nav-list > li > a:hover {
    color: var(--pl-accent);
}

.pl-has-children:hover > .pl-submenu,
.pl-has-children:focus-within > .pl-submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.pl-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 600;
    min-width: 230px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    background: var(--pl-surface);
    border: 1px solid var(--pl-line);
    box-shadow: var(--pl-shadow-md);
    transition:
        visibility var(--pl-transition),
        opacity var(--pl-transition),
        transform var(--pl-transition);
}

.pl-submenu li {
    position: relative;
}

.pl-submenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    color: var(--pl-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.pl-submenu a:hover {
    background: var(--pl-surface-soft);
    color: var(--pl-accent);
}

.pl-submenu .pl-submenu {
    top: -11px;
    left: calc(100% + 10px);
}

/* --------------------------------------------------------------------------
   Trending
-------------------------------------------------------------------------- */

.pl-trending {
    min-width: 0;
    max-width: 480px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pl-text-soft);
    font-size: 12px;
    white-space: nowrap;
}

.pl-trending-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 999px;
    background: var(--pl-accent);
}

.pl-trending strong {
    color: var(--pl-text);
    font-weight: 850;
}

.pl-trending a {
    min-width: 0;
    overflow: hidden;
    color: var(--pl-text-soft);
    text-decoration: none;
    text-overflow: ellipsis;
}

.pl-trending a:hover {
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Main page shell
-------------------------------------------------------------------------- */

.pl-main {
    min-height: 60vh;
    background: var(--pl-bg);
}

/* --------------------------------------------------------------------------
   Mobile drawer
-------------------------------------------------------------------------- */

.pl-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
}

.pl-mobile-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.pl-drawer-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    opacity: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.58);
    cursor: pointer;
    transition: opacity 220ms ease;
}

.pl-mobile-drawer.is-open .pl-drawer-overlay {
    opacity: 1;
}

.pl-drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(390px, 90vw);
    height: 100%;
    overflow-y: auto;
    transform: translateX(-102%);
    background: var(--pl-surface);
    border-right: 1px solid var(--pl-line);
    box-shadow: var(--pl-shadow-md);
    transition: transform 240ms ease;
}

.pl-mobile-drawer.is-open .pl-drawer-panel {
    transform: translateX(0);
}

.pl-drawer-heading {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-drawer-heading strong {
    font-family: var(--pl-font-serif);
    font-size: 24px;
    line-height: 1;
}

.pl-drawer-close {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.pl-mobile-nav {
    padding: 14px 22px 24px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-mobile-nav .pl-nav-list {
    display: block;
}

.pl-mobile-nav .pl-nav-list > li {
    border-bottom: 1px solid var(--pl-line);
}

.pl-mobile-nav .pl-nav-list > li:last-child {
    border-bottom: 0;
}

.pl-mobile-nav .pl-nav-list a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-size: 15px;
    font-weight: 800;
}

.pl-mobile-nav .pl-submenu {
    position: static;
    min-width: 0;
    display: none;
    padding: 0 0 12px 18px;
    visibility: visible;
    opacity: 1;
    transform: none;
    border: 0;
    box-shadow: none;
}

.pl-mobile-nav .pl-has-children.is-open > .pl-submenu {
    display: block;
}

.pl-mobile-nav .pl-submenu a {
    min-height: 42px;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
}

.pl-mobile-categories {
    padding: 24px 22px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-mobile-categories h3 {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pl-mobile-categories > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pl-mobile-categories a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--pl-line);
    border-radius: 999px;
    color: var(--pl-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 750;
}

.pl-mobile-categories a:hover {
    border-color: var(--pl-accent);
    color: var(--pl-accent);
}

.pl-mobile-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 24px 22px 40px;
}

.pl-mobile-socials a {
    color: var(--pl-text-soft);
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
}

.pl-mobile-socials a:hover {
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Body lock
-------------------------------------------------------------------------- */

.pl-body.pl-drawer-open {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Desktop-only and mobile-only behavior
-------------------------------------------------------------------------- */

@media (min-width: 992px) {
    .pl-menu-button {
        display: none;
    }
}

@media (max-width: 1100px) {
    .pl-trending {
        max-width: 330px;
    }

    .pl-nav-list > li > a {
        padding-inline: 10px;
    }
}

@media (max-width: 991px) {
    .pl-container {
        width: min(
            calc(100% - 30px),
            var(--pl-container)
        );
    }

    .pl-header {
        border-top-width: 2px;
    }

    .pl-header-bar-inner {
        min-height: 64px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 14px;
    }

    .pl-header-left {
        gap: 0;
    }

    .pl-header-right {
        gap: 2px;
    }

    .pl-feed-link,
    .pl-category-menu,
    .pl-newsletter-link {
        display: none;
    }

    .pl-brand {
        justify-self: center;
        max-width: 200px;
    }

    .pl-brand img {
        max-width: 180px;
        max-height: 42px;
    }

    .pl-brand-text {
        font-size: 30px;
    }

    .pl-desktop-nav {
        display: none;
    }
}

@media (max-width: 560px) {
    .pl-container {
        width: min(
            calc(100% - 22px),
            var(--pl-container)
        );
    }

    .pl-header-bar-inner {
        min-height: 60px;
    }

    .pl-brand img {
        max-width: 150px;
        max-height: 38px;
    }

    .pl-brand-text {
        font-size: 27px;
    }

    .pl-menu-button,
    .pl-icon-button {
        width: 34px;
        height: 34px;
    }

    .pl-header-right .pl-icon-button:first-child {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Reduced motion
-------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .pl-html {
        scroll-behavior: auto;
    }

    .pl-body *,
    .pl-body *::before,
    .pl-body *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}



/* --------------------------------------------------------------------------
   Footer
-------------------------------------------------------------------------- */

.pl-footer {
    margin-top: 72px;
    background: #0d0d10;
    color: #f7f7f8;
}

.pl-footer-main {
    padding: 72px 0 42px;
}

.pl-footer-top {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(150px, 0.7fr)
        minmax(150px, 0.7fr)
        minmax(260px, 1fr);
    gap: 54px;
    align-items: start;
}

.pl-footer-brand {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--pl-font-serif);
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.055em;
}

.pl-footer-description {
    max-width: 430px;
    margin: 24px 0 0;
    color: #b7b7bd;
    font-size: 15px;
    line-height: 1.75;
}

.pl-footer-subscribe-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.035em;
}

.pl-footer-subscribe-link:hover {
    color: var(--pl-accent);
}

.pl-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.pl-footer-socials a {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #34343a;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    transition:
        border-color var(--pl-transition),
        background var(--pl-transition),
        color var(--pl-transition);
}

.pl-footer-socials a:hover {
    border-color: var(--pl-accent);
    background: var(--pl-accent);
    color: #ffffff;
}

.pl-footer-heading {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pl-footer-link-list {
    display: grid;
    gap: 12px;
}

.pl-footer-link-list a {
    color: #b7b7bd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 650;
    transition: color var(--pl-transition);
}

.pl-footer-link-list a:hover {
    color: #ffffff;
}

.pl-footer-empty {
    margin: 0;
    color: #8f8f96;
    font-size: 14px;
    line-height: 1.6;
}

.pl-footer-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--pl-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-footer-newsletter-column h2 {
    margin: 0;
    color: #ffffff;
    font-family: var(--pl-font-serif);
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.pl-footer-newsletter-column > p {
    margin: 18px 0 0;
    color: #b7b7bd;
    font-size: 14px;
    line-height: 1.7;
}

.pl-footer-newsletter-form {
    margin-top: 24px;
}

.pl-footer-newsletter-control {
    display: flex;
    min-height: 50px;
    overflow: hidden;
    border: 1px solid #3a3a40;
    background: #151519;
}

.pl-footer-newsletter-control input {
    flex: 1;
    min-width: 0;
    padding: 0 16px;
    border: 0;
    outline: none;
    background: transparent;
    color: #ffffff;
}

.pl-footer-newsletter-control input::placeholder {
    color: #85858d;
}

.pl-footer-newsletter-control button {
    flex: 0 0 auto;
    padding: 0 22px;
    border: 0;
    background: var(--pl-accent);
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background var(--pl-transition);
}

.pl-footer-newsletter-control button:hover {
    background: var(--pl-accent-dark);
}

.pl-footer-newsletter-column small {
    display: block;
    margin-top: 12px;
    color: #85858d;
    font-size: 11px;
}

.pl-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.pl-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* --------------------------------------------------------------------------
   Footer contact row
-------------------------------------------------------------------------- */

.pl-footer-contact-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #2f2f34;
}

.pl-footer-contact-row > div {
    min-width: 0;
}

.pl-footer-contact-row span {
    display: block;
    margin-bottom: 7px;
    color: #7f7f87;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pl-footer-contact-row p,
.pl-footer-contact-row a {
    margin: 0;
    color: #d2d2d6;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
}

.pl-footer-contact-row a:hover {
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   Footer bottom
-------------------------------------------------------------------------- */

.pl-footer-bottom {
    border-top: 1px solid #2f2f34;
    background: #09090b;
}

.pl-footer-bottom-inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.pl-footer-bottom p {
    margin: 0;
    color: #8f8f96;
    font-size: 12px;
}

.pl-footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    color: #8f8f96;
    font-size: 12px;
}

.pl-footer-legal a {
    color: #8f8f96;
    text-decoration: none;
}

.pl-footer-legal a:hover {
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   Back to top
-------------------------------------------------------------------------- */

.pl-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 750;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    border: 1px solid var(--pl-line);
    border-radius: 999px;
    background: var(--pl-surface);
    color: var(--pl-text);
    box-shadow: var(--pl-shadow-md);
    cursor: pointer;
    transition:
        visibility var(--pl-transition),
        opacity var(--pl-transition),
        transform var(--pl-transition),
        background var(--pl-transition),
        color var(--pl-transition);
}

.pl-back-to-top.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.pl-back-to-top:hover {
    background: var(--pl-accent);
    color: #ffffff;
    border-color: var(--pl-accent);
}

.pl-back-to-top span {
    font-size: 20px;
    line-height: 1;
}

/* --------------------------------------------------------------------------
   Footer responsive
-------------------------------------------------------------------------- */

@media (max-width: 1100px) {
    .pl-footer-top {
        grid-template-columns: 1.15fr 0.8fr 0.8fr;
    }

    .pl-footer-newsletter-column {
        grid-column: 1 / -1;
        max-width: 760px;
    }
}

@media (max-width: 820px) {
    .pl-footer {
        margin-top: 54px;
    }

    .pl-footer-main {
        padding: 56px 0 34px;
    }

    .pl-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 42px 30px;
    }

    .pl-footer-brand-column,
    .pl-footer-newsletter-column {
        grid-column: 1 / -1;
    }

    .pl-footer-contact-row {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 42px;
    }

    .pl-footer-bottom-inner {
        min-height: 0;
        display: grid;
        padding: 22px 0;
    }
}

@media (max-width: 560px) {
    .pl-footer-main {
        padding-top: 46px;
    }

    .pl-footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pl-footer-brand-column,
    .pl-footer-newsletter-column {
        grid-column: auto;
    }

    .pl-footer-brand {
        font-size: 32px;
    }

    .pl-footer-newsletter-column h2 {
        font-size: 27px;
    }

    .pl-footer-newsletter-control {
        display: grid;
        overflow: visible;
        border: 0;
        background: transparent;
        gap: 10px;
    }

    .pl-footer-newsletter-control input {
        min-height: 50px;
        border: 1px solid #3a3a40;
        background: #151519;
    }

    .pl-footer-newsletter-control button {
        min-height: 50px;
    }

    .pl-footer-legal {
        gap: 12px;
    }

    .pl-back-to-top {
        right: 14px;
        bottom: 14px;
    }
}


/* --------------------------------------------------------------------------
   Homepage featured newspaper grid
-------------------------------------------------------------------------- */

.pl-featured {
    padding: 46px 0 58px;
    background: var(--pl-bg);
}

.pl-featured-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-section-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--pl-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-featured-heading h1 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.pl-featured-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--pl-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pl-featured-heading > a:hover {
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Three-column lead layout
-------------------------------------------------------------------------- */

.pl-featured-layout {
    display: grid;
    grid-template-columns:
        minmax(220px, 0.82fr)
        minmax(0, 1.6fr)
        minmax(240px, 0.88fr);
    gap: 28px;
    align-items: start;
}

/* --------------------------------------------------------------------------
   Supporting stories
-------------------------------------------------------------------------- */

.pl-featured-supporting {
    display: grid;
    gap: 28px;
}

.pl-support-story {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-support-story:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pl-support-story-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-support-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.pl-support-story:hover .pl-support-story-image img {
    transform: scale(1.035);
}

.pl-support-story-content {
    padding-top: 16px;
}

.pl-story-category {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--pl-accent);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-story-category:hover {
    color: var(--pl-accent-dark);
}

.pl-support-story h2 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.pl-support-story h2 a {
    color: inherit;
    text-decoration: none;
}

.pl-support-story h2 a:hover {
    color: var(--pl-accent);
}

.pl-story-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 13px;
    color: var(--pl-text-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pl-story-meta span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-left: 14px;
    border-radius: 999px;
    vertical-align: middle;
    background: currentColor;
}

/* --------------------------------------------------------------------------
   Lead story
-------------------------------------------------------------------------- */

.pl-featured-lead {
    min-width: 0;
}

.pl-lead-story {
    border-inline: 1px solid var(--pl-line);
    padding-inline: 28px;
}

.pl-lead-story-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-lead-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.pl-lead-story:hover .pl-lead-story-image img {
    transform: scale(1.028);
}

.pl-lead-story-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    background: var(--pl-accent);
    color: #ffffff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-lead-story-content {
    padding-top: 22px;
}

.pl-lead-story h2 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(38px, 4vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.pl-lead-story h2 a {
    color: inherit;
    text-decoration: none;
}

.pl-lead-story h2 a:hover {
    color: var(--pl-accent);
}

.pl-lead-story-content > p {
    margin: 20px 0 0;
    color: var(--pl-text-soft);
    font-size: 16px;
    line-height: 1.72;
}

/* --------------------------------------------------------------------------
   Popular stories
-------------------------------------------------------------------------- */

.pl-featured-popular {
    min-width: 0;
}

.pl-popular-heading {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-popular-heading > span {
    color: var(--pl-text);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-popular-heading > a {
    color: var(--pl-text-muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
}

.pl-popular-heading > a:hover {
    color: var(--pl-accent);
}

.pl-popular-list {
    display: grid;
}

.pl-popular-story {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--pl-line);
}

.pl-popular-story:last-child {
    border-bottom: 0;
}

.pl-popular-rank {
    color: var(--pl-line-dark);
    font-family: var(--pl-font-serif);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.pl-popular-category {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--pl-accent);
    text-decoration: none;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-popular-story h3 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 20px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.pl-popular-story h3 a {
    color: inherit;
    text-decoration: none;
}

.pl-popular-story h3 a:hover {
    color: var(--pl-accent);
}

.pl-popular-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 10px;
    color: var(--pl-text-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.pl-popular-empty,
.pl-support-placeholder {
    margin: 0;
    padding: 24px;
    border: 1px dashed var(--pl-line-dark);
    color: var(--pl-text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Empty featured state
-------------------------------------------------------------------------- */

.pl-featured-empty {
    padding: 70px 30px;
    text-align: center;
    border-top: 2px solid var(--pl-text);
    border-bottom: 1px solid var(--pl-line);
}

.pl-featured-empty > span {
    color: var(--pl-accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-featured-empty h1 {
    margin: 12px 0 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.pl-featured-empty p {
    max-width: 560px;
    margin: 18px auto 0;
    color: var(--pl-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Featured responsive
-------------------------------------------------------------------------- */

@media (max-width: 1180px) {
    .pl-featured-layout {
        grid-template-columns:
            minmax(210px, 0.8fr)
            minmax(0, 1.45fr);
    }

    .pl-featured-popular {
        grid-column: 1 / -1;
        margin-top: 10px;
        padding-top: 28px;
        border-top: 1px solid var(--pl-line);
    }

    .pl-popular-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .pl-popular-story {
        border-bottom: 0;
        border-right: 1px solid var(--pl-line);
        padding: 0 24px 0 0;
    }

    .pl-popular-story:last-child {
        border-right: 0;
        padding-right: 0;
    }
}

@media (max-width: 900px) {
    .pl-featured {
        padding: 34px 0 46px;
    }

    .pl-featured-layout {
        display: flex;
        flex-direction: column;
        gap: 34px;
    }

    .pl-featured-lead {
        order: 1;
        width: 100%;
    }

    .pl-featured-supporting {
        order: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        width: 100%;
    }

    .pl-featured-popular {
        order: 3;
        width: 100%;
        margin-top: 0;
    }

    .pl-lead-story {
        padding-inline: 0;
        border-inline: 0;
    }

    .pl-lead-story h2 {
        font-size: clamp(38px, 7vw, 58px);
    }

    .pl-support-story {
        padding-bottom: 0;
        border-bottom: 0;
    }
}

@media (max-width: 680px) {
    .pl-featured-heading {
        align-items: flex-start;
    }

    .pl-featured-heading > a {
        display: none;
    }

    .pl-featured-heading h1 {
        font-size: 38px;
    }

    .pl-lead-story-image {
        aspect-ratio: 4 / 3;
    }

    .pl-lead-story h2 {
        font-size: 40px;
    }

    .pl-lead-story-content > p {
        font-size: 15px;
    }

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

    .pl-support-story {
        display: grid;
        grid-template-columns: 132px minmax(0, 1fr);
        gap: 16px;
        align-items: start;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--pl-line);
    }

    .pl-support-story:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .pl-support-story-image {
        aspect-ratio: 1 / 1;
    }

    .pl-support-story-content {
        padding-top: 0;
    }

    .pl-support-story h2 {
        font-size: 21px;
    }

    .pl-popular-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pl-popular-story {
        border-right: 0;
        border-bottom: 1px solid var(--pl-line);
        padding: 20px 0;
    }

    .pl-popular-story:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 440px) {
    .pl-featured {
        padding-top: 26px;
    }

    .pl-support-story {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 13px;
    }

    .pl-support-story h2 {
        font-size: 18px;
    }

    .pl-lead-story h2 {
        font-size: 35px;
    }

    .pl-story-meta {
        gap: 7px 10px;
        font-size: 9px;
    }

    .pl-story-meta span:not(:last-child)::after {
        margin-left: 10px;
    }

    .pl-popular-story {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 13px;
    }

    .pl-popular-rank {
        font-size: 25px;
    }

    .pl-popular-story h3 {
        font-size: 18px;
    }
}

/* --------------------------------------------------------------------------
   Homepage most-read section
-------------------------------------------------------------------------- */

.pl-most-read-section {
    padding: 54px 0 62px;
    background: var(--pl-surface-soft);
    border-top: 1px solid var(--pl-line);
    border-bottom: 1px solid var(--pl-line);
}

.pl-most-read-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 28px;
    padding-bottom: 17px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-most-read-heading h2 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.pl-most-read-heading > p {
    max-width: 460px;
    margin: 0;
    color: var(--pl-text-soft);
    font-size: 13px;
    line-height: 1.65;
    text-align: right;
}

.pl-most-read-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pl-most-read-card {
    min-width: 0;
    background: var(--pl-surface);
    border: 1px solid var(--pl-line);
}

.pl-most-read-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--pl-surface-muted);
}

.pl-most-read-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.pl-most-read-card:hover .pl-most-read-image img {
    transform: scale(1.04);
}

.pl-most-read-rank {
    position: absolute;
    left: 12px;
    bottom: 12px;
    min-width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0 8px;
    background: var(--pl-black);
    color: var(--pl-white);
    font-family: var(--pl-font-serif);
    font-size: 17px;
    font-weight: 700;
}

.pl-most-read-content {
    padding: 19px 20px 22px;
}

.pl-most-read-content h3 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.pl-most-read-content h3 a {
    color: inherit;
    text-decoration: none;
}

.pl-most-read-content h3 a:hover {
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Most-read responsive
-------------------------------------------------------------------------- */

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

@media (max-width: 680px) {
    .pl-most-read-section {
        padding: 42px 0 48px;
    }

    .pl-most-read-heading {
        display: block;
    }

    .pl-most-read-heading > p {
        max-width: 100%;
        margin-top: 12px;
        text-align: left;
    }

    .pl-most-read-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pl-most-read-card {
        display: grid;
        grid-template-columns: 132px minmax(0, 1fr);
    }

    .pl-most-read-image {
        aspect-ratio: auto;
        min-height: 148px;
    }

    .pl-most-read-content {
        padding: 17px 18px;
    }

    .pl-most-read-content h3 {
        font-size: 20px;
    }

    .pl-most-read-rank {
        left: 8px;
        bottom: 8px;
        min-width: 31px;
        height: 31px;
        font-size: 14px;
    }
}

@media (max-width: 440px) {
    .pl-most-read-card {
        grid-template-columns: 108px minmax(0, 1fr);
    }

    .pl-most-read-image {
        min-height: 132px;
    }

    .pl-most-read-content {
        padding: 14px;
    }

    .pl-most-read-content h3 {
        font-size: 18px;
    }

    .pl-most-read-content .pl-story-meta span:last-child {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Homepage publication briefing bar
-------------------------------------------------------------------------- */

.pl-briefing-bar {
    background: var(--pl-black);
    color: var(--pl-white);
    border-top: 1px solid var(--pl-black);
    border-bottom: 1px solid var(--pl-black);
}

.pl-briefing-inner {
    min-height: 112px;
    display: grid;
    grid-template-columns: minmax(210px, 0.8fr) minmax(0, 2.2fr);
    gap: 46px;
    align-items: center;
    padding: 24px 0;
}

.pl-briefing-intro {
    padding-right: 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pl-briefing-label {
    display: block;
    color: var(--pl-accent);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.pl-briefing-intro p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.55;
}

.pl-briefing-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.pl-briefing-stat {
    min-width: 0;
}

.pl-briefing-stat strong {
    display: block;
    overflow: hidden;
    color: var(--pl-white);
    font-family: var(--pl-font-serif);
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.035em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pl-briefing-stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pl-briefing-date strong {
    font-family: var(--pl-font-sans);
    font-size: 16px;
    letter-spacing: -0.015em;
}

/* --------------------------------------------------------------------------
   Briefing responsive
-------------------------------------------------------------------------- */

@media (max-width: 960px) {
    .pl-briefing-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pl-briefing-intro {
        padding-right: 0;
        padding-bottom: 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 700px) {
    .pl-briefing-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }
}

@media (max-width: 420px) {
    .pl-briefing-inner {
        padding: 28px 0;
    }

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

    .pl-briefing-stat {
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .pl-briefing-stat:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }
}

/* --------------------------------------------------------------------------
   Homepage latest stories feed
-------------------------------------------------------------------------- */

.pl-latest-section {
    min-width: 0;
}

.pl-latest-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 26px;
    padding-bottom: 17px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-latest-heading h2 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.pl-latest-heading > p {
    max-width: 420px;
    margin: 0;
    color: var(--pl-text-soft);
    font-size: 13px;
    line-height: 1.65;
    text-align: right;
}

.pl-latest-list {
    display: grid;
}

.pl-latest-story {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--pl-line);
}

.pl-latest-story:first-child {
    padding-top: 0;
}

.pl-latest-story:last-child {
    border-bottom: 0;
}

.pl-latest-story-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-latest-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.pl-latest-story:hover .pl-latest-story-image img {
    transform: scale(1.035);
}

.pl-latest-story-content {
    min-width: 0;
}

.pl-latest-story h3 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 30px;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.pl-latest-story h3 a {
    color: inherit;
    text-decoration: none;
}

.pl-latest-story h3 a:hover {
    color: var(--pl-accent);
}

.pl-latest-story-content > p {
    margin: 15px 0 0;
    color: var(--pl-text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.pl-latest-story.is-lead {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: stretch;
    padding-bottom: 34px;
}

.pl-latest-story.is-lead .pl-latest-story-image {
    aspect-ratio: 16 / 10;
}

.pl-latest-story.is-lead .pl-latest-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pl-latest-story.is-lead h3 {
    font-size: clamp(34px, 4vw, 46px);
}

.pl-latest-empty {
    padding: 60px 30px;
    text-align: center;
    border: 1px dashed var(--pl-line-dark);
}

.pl-latest-empty > span {
    color: var(--pl-accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-latest-empty h3 {
    margin: 12px 0 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 34px;
    line-height: 1;
}

.pl-latest-empty p {
    margin: 14px 0 0;
    color: var(--pl-text-soft);
}

/* --------------------------------------------------------------------------
   Latest stories responsive
-------------------------------------------------------------------------- */

@media (max-width: 820px) {
    .pl-latest-heading {
        display: block;
    }

    .pl-latest-heading > p {
        max-width: 100%;
        margin-top: 12px;
        text-align: left;
    }

    .pl-latest-story,
    .pl-latest-story.is-lead {
        grid-template-columns: 210px minmax(0, 1fr);
        align-items: center;
    }

    .pl-latest-story.is-lead .pl-latest-story-image {
        aspect-ratio: 4 / 3;
    }

    .pl-latest-story h3,
    .pl-latest-story.is-lead h3 {
        font-size: 27px;
    }
}

@media (max-width: 620px) {
    .pl-latest-story,
    .pl-latest-story.is-lead {
        grid-template-columns: 128px minmax(0, 1fr);
        gap: 16px;
        padding: 20px 0;
    }

    .pl-latest-story-image,
    .pl-latest-story.is-lead .pl-latest-story-image {
        aspect-ratio: 1 / 1;
    }

    .pl-latest-story-content > p {
        display: none;
    }

    .pl-latest-story h3,
    .pl-latest-story.is-lead h3 {
        font-size: 21px;
        line-height: 1.08;
    }

    .pl-latest-story .pl-story-meta span:last-child {
        display: none;
    }
}

@media (max-width: 420px) {
    .pl-latest-story,
    .pl-latest-story.is-lead {
        grid-template-columns: 102px minmax(0, 1fr);
        gap: 13px;
    }

    .pl-latest-story h3,
    .pl-latest-story.is-lead h3 {
        font-size: 18px;
    }

    .pl-latest-story .pl-story-meta {
        margin-top: 9px;
    }

    .pl-latest-story .pl-story-meta span:nth-child(2) {
        display: none;
    }
}


/* --------------------------------------------------------------------------
   Pressline pagination
-------------------------------------------------------------------------- */

.pl-pagination {
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid var(--pl-line);
}

.pl-pagination-inner {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
    gap: 22px;
    align-items: center;
}

.pl-page-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pl-text);
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--pl-transition);
}

.pl-page-button:hover {
    color: var(--pl-accent);
}

.pl-page-previous {
    justify-self: start;
}

.pl-page-next {
    justify-self: end;
}

.pl-page-button.is-disabled {
    opacity: 0.32;
    pointer-events: none;
}

.pl-page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.pl-page-number,
.pl-page-ellipsis {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
}

.pl-page-number {
    border: 1px solid var(--pl-line);
    background: var(--pl-surface);
    color: var(--pl-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    transition:
        border-color var(--pl-transition),
        background var(--pl-transition),
        color var(--pl-transition);
}

.pl-page-number:hover {
    border-color: var(--pl-text);
}

.pl-page-number.is-current {
    border-color: var(--pl-black);
    background: var(--pl-black);
    color: var(--pl-white);
}

.pl-page-ellipsis {
    color: var(--pl-text-muted);
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   Pagination responsive
-------------------------------------------------------------------------- */

@media (max-width: 680px) {
    .pl-pagination-inner {
        grid-template-columns: 1fr 1fr;
    }

    .pl-page-numbers {
        grid-column: 1 / -1;
        grid-row: 1;
        flex-wrap: wrap;
    }

    .pl-page-previous {
        grid-column: 1;
        grid-row: 2;
    }

    .pl-page-next {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 420px) {
    .pl-page-number,
    .pl-page-ellipsis {
        width: 34px;
        height: 34px;
    }

    .pl-page-button {
        font-size: 10px;
    }
}

/* --------------------------------------------------------------------------
   Pressline sidebar
-------------------------------------------------------------------------- */

.pl-sidebar {
    display: grid;
    gap: 30px;
    min-width: 0;
}

/* --------------------------------------------------------------------------
   Sidebar profile
-------------------------------------------------------------------------- */

.pl-sidebar-profile {
    overflow: hidden;
    background: var(--pl-surface);
    border: 1px solid var(--pl-line);
}

.pl-sidebar-profile-media {
    min-height: 245px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-sidebar-profile-media img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.pl-sidebar-profile-media > span {
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--pl-black);
    color: var(--pl-white);
    font-family: var(--pl-font-serif);
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.pl-sidebar-profile-content {
    padding: 24px 26px 28px;
    text-align: center;
}

.pl-sidebar-profile-kicker {
    display: block;
    color: var(--pl-accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-sidebar-profile h2 {
    margin: 9px 0 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 28px;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.pl-sidebar-profile strong {
    display: inline-block;
    margin-top: 8px;
    color: var(--pl-text-muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pl-sidebar-profile p {
    margin: 17px 0 0;
    color: var(--pl-text-soft);
    font-size: 13px;
    line-height: 1.72;
}

.pl-sidebar-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.pl-sidebar-socials a {
    width: 31px;
    height: 31px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--pl-line);
    border-radius: 999px;
    color: var(--pl-text);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.pl-sidebar-socials a:hover {
    border-color: var(--pl-accent);
    background: var(--pl-accent);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   Sidebar blocks
-------------------------------------------------------------------------- */

.pl-sidebar-block {
    padding: 25px;
    background: var(--pl-surface);
    border: 1px solid var(--pl-line);
}

.pl-sidebar-heading {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-sidebar-heading > span {
    display: block;
    margin-bottom: 5px;
    color: var(--pl-accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-sidebar-heading h2 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 25px;
    line-height: 1;
    letter-spacing: -0.04em;
}

/* --------------------------------------------------------------------------
   Sidebar top stories
-------------------------------------------------------------------------- */

.pl-sidebar-story-list {
    display: grid;
}

.pl-sidebar-story {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--pl-line);
}

.pl-sidebar-story:first-child {
    padding-top: 0;
}

.pl-sidebar-story:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pl-sidebar-story-image {
    position: relative;
    display: block;
    width: 88px;
    height: 78px;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-sidebar-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-sidebar-story-image > span {
    position: absolute;
    left: 5px;
    bottom: 5px;
    min-width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    padding: 0 5px;
    background: var(--pl-black);
    color: var(--pl-white);
    font-family: var(--pl-font-serif);
    font-size: 11px;
    font-weight: 700;
}

.pl-sidebar-story-category {
    display: block;
    margin-bottom: 5px;
    color: var(--pl-accent);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pl-sidebar-story h3 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.pl-sidebar-story h3 a {
    color: inherit;
    text-decoration: none;
}

.pl-sidebar-story h3 a:hover {
    color: var(--pl-accent);
}

.pl-sidebar-story small {
    display: block;
    margin-top: 7px;
    color: var(--pl-text-muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Sidebar categories
-------------------------------------------------------------------------- */

.pl-sidebar-category-list {
    display: grid;
}

.pl-sidebar-category-list a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--pl-line);
    color: var(--pl-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.pl-sidebar-category-list a:first-child {
    margin-top: -7px;
}

.pl-sidebar-category-list a:last-child {
    border-bottom: 0;
}

.pl-sidebar-category-list a:hover {
    color: var(--pl-accent);
}

.pl-sidebar-category-list strong {
    min-width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border: 1px solid var(--pl-line);
    border-radius: 999px;
    color: var(--pl-text-muted);
    font-size: 9px;
    font-weight: 900;
}

/* --------------------------------------------------------------------------
   Sidebar newsletter
-------------------------------------------------------------------------- */

.pl-sidebar-newsletter {
    padding: 31px 27px;
    background: var(--pl-black);
    color: var(--pl-white);
}

.pl-sidebar-newsletter-kicker {
    display: block;
    color: var(--pl-accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-sidebar-newsletter h2 {
    margin: 11px 0 0;
    color: var(--pl-white);
    font-family: var(--pl-font-serif);
    font-size: 29px;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.pl-sidebar-newsletter > p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.65;
}

.pl-sidebar-newsletter form {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.pl-sidebar-newsletter input[type="email"] {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.pl-sidebar-newsletter input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.pl-sidebar-newsletter button {
    min-height: 48px;
    border: 0;
    background: var(--pl-accent);
    color: #ffffff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-sidebar-newsletter button:hover {
    background: var(--pl-accent-dark);
}

.pl-sidebar-newsletter small {
    display: block;
    margin-top: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
}

/* --------------------------------------------------------------------------
   Sidebar responsive
-------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .pl-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 44px;
    }

    .pl-sidebar-newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .pl-sidebar {
        grid-template-columns: 1fr;
    }

    .pl-sidebar-newsletter {
        grid-column: auto;
    }

    .pl-sidebar-profile-media {
        min-height: 280px;
    }

    .pl-sidebar-profile-media img {
        height: 280px;
    }
}



/* --------------------------------------------------------------------------
   Homepage subscription banner
-------------------------------------------------------------------------- */

.pl-home-subscribe {
    padding: 66px 0;
    background: var(--pl-bg);
}

.pl-home-subscribe-card {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
    overflow: hidden;
    background: var(--pl-black);
    color: var(--pl-white);
}

.pl-home-subscribe-card:not(:has(.pl-home-subscribe-media)) {
    grid-template-columns: 1fr;
}

.pl-home-subscribe-media {
    min-height: 420px;
    overflow: hidden;
    background: #222226;
}

.pl-home-subscribe-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-home-subscribe-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 62px;
}

.pl-home-subscribe-kicker {
    display: block;
    color: var(--pl-accent);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.pl-home-subscribe-content h2 {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--pl-white);
    font-family: var(--pl-font-serif);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.pl-home-subscribe-content > p {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.75;
}

.pl-home-subscribe-form {
    max-width: 680px;
    margin-top: 30px;
}

.pl-home-subscribe-control {
    display: flex;
    min-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

.pl-home-subscribe-control input {
    flex: 1;
    min-width: 0;
    padding: 0 20px;
    border: 0;
    outline: none;
    background: transparent;
    color: #ffffff;
}

.pl-home-subscribe-control input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.pl-home-subscribe-control button {
    flex: 0 0 auto;
    padding: 0 30px;
    border: 0;
    background: var(--pl-accent);
    color: #ffffff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: background var(--pl-transition);
}

.pl-home-subscribe-control button:hover {
    background: var(--pl-accent-dark);
}

.pl-home-subscribe-note {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Subscription banner responsive
-------------------------------------------------------------------------- */

@media (max-width: 900px) {
    .pl-home-subscribe-card {
        grid-template-columns: 1fr;
    }

    .pl-home-subscribe-media {
        min-height: 330px;
    }

    .pl-home-subscribe-content {
        padding: 46px 40px;
    }
}

@media (max-width: 560px) {
    .pl-home-subscribe {
        padding: 48px 0;
    }

    .pl-home-subscribe-media {
        min-height: 250px;
    }

    .pl-home-subscribe-content {
        padding: 38px 24px;
    }

    .pl-home-subscribe-content h2 {
        font-size: 39px;
    }

    .pl-home-subscribe-control {
        display: grid;
        min-height: 0;
        gap: 10px;
        border: 0;
        background: transparent;
    }

    .pl-home-subscribe-control input {
        min-height: 52px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.06);
    }

    .pl-home-subscribe-control button {
        min-height: 52px;
    }
}


/* --------------------------------------------------------------------------
   Homepage secondary category grid
-------------------------------------------------------------------------- */

.pl-secondary-section {
    padding: 68px 0 70px;
    background: var(--pl-bg);
    border-top: 1px solid var(--pl-line);
}

.pl-secondary-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-secondary-heading h2 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.pl-secondary-heading > p {
    max-width: 460px;
    margin: 0;
    color: var(--pl-text-soft);
    font-size: 13px;
    line-height: 1.65;
    text-align: right;
}

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

.pl-secondary-column {
    min-width: 0;
}

.pl-secondary-column:not(:last-child) {
    padding-right: 38px;
    border-right: 1px solid var(--pl-line);
}

.pl-secondary-column-heading {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--pl-line-dark);
}

.pl-secondary-column-heading h3 {
    margin: 0;
    color: var(--pl-text);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pl-secondary-column-heading h3 a,
.pl-secondary-column-heading > a {
    color: inherit;
    text-decoration: none;
}

.pl-secondary-column-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--pl-text-muted);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pl-secondary-column-heading a:hover {
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Lead post per category
-------------------------------------------------------------------------- */

.pl-secondary-lead {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-secondary-lead-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-secondary-lead-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.pl-secondary-lead:hover .pl-secondary-lead-image img {
    transform: scale(1.035);
}

.pl-secondary-lead-content {
    padding-top: 16px;
}

.pl-secondary-lead h4 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 27px;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.pl-secondary-lead h4 a {
    color: inherit;
    text-decoration: none;
}

.pl-secondary-lead h4 a:hover {
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Smaller category stories
-------------------------------------------------------------------------- */

.pl-secondary-small-list {
    display: grid;
}

.pl-secondary-small {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--pl-line);
}

.pl-secondary-small:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pl-secondary-small-image {
    display: block;
    width: 90px;
    height: 76px;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-secondary-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-secondary-small h4 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.pl-secondary-small h4 a {
    color: inherit;
    text-decoration: none;
}

.pl-secondary-small h4 a:hover {
    color: var(--pl-accent);
}

.pl-secondary-small small {
    display: block;
    margin-top: 7px;
    color: var(--pl-text-muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Secondary category responsive
-------------------------------------------------------------------------- */

@media (max-width: 1050px) {
    .pl-secondary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pl-secondary-column:nth-child(2) {
        padding-right: 0;
        border-right: 0;
    }

    .pl-secondary-column:nth-child(3) {
        grid-column: 1 / -1;
        padding-top: 12px;
        padding-right: 0;
        border-right: 0;
        border-top: 1px solid var(--pl-line);
    }

    .pl-secondary-column:nth-child(3) {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 26px;
    }

    .pl-secondary-column:nth-child(3)
        .pl-secondary-column-heading {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .pl-secondary-section {
        padding: 52px 0;
    }

    .pl-secondary-heading {
        display: block;
    }

    .pl-secondary-heading > p {
        max-width: 100%;
        margin-top: 12px;
        text-align: left;
    }

    .pl-secondary-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .pl-secondary-column,
    .pl-secondary-column:not(:last-child),
    .pl-secondary-column:nth-child(2),
    .pl-secondary-column:nth-child(3) {
        display: block;
        grid-column: auto;
        padding: 0;
        border-right: 0;
        border-top: 0;
    }

    .pl-secondary-column:not(:first-child) {
        padding-top: 34px;
        border-top: 1px solid var(--pl-line);
    }
}

@media (max-width: 440px) {
    .pl-secondary-lead h4 {
        font-size: 23px;
    }

    .pl-secondary-small {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 12px;
    }

    .pl-secondary-small-image {
        width: 78px;
        height: 68px;
    }

    .pl-secondary-small h4 {
        font-size: 16px;
    }
}

/* --------------------------------------------------------------------------
   Pressline homepage core layout connection
-------------------------------------------------------------------------- */

/*
 * The shared /core/index.php uses Bootstrap-style wrapper classes.
 * These rules are restricted to .pl-body so Default and Editorial
 * remain completely unaffected.
 */

.pl-body .main-post-area {
    padding: 68px 0 20px;
    background: var(--pl-bg);
}

.pl-body .main-post-area > .container {
    width: min(
        calc(100% - 40px),
        var(--pl-container)
    );
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
}

.pl-body .main-post-area .main-area {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 54px;
    align-items: start;
    margin: 0;
}

.pl-body .main-post-area .main-area > .col-lg-8,
.pl-body .main-post-area .main-area > .col-lg-4 {
    width: auto;
    max-width: none;
    padding: 0;
}

.pl-body .main-post-wrap {
    min-width: 0;
}

/*
 * Keep the briefing, latest feed and pagination together.
 */

.pl-body #main-posts-section {
    min-width: 0;
}

/*
 * Shared advertising includes may use their own classes.
 * Give them controlled spacing without changing their content.
 */

.pl-body .main-post-wrap > .ad-section,
.pl-body .main-post-wrap > .ad-area,
.pl-body .main-post-wrap > .advertisement,
.pl-body .main-post-wrap > [class*="ad-"] {
    margin: 42px 0;
}

/*
 * The full-width category section and subscription banner sit inside
 * the left column under the current shared index structure.
 */

.pl-body .main-post-wrap > .pl-home-subscribe {
    padding-left: 0;
    padding-right: 0;
}

.pl-body .main-post-wrap > .pl-home-subscribe .pl-container,
.pl-body .main-post-wrap > .pl-secondary-section .pl-container {
    width: 100%;
}

/*
 * Avoid excessive footer distance after the final homepage section.
 */

.pl-body .main-post-area + .pl-footer {
    margin-top: 54px;
}

/* --------------------------------------------------------------------------
   Homepage layout responsive
-------------------------------------------------------------------------- */

@media (max-width: 1100px) {
    .pl-body .main-post-area .main-area {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 38px;
    }
}

@media (max-width: 991px) {
    .pl-body .main-post-area {
        padding-top: 52px;
    }

    .pl-body .main-post-area > .container {
        width: min(
            calc(100% - 30px),
            var(--pl-container)
        );
    }

    .pl-body .main-post-area .main-area {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pl-body .main-post-area .main-area > .col-lg-4 {
        margin-top: 48px;
    }
}

@media (max-width: 560px) {
    .pl-body .main-post-area {
        padding-top: 42px;
    }

    .pl-body .main-post-area > .container {
        width: min(
            calc(100% - 22px),
            var(--pl-container)
        );
    }

    .pl-body .main-post-area .main-area > .col-lg-4 {
        margin-top: 40px;
    }
}


/* --------------------------------------------------------------------------
   Pressline blog archive
-------------------------------------------------------------------------- */

.pl-blog-archive {
    padding: 58px 0 76px;
    background: var(--pl-bg);
}

.pl-blog-archive-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 34px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-blog-archive-header h1 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.pl-blog-archive-header > p {
    max-width: 470px;
    margin: 0;
    color: var(--pl-text-soft);
    font-size: 14px;
    line-height: 1.7;
    text-align: right;
}

.pl-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
    align-items: start;
}

.pl-blog-main {
    min-width: 0;
}

/* Lead story */

.pl-blog-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: center;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-blog-lead-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-blog-lead-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.pl-blog-lead:hover .pl-blog-lead-image img {
    transform: scale(1.03);
}

.pl-blog-lead h2 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(36px, 4vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.pl-blog-lead h2 a {
    color: inherit;
    text-decoration: none;
}

.pl-blog-lead h2 a:hover {
    color: var(--pl-accent);
}

.pl-blog-lead-content > p {
    margin: 18px 0 0;
    color: var(--pl-text-soft);
    font-size: 15px;
    line-height: 1.75;
}

/* Archive grid */

.pl-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    margin-top: 34px;
}

.pl-blog-card {
    min-width: 0;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.pl-blog-card:hover .pl-blog-card-image img {
    transform: scale(1.035);
}

.pl-blog-card-content {
    padding-top: 17px;
}

.pl-blog-card h2 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.pl-blog-card h2 a {
    color: inherit;
    text-decoration: none;
}

.pl-blog-card h2 a:hover {
    color: var(--pl-accent);
}

.pl-blog-card-content > p {
    margin: 13px 0 0;
    color: var(--pl-text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.pl-blog-empty {
    padding: 72px 30px;
    text-align: center;
    border: 1px dashed var(--pl-line-dark);
}

.pl-blog-empty > span {
    color: var(--pl-accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-blog-empty h2 {
    margin: 12px 0 0;
    font-family: var(--pl-font-serif);
    font-size: 40px;
    line-height: 1;
}

.pl-blog-empty p {
    margin: 14px 0 0;
    color: var(--pl-text-soft);
}

/* Responsive */

@media (max-width: 1050px) {
    .pl-blog-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 34px;
    }
}

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

    .pl-blog-sidebar {
        margin-top: 20px;
    }
}

@media (max-width: 720px) {
    .pl-blog-archive {
        padding-top: 42px;
    }

    .pl-blog-archive-header {
        display: block;
    }

    .pl-blog-archive-header > p {
        max-width: 100%;
        margin-top: 12px;
        text-align: left;
    }

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

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

@media (max-width: 520px) {
    .pl-blog-card {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 15px;
        align-items: start;
    }

    .pl-blog-card-image {
        aspect-ratio: 1 / 1;
    }

    .pl-blog-card-content {
        padding-top: 0;
    }

    .pl-blog-card h2 {
        font-size: 20px;
    }

    .pl-blog-card-content > p {
        display: none;
    }

    .pl-blog-card .pl-story-meta span:last-child {
        display: none;
    }
}

/* Balance an incomplete final archive row */
.pl-blog-grid.has-odd-count > .pl-blog-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: center;
}

.pl-blog-grid.has-odd-count > .pl-blog-card:last-child .pl-blog-card-image {
    aspect-ratio: 16 / 9;
}

.pl-blog-grid.has-odd-count > .pl-blog-card:last-child .pl-blog-card-content {
    padding-top: 0;
}

.pl-blog-grid.has-odd-count > .pl-blog-card:last-child h2 {
    font-size: 34px;
}

@media (max-width: 720px) {
    .pl-blog-grid.has-odd-count > .pl-blog-card:last-child {
        grid-column: auto;
        display: block;
    }

    .pl-blog-grid.has-odd-count > .pl-blog-card:last-child .pl-blog-card-content {
        padding-top: 17px;
    }

    .pl-blog-grid.has-odd-count > .pl-blog-card:last-child h2 {
        font-size: 28px;
    }
}

/* Keep the archive and sidebar visually balanced */
.pl-blog-layout {
    align-items: stretch;
}

.pl-blog-sidebar {
    display: flex;
}

.pl-blog-sidebar > .pl-sidebar {
    width: 100%;
}

/* --------------------------------------------------------------------------
   Pressline archive explorer
-------------------------------------------------------------------------- */

.pl-archive-explorer {
    margin-top: 42px;
    padding: 34px;
    background: var(--pl-surface-soft);
    border-top: 3px solid var(--pl-text);
    border-bottom: 1px solid var(--pl-line);
}

.pl-archive-explorer-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 24px;
}

.pl-archive-explorer-heading > div > span {
    display: block;
    margin-bottom: 7px;
    color: var(--pl-accent);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.pl-archive-explorer-heading h2 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.pl-archive-explorer-heading > p {
    max-width: 340px;
    margin: 0;
    color: var(--pl-text-soft);
    font-size: 12px;
    line-height: 1.6;
    text-align: right;
}

.pl-archive-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--pl-line);
    border-left: 1px solid var(--pl-line);
}

.pl-archive-category-card {
    min-height: 105px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 15px;
    align-items: center;
    padding: 19px 20px;
    border-right: 1px solid var(--pl-line);
    border-bottom: 1px solid var(--pl-line);
    background: var(--pl-surface);
    color: var(--pl-text);
    text-decoration: none;
    transition:
        background var(--pl-transition),
        color var(--pl-transition);
}

.pl-archive-category-card:hover {
    background: var(--pl-black);
    color: var(--pl-white);
}

.pl-archive-category-number {
    color: var(--pl-accent);
    font-family: var(--pl-font-serif);
    font-size: 20px;
    font-weight: 700;
}

.pl-archive-category-card h3 {
    margin: 0;
    color: inherit;
    font-family: var(--pl-font-serif);
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.pl-archive-category-card p {
    margin: 6px 0 0;
    color: var(--pl-text-muted);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-archive-category-card:hover p {
    color: rgba(255, 255, 255, 0.58);
}

.pl-archive-category-arrow {
    font-size: 19px;
    transition: transform var(--pl-transition);
}

.pl-archive-category-card:hover .pl-archive-category-arrow {
    transform: translateX(4px);
}

.pl-archive-explorer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.pl-archive-explorer-footer p {
    margin: 0;
    color: var(--pl-text-soft);
    font-size: 12px;
    line-height: 1.6;
}

.pl-archive-explorer-footer a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--pl-text);
    text-decoration: none;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-archive-explorer-footer a:hover {
    color: var(--pl-accent);
}

@media (max-width: 680px) {
    .pl-archive-explorer {
        padding: 26px 22px;
    }

    .pl-archive-explorer-heading {
        display: block;
    }

    .pl-archive-explorer-heading > p {
        max-width: 100%;
        margin-top: 11px;
        text-align: left;
    }

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

    .pl-archive-explorer-footer {
        display: block;
    }

    .pl-archive-explorer-footer a {
        margin-top: 16px;
    }
}


/* --------------------------------------------------------------------------
   Pressline single article
-------------------------------------------------------------------------- */

.pl-single-page {
    padding: 48px 0 78px;
    background: var(--pl-bg);
}

.pl-single-header {
    max-width: 1040px;
    margin: 0 auto 34px;
    text-align: center;
}

.pl-single-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--pl-text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pl-single-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.pl-single-breadcrumb a:hover {
    color: var(--pl-accent);
}

.pl-single-header h1 {
    max-width: 980px;
    margin: 0 auto;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(48px, 7vw, 86px);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.pl-single-deck {
    max-width: 780px;
    margin: 24px auto 0;
    color: var(--pl-text-soft);
    font-size: 19px;
    line-height: 1.65;
}

.pl-single-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px 38px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--pl-line);
}

.pl-single-byline {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.pl-single-byline img,
.pl-single-byline > span {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 999px;
}

.pl-single-byline img {
    object-fit: cover;
}

.pl-single-byline > span {
    display: grid;
    place-items: center;
    background: var(--pl-black);
    color: var(--pl-white);
    font-family: var(--pl-font-serif);
    font-weight: 700;
}

.pl-single-byline strong,
.pl-single-byline small {
    display: block;
}

.pl-single-byline strong {
    color: var(--pl-text);
    font-size: 13px;
}

.pl-single-byline small {
    margin-top: 3px;
    color: var(--pl-text-muted);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pl-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--pl-text-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pl-single-meta span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-left: 18px;
    border-radius: 999px;
    vertical-align: middle;
    background: currentColor;
}

/* --------------------------------------------------------------------------
   Single hero
-------------------------------------------------------------------------- */

.pl-single-hero {
    max-width: 1180px;
    margin: 0 auto 46px;
}

.pl-single-hero img {
    width: 100%;
    max-height: 720px;
    object-fit: cover;
}

.pl-single-hero figcaption {
    margin-top: 10px;
    color: var(--pl-text-muted);
    font-size: 11px;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Single layout
-------------------------------------------------------------------------- */

.pl-single-layout {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

.pl-single-article {
    min-width: 0;
}

.pl-single-sidebar {
    min-width: 0;
}

/* --------------------------------------------------------------------------
   Vertical sharing
-------------------------------------------------------------------------- */

.pl-single-share {
    position: sticky;
    top: 24px;
    display: grid;
    justify-items: center;
    gap: 9px;
}

.pl-single-share > span {
    margin-bottom: 4px;
    color: var(--pl-text-muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.pl-single-share a,
.pl-single-share button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--pl-line);
    border-radius: 999px;
    background: var(--pl-surface);
    color: var(--pl-text);
    text-decoration: none;
    cursor: pointer;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.pl-single-share a:hover,
.pl-single-share button:hover,
.pl-single-share button.is-copied {
    border-color: var(--pl-accent);
    background: var(--pl-accent);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   Article content
-------------------------------------------------------------------------- */

.pl-single-content {
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 20px;
    line-height: 1.85;
}

.pl-single-content > *:first-child {
    margin-top: 0;
}

.pl-single-content p,
.pl-single-content ul,
.pl-single-content ol,
.pl-single-content blockquote,
.pl-single-content table,
.pl-single-content figure {
    margin: 0 0 28px;
}

.pl-single-content h2,
.pl-single-content h3,
.pl-single-content h4 {
    color: var(--pl-text);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.pl-single-content h2 {
    margin: 52px 0 20px;
    font-size: 42px;
}

.pl-single-content h3 {
    margin: 40px 0 18px;
    font-size: 32px;
}

.pl-single-content h4 {
    margin: 32px 0 16px;
    font-size: 25px;
}

.pl-single-content a {
    color: var(--pl-accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.pl-single-content ul,
.pl-single-content ol {
    padding-left: 28px;
}

.pl-single-content li {
    margin-bottom: 10px;
    list-style: inherit;
}

.pl-single-content blockquote {
    padding: 10px 0 10px 30px;
    border-left: 4px solid var(--pl-accent);
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.32;
}

.pl-single-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-inline: auto;
}

.pl-single-content figure img {
    width: 100%;
}

.pl-single-content figcaption {
    margin-top: 8px;
    color: var(--pl-text-muted);
    font-family: var(--pl-font-sans);
    font-size: 11px;
    line-height: 1.5;
}

.pl-single-content table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--pl-font-sans);
    font-size: 14px;
}

.pl-single-content th,
.pl-single-content td {
    padding: 13px 14px;
    border: 1px solid var(--pl-line);
    text-align: left;
}

.pl-single-content th {
    background: var(--pl-surface-soft);
}

.pl-single-content pre {
    overflow-x: auto;
    margin: 0 0 28px;
    padding: 22px;
    background: #111114;
    color: #f7f7f8;
    font-size: 14px;
    line-height: 1.7;
}

.pl-single-content code {
    font-size: 0.9em;
}

.pl-single-content > p:first-of-type::first-letter {
    float: left;
    margin: 8px 10px 0 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 76px;
    font-weight: 700;
    line-height: 0.78;
}

.pl-single-end-mark {
    margin: 40px 0;
    color: var(--pl-accent);
    text-align: center;
    font-size: 12px;
}

/* --------------------------------------------------------------------------
   Article footer
-------------------------------------------------------------------------- */

.pl-single-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 0;
    border-top: 1px solid var(--pl-line);
    border-bottom: 1px solid var(--pl-line);
}

.pl-single-category-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--pl-line);
    border-radius: 999px;
    color: var(--pl-text);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-single-category-pill:hover {
    border-color: var(--pl-accent);
    color: var(--pl-accent);
}

.pl-single-inline-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;
}

.pl-single-inline-share > span {
    color: var(--pl-text-muted);
    font-weight: 850;
    text-transform: uppercase;
}

.pl-single-inline-share a {
    color: var(--pl-text);
    text-decoration: none;
    font-weight: 800;
}

.pl-single-inline-share a:hover {
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Previous and next stories
-------------------------------------------------------------------------- */

.pl-single-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.pl-single-nav-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 26px;
    border: 1px solid var(--pl-line);
    color: var(--pl-text);
    text-decoration: none;
}

.pl-single-nav-card:hover {
    border-color: var(--pl-text);
    background: var(--pl-surface-soft);
}

.pl-single-nav-card span {
    color: var(--pl-accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pl-single-nav-card strong {
    display: block;
    margin-top: 12px;
    font-family: var(--pl-font-serif);
    font-size: 23px;
    line-height: 1.12;
}

.pl-single-nav-card.is-next {
    text-align: right;
}

/* --------------------------------------------------------------------------
   Author panel
-------------------------------------------------------------------------- */

.pl-single-author {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    margin-top: 36px;
    padding: 30px;
    background: var(--pl-surface-soft);
    border-top: 3px solid var(--pl-text);
}

.pl-single-author-media img,
.pl-single-author-media > span {
    width: 120px;
    height: 120px;
}

.pl-single-author-media img {
    object-fit: cover;
}

.pl-single-author-media > span {
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--pl-black);
    color: var(--pl-white);
    font-family: var(--pl-font-serif);
    font-size: 38px;
    font-weight: 700;
}

.pl-single-author-content > span {
    color: var(--pl-accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pl-single-author-content h2 {
    margin: 7px 0 0;
    font-family: var(--pl-font-serif);
    font-size: 31px;
    line-height: 1;
}

.pl-single-author-content strong {
    display: block;
    margin-top: 7px;
    color: var(--pl-text-muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pl-single-author-content p {
    margin: 14px 0 0;
    color: var(--pl-text-soft);
    font-size: 13px;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Related stories
-------------------------------------------------------------------------- */

.pl-related-posts {
    margin-top: 48px;
}

.pl-related-posts > header {
    margin-bottom: 22px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-related-posts h2 {
    margin: 0;
    font-family: var(--pl-font-serif);
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.05em;
}

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

.pl-related-card {
    min-width: 0;
}

.pl-related-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.pl-related-card:hover .pl-related-image img {
    transform: scale(1.035);
}

.pl-related-card > div {
    padding-top: 13px;
}

.pl-related-card > div > span {
    color: var(--pl-accent);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pl-related-card h3 {
    margin: 7px 0 0;
    font-family: var(--pl-font-serif);
    font-size: 19px;
    line-height: 1.08;
}

.pl-related-card h3 a {
    color: inherit;
    text-decoration: none;
}

.pl-related-card h3 a:hover {
    color: var(--pl-accent);
}

.pl-related-card small {
    display: block;
    margin-top: 8px;
    color: var(--pl-text-muted);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Comments
-------------------------------------------------------------------------- */

.pl-comments-section {
    margin-top: 54px;
}

.pl-comments-heading {
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-comments-heading h2 {
    margin: 0;
    font-family: var(--pl-font-serif);
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.pl-comments-heading h2 small {
    color: var(--pl-accent);
    font-family: var(--pl-font-sans);
    font-size: 12px;
}

.pl-comment-alert {
    margin-bottom: 22px;
    padding: 14px 16px;
    font-size: 13px;
}

.pl-comment-alert.is-success {
    background: #eaf8ef;
    color: #126333;
}

.pl-comment-alert.is-error {
    background: #fff0ee;
    color: #9f211b;
}

.pl-comments-list {
    display: grid;
    gap: 24px;
}

.pl-comment {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 15px;
}

.pl-comment-avatar {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--pl-black);
    color: var(--pl-white);
    font-weight: 900;
}

.pl-comment-body {
    min-width: 0;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-comment-body > header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.pl-comment-body h4 {
    margin: 0;
    font-size: 14px;
}

.pl-comment-body time {
    display: block;
    margin-top: 3px;
    color: var(--pl-text-muted);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.pl-comment-body > p {
    margin: 13px 0 0;
    color: var(--pl-text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.pl-comment-reply-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pl-accent);
    cursor: pointer;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.pl-comment-replies {
    display: grid;
    gap: 20px;
    margin-top: 22px;
    padding-left: 26px;
    border-left: 2px solid var(--pl-line);
}

.pl-comments-empty {
    margin: 0;
    padding: 22px;
    background: var(--pl-surface-soft);
    color: var(--pl-text-soft);
    font-size: 14px;
}

.pl-comment-form {
    display: grid;
    gap: 18px;
    margin-top: 32px;
    padding: 28px;
    background: var(--pl-surface-soft);
}

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

.pl-comment-form label > span {
    display: block;
    margin-bottom: 7px;
    color: var(--pl-text);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-comment-form input,
.pl-comment-form textarea {
    width: 100%;
    border: 1px solid var(--pl-line);
    outline: none;
    background: var(--pl-surface);
    color: var(--pl-text);
}

.pl-comment-form input {
    min-height: 48px;
    padding: 0 14px;
}

.pl-comment-form textarea {
    padding: 14px;
    resize: vertical;
}

.pl-comment-form input:focus,
.pl-comment-form textarea:focus {
    border-color: var(--pl-text);
}

.pl-comment-form > button {
    min-height: 48px;
    justify-self: start;
    padding: 0 24px;
    border: 0;
    background: var(--pl-accent);
    color: #ffffff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pl-comment-form > button:hover {
    background: var(--pl-accent-dark);
}

.pl-comment-reply-notice {
    padding: 11px 14px;
    background: var(--pl-accent-soft);
    color: var(--pl-text);
    font-size: 12px;
}

.pl-comment-reply-notice button {
    margin-left: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pl-accent);
    cursor: pointer;
    font-weight: 900;
}

/* --------------------------------------------------------------------------
   Single responsive
-------------------------------------------------------------------------- */

@media (max-width: 1080px) {
    .pl-single-layout {
        grid-template-columns: 48px minmax(0, 1fr) 290px;
        gap: 26px;
    }
}

@media (max-width: 920px) {
    .pl-single-layout {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .pl-single-sidebar {
        grid-column: 1 / -1;
        margin-top: 36px;
    }
}

@media (max-width: 700px) {
    .pl-single-page {
        padding-top: 36px;
    }

    .pl-single-header {
        text-align: left;
    }

    .pl-single-breadcrumb {
        justify-content: flex-start;
    }

    .pl-single-header h1 {
        font-size: 52px;
    }

    .pl-single-deck {
        font-size: 17px;
    }

    .pl-single-meta-row {
        justify-content: flex-start;
    }

    .pl-single-layout {
        display: block;
    }

    .pl-single-share {
        position: static;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 24px;
    }

    .pl-single-share > span {
        margin: 0 5px 0 0;
        writing-mode: initial;
        transform: none;
    }

    .pl-single-content {
        font-size: 18px;
    }

    .pl-single-content h2 {
        font-size: 35px;
    }

    .pl-single-content h3 {
        font-size: 28px;
    }

    .pl-single-navigation,
    .pl-related-grid {
        grid-template-columns: 1fr;
    }

    .pl-single-nav-card.is-next {
        text-align: left;
    }

    .pl-single-author {
        grid-template-columns: 90px minmax(0, 1fr);
        padding: 24px;
    }

    .pl-single-author-media img,
    .pl-single-author-media > span {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 520px) {
    .pl-single-header h1 {
        font-size: 42px;
    }

    .pl-single-meta {
        gap: 8px 12px;
    }

    .pl-single-meta span:not(:last-child)::after {
        margin-left: 12px;
    }

    .pl-single-content {
        font-size: 17px;
        line-height: 1.78;
    }

    .pl-single-content > p:first-of-type::first-letter {
        font-size: 62px;
    }

    .pl-single-article-footer {
        display: block;
    }

    .pl-single-inline-share {
        margin-top: 18px;
    }

    .pl-single-author {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pl-single-author-media {
        display: flex;
        justify-content: center;
    }

    .pl-comment-form {
        padding: 22px 18px;
    }

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

    .pl-comment-replies {
        padding-left: 16px;
    }
}


.pl-comment-alert p {
    margin: 0;
}

.pl-comment-alert p + p {
    margin-top: 6px;
}


/* --------------------------------------------------------------------------
   Pressline category archive
-------------------------------------------------------------------------- */

.pl-category-page {
    padding: 52px 0 76px;
    background: var(--pl-bg);
}

.pl-category-header {
    margin-bottom: 34px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-category-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--pl-text-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pl-category-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.pl-category-breadcrumb a:hover {
    color: var(--pl-accent);
}

.pl-category-header-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 48px;
    align-items: end;
}

.pl-category-header h1 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.pl-category-header-copy p {
    margin: 0;
    color: var(--pl-text-soft);
    font-size: 14px;
    line-height: 1.72;
}

.pl-category-header-copy strong {
    display: inline-block;
    margin-top: 15px;
    color: var(--pl-accent);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Category layout
-------------------------------------------------------------------------- */

.pl-category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
    align-items: start;
}

.pl-category-main,
.pl-category-sidebar {
    min-width: 0;
}

/* --------------------------------------------------------------------------
   Category lead story
-------------------------------------------------------------------------- */

.pl-category-lead {
    padding-bottom: 38px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-category-lead-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-category-lead-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 340ms ease;
}

.pl-category-lead:hover .pl-category-lead-image img {
    transform: scale(1.03);
}

.pl-category-lead-image > span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    min-height: 29px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    background: var(--pl-accent);
    color: #ffffff;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pl-category-lead-content {
    padding-top: 23px;
}

.pl-category-lead h2 {
    max-width: 800px;
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(38px, 5vw, 60px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.pl-category-lead h2 a {
    color: inherit;
    text-decoration: none;
}

.pl-category-lead h2 a:hover {
    color: var(--pl-accent);
}

.pl-category-lead-content > p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--pl-text-soft);
    font-size: 15px;
    line-height: 1.72;
}

/* --------------------------------------------------------------------------
   Category story grid
-------------------------------------------------------------------------- */

.pl-category-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    margin-top: 34px;
}

.pl-category-story-card {
    min-width: 0;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-category-story-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--pl-surface-soft);
}

.pl-category-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.pl-category-story-card:hover .pl-category-story-image img {
    transform: scale(1.035);
}

.pl-category-story-content {
    padding-top: 17px;
}

.pl-category-story-card h2 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 28px;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.pl-category-story-card h2 a {
    color: inherit;
    text-decoration: none;
}

.pl-category-story-card h2 a:hover {
    color: var(--pl-accent);
}

.pl-category-story-content > p {
    margin: 13px 0 0;
    color: var(--pl-text-soft);
    font-size: 13px;
    line-height: 1.68;
}

/* --------------------------------------------------------------------------
   Category empty state
-------------------------------------------------------------------------- */

.pl-category-empty {
    padding: 72px 30px;
    text-align: center;
    border: 1px dashed var(--pl-line-dark);
}

.pl-category-empty > span {
    color: var(--pl-accent);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-category-empty h2 {
    margin: 12px 0 0;
    font-family: var(--pl-font-serif);
    font-size: 40px;
    line-height: 1;
}

.pl-category-empty p {
    margin: 14px 0 0;
    color: var(--pl-text-soft);
}

/* --------------------------------------------------------------------------
   Other category directory
-------------------------------------------------------------------------- */

.pl-category-directory {
    margin-top: 46px;
    padding: 32px;
    background: var(--pl-surface-soft);
    border-top: 3px solid var(--pl-text);
}

.pl-category-directory > header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 23px;
}

.pl-category-directory h2 {
    margin: 0;
    font-family: var(--pl-font-serif);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.pl-category-directory > header > p {
    max-width: 330px;
    margin: 0;
    color: var(--pl-text-soft);
    font-size: 12px;
    line-height: 1.6;
    text-align: right;
}

.pl-category-directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--pl-line);
    border-left: 1px solid var(--pl-line);
}

.pl-category-directory-grid > a {
    min-height: 100px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-right: 1px solid var(--pl-line);
    border-bottom: 1px solid var(--pl-line);
    background: var(--pl-surface);
    color: var(--pl-text);
    text-decoration: none;
}

.pl-category-directory-grid > a:hover {
    background: var(--pl-black);
    color: var(--pl-white);
}

.pl-category-directory-grid > a > span {
    color: var(--pl-accent);
    font-family: var(--pl-font-serif);
    font-size: 19px;
    font-weight: 700;
}

.pl-category-directory-grid h3 {
    margin: 0;
    color: inherit;
    font-family: var(--pl-font-serif);
    font-size: 20px;
    line-height: 1.04;
}

.pl-category-directory-grid p {
    margin: 6px 0 0;
    color: var(--pl-text-muted);
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
}

.pl-category-directory-grid > a:hover p {
    color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   Category responsive
-------------------------------------------------------------------------- */

@media (max-width: 1050px) {
    .pl-category-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 34px;
    }
}

@media (max-width: 900px) {
    .pl-category-header-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .pl-category-sidebar {
        margin-top: 28px;
    }
}

@media (max-width: 700px) {
    .pl-category-page {
        padding-top: 38px;
    }

    .pl-category-header h1 {
        font-size: 58px;
    }

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

    .pl-category-directory > header {
        display: block;
    }

    .pl-category-directory > header > p {
        max-width: 100%;
        margin-top: 11px;
        text-align: left;
    }
}

@media (max-width: 520px) {
    .pl-category-header h1 {
        font-size: 48px;
    }

    .pl-category-lead h2 {
        font-size: 38px;
    }

    .pl-category-story-card {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 14px;
    }

    .pl-category-story-image {
        aspect-ratio: 1 / 1;
    }

    .pl-category-story-content {
        padding-top: 0;
    }

    .pl-category-story-card h2 {
        font-size: 20px;
    }

    .pl-category-story-content > p {
        display: none;
    }

    .pl-category-story-card .pl-story-meta span:last-child {
        display: none;
    }

    .pl-category-directory {
        padding: 24px 20px;
    }

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


/* --------------------------------------------------------------------------
   Pressline search page
-------------------------------------------------------------------------- */

.pl-search-page {
    padding: 52px 0 78px;
    background: var(--pl-bg);
}

.pl-search-header {
    margin-bottom: 38px;
    padding-bottom: 34px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-search-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 23px;
    color: var(--pl-text-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pl-search-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.pl-search-breadcrumb a:hover {
    color: var(--pl-accent);
}

.pl-search-header-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 46px;
    align-items: end;
}

.pl-search-header h1 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(50px, 7vw, 86px);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.pl-search-header-grid > p {
    margin: 0;
    color: var(--pl-text-soft);
    font-size: 14px;
    line-height: 1.72;
}

/* --------------------------------------------------------------------------
   Search form
-------------------------------------------------------------------------- */

.pl-search-form {
    display: flex;
    min-height: 62px;
    margin-top: 30px;
    border: 1px solid var(--pl-line-dark);
    background: var(--pl-surface);
}

.pl-search-form input {
    flex: 1;
    min-width: 0;
    padding: 0 22px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--pl-text);
    font-size: 16px;
}

.pl-search-form input::placeholder {
    color: var(--pl-text-muted);
}

.pl-search-form button {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 0 26px;
    border: 0;
    background: var(--pl-black);
    color: var(--pl-white);
    cursor: pointer;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pl-search-form button:hover {
    background: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Search page columns
-------------------------------------------------------------------------- */

.pl-search-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
    align-items: start;
}

.pl-search-main,
.pl-search-sidebar {
    min-width: 0;
}

/* --------------------------------------------------------------------------
   Search summary
-------------------------------------------------------------------------- */

.pl-search-summary {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 10px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-search-summary h2 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 34px;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.pl-search-summary > strong {
    color: var(--pl-accent);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Shared search result output
-------------------------------------------------------------------------- */

.pl-shared-search-results {
    min-width: 0;
}

/*
 * The shared search renderer may use slightly different class names
 * depending on the current core version. These selectors cover the
 * existing shared archive and search markup without changing core files.
 */

.pl-shared-search-results .post-card,
.pl-shared-search-results .search-post-item,
.pl-shared-search-results .archive-post-item,
.pl-shared-search-results .post-item,
.pl-shared-search-results .post-list-item,
.pl-shared-search-results .post-wrap {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--pl-line);
}

.pl-shared-search-results > *:first-child {
    padding-top: 0;
}

.pl-shared-search-results img {
    width: 100%;
    max-width: 230px;
    height: 170px;
    object-fit: cover;
}

.pl-shared-search-results h2,
.pl-shared-search-results h3,
.pl-shared-search-results .title {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 30px;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.pl-shared-search-results h2 a,
.pl-shared-search-results h3 a,
.pl-shared-search-results .title a {
    color: inherit;
    text-decoration: none;
}

.pl-shared-search-results h2 a:hover,
.pl-shared-search-results h3 a:hover,
.pl-shared-search-results .title a:hover {
    color: var(--pl-accent);
}

.pl-shared-search-results p {
    margin: 13px 0 0;
    color: var(--pl-text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.pl-shared-search-results .category,
.pl-shared-search-results .post-category,
.pl-shared-search-results .category-name {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--pl-accent);
    text-decoration: none;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pl-shared-search-results .meta,
.pl-shared-search-results .post-meta,
.pl-shared-search-results .blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 12px;
    color: var(--pl-text-muted);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Prevent legacy theme icons from becoming oversized */

.pl-shared-search-results svg {
    width: 16px;
    height: 16px;
}

.pl-shared-search-results .social-share,
.pl-shared-search-results .post-share,
.pl-shared-search-results .share-links,
.pl-shared-search-results .social-icons {
    display: none;
}

/* --------------------------------------------------------------------------
   Shared empty-search output
-------------------------------------------------------------------------- */

.pl-shared-search-results .no-results,
.pl-shared-search-results .search-empty,
.pl-shared-search-results .empty-state,
.pl-shared-search-results > p:only-child {
    padding: 58px 34px;
    background: var(--pl-surface-soft);
    border-top: 3px solid var(--pl-text);
    color: var(--pl-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Search state message
-------------------------------------------------------------------------- */

.pl-search-message {
    padding: 64px 42px;
    background: var(--pl-surface-soft);
    border-top: 3px solid var(--pl-text);
}

.pl-search-message > span {
    color: var(--pl-accent);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-search-message h2 {
    max-width: 700px;
    margin: 12px 0 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.pl-search-message p {
    max-width: 680px;
    margin: 17px 0 0;
    color: var(--pl-text-soft);
    font-size: 14px;
    line-height: 1.72;
}

.pl-search-message.is-error {
    border-top-color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Shared pagination output
-------------------------------------------------------------------------- */

.pl-shared-search-pagination {
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid var(--pl-line);
}

.pl-shared-search-pagination .pagination,
.pl-shared-search-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
}

.pl-shared-search-pagination li {
    list-style: none;
}

.pl-shared-search-pagination a,
.pl-shared-search-pagination span {
    min-width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0 10px;
    border: 1px solid var(--pl-line);
    background: var(--pl-surface);
    color: var(--pl-text);
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

.pl-shared-search-pagination a:hover {
    border-color: var(--pl-text);
}

.pl-shared-search-pagination .active a,
.pl-shared-search-pagination .active span,
.pl-shared-search-pagination .current,
.pl-shared-search-pagination [aria-current="page"] {
    border-color: var(--pl-black);
    background: var(--pl-black);
    color: var(--pl-white);
}

/* --------------------------------------------------------------------------
   Search responsive
-------------------------------------------------------------------------- */

@media (max-width: 1050px) {
    .pl-search-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 34px;
    }

    .pl-shared-search-results .post-card,
    .pl-shared-search-results .search-post-item,
    .pl-shared-search-results .archive-post-item,
    .pl-shared-search-results .post-item,
    .pl-shared-search-results .post-list-item,
    .pl-shared-search-results .post-wrap {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 20px;
    }

    .pl-shared-search-results img {
        max-width: 200px;
        height: 150px;
    }
}

@media (max-width: 900px) {
    .pl-search-header-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .pl-search-sidebar {
        margin-top: 34px;
    }
}

@media (max-width: 700px) {
    .pl-search-page {
        padding-top: 38px;
    }

    .pl-search-header h1 {
        font-size: 54px;
    }

    .pl-search-summary {
        display: block;
    }

    .pl-search-summary > strong {
        display: block;
        margin-top: 12px;
    }

    .pl-shared-search-results .post-card,
    .pl-shared-search-results .search-post-item,
    .pl-shared-search-results .archive-post-item,
    .pl-shared-search-results .post-item,
    .pl-shared-search-results .post-list-item,
    .pl-shared-search-results .post-wrap {
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 16px;
    }

    .pl-shared-search-results img {
        max-width: 130px;
        height: 120px;
    }

    .pl-shared-search-results h2,
    .pl-shared-search-results h3,
    .pl-shared-search-results .title {
        font-size: 22px;
    }

    .pl-shared-search-results p {
        display: none;
    }
}

@media (max-width: 520px) {
    .pl-search-form {
        display: grid;
        min-height: 0;
        gap: 10px;
        border: 0;
        background: transparent;
    }

    .pl-search-form input {
        min-height: 54px;
        border: 1px solid var(--pl-line-dark);
        background: var(--pl-surface);
    }

    .pl-search-form button {
        min-height: 52px;
    }

    .pl-shared-search-results .post-card,
    .pl-shared-search-results .search-post-item,
    .pl-shared-search-results .archive-post-item,
    .pl-shared-search-results .post-item,
    .pl-shared-search-results .post-list-item,
    .pl-shared-search-results .post-wrap {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 13px;
        padding: 20px 0;
    }

    .pl-shared-search-results img {
        max-width: 104px;
        height: 104px;
    }

    .pl-shared-search-results h2,
    .pl-shared-search-results h3,
    .pl-shared-search-results .title {
        font-size: 19px;
    }

    .pl-search-message {
        padding: 42px 24px;
    }

    .pl-search-message h2 {
        font-size: 34px;
    }
}


/* --------------------------------------------------------------------------
   Remove duplicate shared search controls inside Pressline
-------------------------------------------------------------------------- */

.pl-shared-search-results > form,
.pl-shared-search-results .search-form,
.pl-shared-search-results .search-box,
.pl-shared-search-results .search-header,
.pl-shared-search-results .search-title,
.pl-shared-search-results .search-count,
.pl-shared-search-results > h1,
.pl-shared-search-results > h2:first-child,
.pl-shared-search-results > h3:first-child {
    display: none !important;
}

.pl-shared-search-results {
    padding-top: 0;
}

.pl-shared-search-results > *:first-child {
    margin-top: 0;
}

/* --------------------------------------------------------------------------
   Fix shared search pagination alignment
-------------------------------------------------------------------------- */

.pl-shared-search-pagination {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--pl-line);
}

.pl-shared-search-pagination nav,
.pl-shared-search-pagination .pagination-wrap,
.pl-shared-search-pagination .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-shared-search-pagination ul {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 !important;
    padding: 0 !important;
}

.pl-shared-search-pagination li {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.pl-shared-search-pagination li a,
.pl-shared-search-pagination li span,
.pl-shared-search-pagination > a,
.pl-shared-search-pagination > span {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: inline-grid !important;
    place-items: center;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--pl-line);
    background: var(--pl-surface);
    color: var(--pl-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.pl-shared-search-pagination li.active a,
.pl-shared-search-pagination li.active span,
.pl-shared-search-pagination li.current a,
.pl-shared-search-pagination li.current span,
.pl-shared-search-pagination [aria-current="page"] {
    border-color: var(--pl-black);
    background: var(--pl-black);
    color: var(--pl-white);
}

.pl-shared-search-pagination li a:hover {
    border-color: var(--pl-accent);
    color: var(--pl-accent);
}


/* --------------------------------------------------------------------------
   Pressline live-search suggestions
-------------------------------------------------------------------------- */

.pl-search-form {
    position: relative;
}

.pl-search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 140px;
    z-index: 700;
    max-height: 360px;
    overflow-y: auto;
    background: var(--pl-surface);
    border: 1px solid var(--pl-line-dark);
    box-shadow: var(--pl-shadow-md);
}

.pl-search-suggestions[hidden] {
    display: none !important;
}

.pl-search-suggestion {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 17px;
    border-bottom: 1px solid var(--pl-line);
    color: var(--pl-text);
    text-decoration: none;
    font-family: var(--pl-font-serif);
    font-size: 17px;
    line-height: 1.2;
}

.pl-search-suggestion:last-child {
    border-bottom: 0;
}

.pl-search-suggestion:hover,
.pl-search-suggestion:focus {
    background: var(--pl-surface-soft);
    color: var(--pl-accent);
}

.pl-search-suggestion strong {
    flex: 0 0 auto;
    color: var(--pl-accent);
    font-family: var(--pl-font-sans);
    font-size: 16px;
}

@media (max-width: 520px) {
    .pl-search-suggestions {
        top: 54px;
        right: 0;
    }

    .pl-search-suggestion {
        font-size: 16px;
    }
}

/* --------------------------------------------------------------------------
   Final shared pagination override
-------------------------------------------------------------------------- */

.pl-shared-search-pagination,
#search-pagination {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--pl-line);
}

.pl-shared-search-pagination .pagination,
.pl-shared-search-pagination ul,
#search-pagination .pagination,
#search-pagination ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
}

.pl-shared-search-pagination li,
#search-pagination li {
    display: inline-block !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.pl-shared-search-pagination li a,
.pl-shared-search-pagination li span,
#search-pagination li a,
#search-pagination li span {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    display: inline-grid !important;
    place-items: center;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--pl-line);
    background: var(--pl-surface);
    color: var(--pl-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.pl-shared-search-pagination li.active a,
.pl-shared-search-pagination li.active span,
.pl-shared-search-pagination li.current a,
.pl-shared-search-pagination li.current span,
.pl-shared-search-pagination [aria-current="page"],
#search-pagination li.active a,
#search-pagination li.active span,
#search-pagination li.current a,
#search-pagination li.current span,
#search-pagination [aria-current="page"] {
    border-color: var(--pl-black);
    background: var(--pl-black);
    color: var(--pl-white);
}

.pl-shared-search-pagination li a:hover,
#search-pagination li a:hover {
    border-color: var(--pl-accent);
    color: var(--pl-accent);
}


/* --------------------------------------------------------------------------
   Pressline custom public page
-------------------------------------------------------------------------- */

.pl-custom-page {
    padding: 52px 0 78px;
    background: var(--pl-bg);
}

.pl-custom-page-header {
    margin-bottom: 36px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--pl-text);
}

.pl-custom-page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--pl-text-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pl-custom-page-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.pl-custom-page-breadcrumb a:hover {
    color: var(--pl-accent);
}

.pl-custom-page-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 48px;
    align-items: end;
}

.pl-custom-page-header h1 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.pl-custom-page-intro > p {
    margin: 0;
    color: var(--pl-text-soft);
    font-size: 15px;
    line-height: 1.72;
}

.pl-custom-page-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 16px;
    color: var(--pl-text-muted);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-custom-page-meta span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-left: 16px;
    border-radius: 999px;
    vertical-align: middle;
    background: currentColor;
}

/* --------------------------------------------------------------------------
   Custom page hero
-------------------------------------------------------------------------- */

.pl-custom-page-hero {
    margin: 0 0 42px;
}

.pl-custom-page-hero img {
    width: 100%;
    max-height: 680px;
    object-fit: cover;
}

.pl-custom-page-hero figcaption {
    margin-top: 9px;
    color: var(--pl-text-muted);
    font-size: 11px;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Custom page layout
-------------------------------------------------------------------------- */

.pl-custom-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
    align-items: start;
}

.pl-custom-page-main,
.pl-custom-page-sidebar {
    min-width: 0;
}

/* --------------------------------------------------------------------------
   Custom page content
-------------------------------------------------------------------------- */

.pl-custom-page-content {
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 19px;
    line-height: 1.82;
}

.pl-custom-page-content > *:first-child {
    margin-top: 0;
}

.pl-custom-page-content p,
.pl-custom-page-content ul,
.pl-custom-page-content ol,
.pl-custom-page-content blockquote,
.pl-custom-page-content figure,
.pl-custom-page-content table {
    margin: 0 0 27px;
}

.pl-custom-page-content h2,
.pl-custom-page-content h3,
.pl-custom-page-content h4 {
    color: var(--pl-text);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.pl-custom-page-content h2 {
    margin: 50px 0 20px;
    font-size: 42px;
}

.pl-custom-page-content h3 {
    margin: 38px 0 17px;
    font-size: 32px;
}

.pl-custom-page-content h4 {
    margin: 30px 0 15px;
    font-size: 25px;
}

.pl-custom-page-content ul,
.pl-custom-page-content ol {
    padding-left: 28px;
}

.pl-custom-page-content li {
    margin-bottom: 10px;
    list-style: inherit;
}

.pl-custom-page-content a {
    color: var(--pl-accent);
    text-underline-offset: 3px;
}

.pl-custom-page-content blockquote {
    padding: 10px 0 10px 28px;
    border-left: 4px solid var(--pl-accent);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.32;
}

.pl-custom-page-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-inline: auto;
}

.pl-custom-page-content figure img {
    width: 100%;
}

.pl-custom-page-content figcaption {
    margin-top: 8px;
    color: var(--pl-text-muted);
    font-family: var(--pl-font-sans);
    font-size: 11px;
}

.pl-custom-page-content table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--pl-font-sans);
    font-size: 14px;
}

.pl-custom-page-content th,
.pl-custom-page-content td {
    padding: 13px 14px;
    border: 1px solid var(--pl-line);
    text-align: left;
}

.pl-custom-page-content th {
    background: var(--pl-surface-soft);
}

.pl-custom-page-end-mark {
    margin: 38px 0;
    color: var(--pl-accent);
    text-align: center;
    font-size: 12px;
}

/* --------------------------------------------------------------------------
   Custom page footer
-------------------------------------------------------------------------- */

.pl-custom-page-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--pl-line);
    border-bottom: 1px solid var(--pl-line);
}

.pl-custom-page-footer > div > span {
    display: block;
    color: var(--pl-text-muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pl-custom-page-footer > div > strong {
    display: block;
    margin-top: 5px;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 20px;
}

.pl-custom-page-footer > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--pl-text);
    text-decoration: none;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-custom-page-footer > a:hover {
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Custom page directory
-------------------------------------------------------------------------- */

.pl-custom-page-directory {
    margin-top: 46px;
    padding: 32px;
    background: var(--pl-surface-soft);
    border-top: 3px solid var(--pl-text);
}

.pl-custom-page-directory > header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 23px;
}

.pl-custom-page-directory h2 {
    margin: 0;
    font-family: var(--pl-font-serif);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.pl-custom-page-directory > header > p {
    max-width: 330px;
    margin: 0;
    color: var(--pl-text-soft);
    font-size: 12px;
    line-height: 1.6;
    text-align: right;
}

.pl-custom-page-directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--pl-line);
    border-left: 1px solid var(--pl-line);
}

.pl-custom-page-directory-grid > a {
    min-height: 100px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-right: 1px solid var(--pl-line);
    border-bottom: 1px solid var(--pl-line);
    background: var(--pl-surface);
    color: var(--pl-text);
    text-decoration: none;
}

.pl-custom-page-directory-grid > a:hover {
    background: var(--pl-black);
    color: var(--pl-white);
}

.pl-custom-page-directory-grid > a > span {
    color: var(--pl-accent);
    font-family: var(--pl-font-serif);
    font-size: 19px;
    font-weight: 700;
}

.pl-custom-page-directory-grid h3 {
    margin: 0;
    color: inherit;
    font-family: var(--pl-font-serif);
    font-size: 20px;
    line-height: 1.04;
}

.pl-custom-page-directory-grid p {
    margin: 6px 0 0;
    color: var(--pl-text-muted);
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
}

.pl-custom-page-directory-grid > a:hover p {
    color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   Custom page responsive
-------------------------------------------------------------------------- */

@media (max-width: 1050px) {
    .pl-custom-page-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 34px;
    }
}

@media (max-width: 900px) {
    .pl-custom-page-heading-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pl-custom-page-layout {
        grid-template-columns: 1fr;
    }

    .pl-custom-page-sidebar {
        margin-top: 30px;
    }
}

@media (max-width: 700px) {
    .pl-custom-page {
        padding-top: 38px;
    }

    .pl-custom-page-header h1 {
        font-size: 56px;
    }

    .pl-custom-page-directory > header {
        display: block;
    }

    .pl-custom-page-directory > header > p {
        max-width: 100%;
        margin-top: 11px;
        text-align: left;
    }
}

@media (max-width: 520px) {
    .pl-custom-page-header h1 {
        font-size: 46px;
    }

    .pl-custom-page-content {
        font-size: 17px;
        line-height: 1.78;
    }

    .pl-custom-page-content h2 {
        font-size: 35px;
    }

    .pl-custom-page-content h3 {
        font-size: 28px;
    }

    .pl-custom-page-footer {
        display: block;
    }

    .pl-custom-page-footer > a {
        margin-top: 18px;
    }

    .pl-custom-page-directory {
        padding: 24px 20px;
    }

    .pl-custom-page-directory-grid {
        grid-template-columns: 1fr;
    }
}


/* --------------------------------------------------------------------------
   Pressline subscribe page
-------------------------------------------------------------------------- */

.pl-subscribe-page {
    padding: 48px 0 78px;
    background: var(--pl-bg);
}

.pl-subscribe-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--pl-text-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pl-subscribe-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.pl-subscribe-breadcrumb a:hover {
    color: var(--pl-accent);
}

.pl-subscribe-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 650px;
    border-top: 3px solid var(--pl-text);
    background: var(--pl-surface);
    box-shadow: var(--pl-shadow-sm);
}

.pl-subscribe-layout:not(:has(.pl-subscribe-media)) {
    grid-template-columns: 1fr;
}

.pl-subscribe-media {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: var(--pl-black);
}

.pl-subscribe-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-subscribe-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72),
            transparent 55%
        );
}

.pl-subscribe-media-overlay {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
    color: #ffffff;
}

.pl-subscribe-media-overlay span {
    display: block;
    margin-bottom: 10px;
    color: var(--pl-accent);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-subscribe-media-overlay strong {
    display: block;
    max-width: 460px;
    font-family: var(--pl-font-serif);
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.pl-subscribe-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 62px;
}

.pl-subscribe-content h1 {
    max-width: 720px;
    margin: 12px 0 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.pl-subscribe-intro {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--pl-text-soft);
    font-size: 16px;
    line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Subscription benefits
-------------------------------------------------------------------------- */

.pl-subscribe-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
    border-top: 1px solid var(--pl-line);
    border-left: 1px solid var(--pl-line);
}

.pl-subscribe-benefits > div {
    min-height: 118px;
    padding: 20px;
    border-right: 1px solid var(--pl-line);
    border-bottom: 1px solid var(--pl-line);
}

.pl-subscribe-benefits strong,
.pl-subscribe-benefits span {
    display: block;
}

.pl-subscribe-benefits strong {
    color: var(--pl-accent);
    font-family: var(--pl-font-serif);
    font-size: 20px;
}

.pl-subscribe-benefits span {
    margin-top: 10px;
    color: var(--pl-text);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Subscribe alerts
-------------------------------------------------------------------------- */

.pl-subscribe-alert {
    margin-top: 24px;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.55;
}

.pl-subscribe-alert.is-success {
    background: #eaf8ef;
    color: #126333;
}

.pl-subscribe-alert.is-error {
    background: #fff0ee;
    color: #9f211b;
}

.pl-subscribe-alert.is-warning {
    background: #fff8de;
    color: #775900;
}

/* --------------------------------------------------------------------------
   Subscribe form
-------------------------------------------------------------------------- */

.pl-subscribe-page-form {
    margin-top: 28px;
}

.pl-subscribe-page-control {
    display: flex;
    min-height: 58px;
    border: 1px solid var(--pl-line-dark);
    background: var(--pl-surface);
}

.pl-subscribe-page-control input {
    flex: 1;
    min-width: 0;
    padding: 0 19px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--pl-text);
    font-size: 15px;
}

.pl-subscribe-page-control input::placeholder {
    color: var(--pl-text-muted);
}

.pl-subscribe-page-control button {
    flex: 0 0 auto;
    min-width: 150px;
    padding: 0 26px;
    border: 0;
    background: var(--pl-black);
    color: var(--pl-white);
    cursor: pointer;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pl-subscribe-page-control button:hover {
    background: var(--pl-accent);
}

.pl-subscribe-note {
    display: block;
    margin-top: 12px;
    color: var(--pl-text-muted);
    font-size: 10px;
}

/* --------------------------------------------------------------------------
   Trust row
-------------------------------------------------------------------------- */

.pl-subscribe-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--pl-line);
}

.pl-subscribe-trust strong,
.pl-subscribe-trust span {
    display: block;
}

.pl-subscribe-trust strong {
    color: var(--pl-text);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-subscribe-trust span {
    margin-top: 7px;
    color: var(--pl-text-soft);
    font-size: 11px;
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Subscribe responsive
-------------------------------------------------------------------------- */

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

    .pl-subscribe-media {
        min-height: 420px;
    }

    .pl-subscribe-content {
        padding: 48px 40px;
    }
}

@media (max-width: 620px) {
    .pl-subscribe-page {
        padding-top: 36px;
    }

    .pl-subscribe-media {
        min-height: 300px;
    }

    .pl-subscribe-content {
        padding: 38px 24px;
    }

    .pl-subscribe-content h1 {
        font-size: 46px;
    }

    .pl-subscribe-benefits,
    .pl-subscribe-trust {
        grid-template-columns: 1fr;
    }

    .pl-subscribe-page-control {
        display: grid;
        min-height: 0;
        gap: 10px;
        border: 0;
        background: transparent;
    }

    .pl-subscribe-page-control input {
        min-height: 54px;
        border: 1px solid var(--pl-line-dark);
    }

    .pl-subscribe-page-control button {
        min-height: 52px;
    }
}

/* --------------------------------------------------------------------------
   Pressline 404 page
-------------------------------------------------------------------------- */

.pl-error-page {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 72px 0 84px;
    background: var(--pl-bg);
}

.pl-error-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 72px;
    align-items: center;
    padding: 58px 0;
    border-top: 3px solid var(--pl-text);
    border-bottom: 1px solid var(--pl-line);
}

/* --------------------------------------------------------------------------
   Large error number
-------------------------------------------------------------------------- */

.pl-error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(150px, 19vw, 280px);
    font-weight: 700;
    line-height: 0.72;
    letter-spacing: -0.13em;
    white-space: nowrap;
}

.pl-error-number span:nth-child(2) {
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Error content
-------------------------------------------------------------------------- */

.pl-error-content {
    max-width: 670px;
}

.pl-error-content h1 {
    margin: 13px 0 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: clamp(46px, 6vw, 76px);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.pl-error-content > p {
    max-width: 610px;
    margin: 23px 0 0;
    color: var(--pl-text-soft);
    font-size: 16px;
    line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Error actions
-------------------------------------------------------------------------- */

.pl-error-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.pl-error-primary,
.pl-error-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pl-error-primary {
    background: var(--pl-black);
    color: var(--pl-white);
}

.pl-error-primary:hover {
    background: var(--pl-accent);
    color: #ffffff;
}

.pl-error-secondary {
    border: 1px solid var(--pl-line-dark);
    color: var(--pl-text);
}

.pl-error-secondary:hover {
    border-color: var(--pl-accent);
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   Error search
-------------------------------------------------------------------------- */

.pl-error-search {
    display: flex;
    min-height: 56px;
    margin-top: 34px;
    border: 1px solid var(--pl-line-dark);
    background: var(--pl-surface);
}

.pl-error-search input {
    flex: 1;
    min-width: 0;
    padding: 0 18px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--pl-text);
    font-size: 14px;
}

.pl-error-search input::placeholder {
    color: var(--pl-text-muted);
}

.pl-error-search button {
    flex: 0 0 auto;
    min-width: 120px;
    border: 0;
    background: var(--pl-accent);
    color: #ffffff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pl-error-search button:hover {
    background: var(--pl-accent-dark);
}

/* --------------------------------------------------------------------------
   Suggested links
-------------------------------------------------------------------------- */

.pl-error-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 17px;
    margin-top: 22px;
    color: var(--pl-text-muted);
    font-size: 11px;
}

.pl-error-links > span {
    font-weight: 800;
}

.pl-error-links a {
    color: var(--pl-text);
    text-decoration: none;
    font-weight: 850;
}

.pl-error-links a:hover {
    color: var(--pl-accent);
}

/* --------------------------------------------------------------------------
   404 responsive
-------------------------------------------------------------------------- */

@media (max-width: 900px) {
    .pl-error-page {
        min-height: auto;
        padding-top: 54px;
    }

    .pl-error-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .pl-error-number {
        justify-content: flex-start;
        font-size: clamp(145px, 32vw, 240px);
    }
}

@media (max-width: 560px) {
    .pl-error-page {
        padding: 38px 0 58px;
    }

    .pl-error-layout {
        gap: 34px;
        padding: 40px 0;
    }

    .pl-error-number {
        font-size: clamp(110px, 34vw, 170px);
    }

    .pl-error-content h1 {
        font-size: 46px;
    }

    .pl-error-content > p {
        font-size: 15px;
    }

    .pl-error-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pl-error-primary,
    .pl-error-secondary {
        width: 100%;
    }

    .pl-error-search {
        display: grid;
        min-height: 0;
        gap: 10px;
        border: 0;
        background: transparent;
    }

    .pl-error-search input {
        min-height: 52px;
        border: 1px solid var(--pl-line-dark);
        background: var(--pl-surface);
    }

    .pl-error-search button {
        min-height: 50px;
    }
}


/* --------------------------------------------------------------------------
   Final Pressline 404 alignment fixes
-------------------------------------------------------------------------- */

.pl-error-page {
    min-height: auto;
    display: block;
    padding: 54px 0 70px;
}

.pl-error-layout {
    grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
    gap: 64px;
    align-items: center;
    padding: 54px 0;
}

.pl-error-number {
    align-self: center;
    line-height: 0.72;
    transform: translateY(8px);
}

.pl-error-content {
    align-self: center;
}

/* Ensure primary button text is visible */
.pl-error-primary,
.pl-error-primary:link,
.pl-error-primary:visited {
    background: var(--pl-black);
    color: #ffffff !important;
}

.pl-error-primary:hover,
.pl-error-primary:focus {
    background: var(--pl-accent);
    color: #ffffff !important;
}

.pl-error-secondary,
.pl-error-secondary:link,
.pl-error-secondary:visited {
    color: var(--pl-text) !important;
}

.pl-error-secondary:hover,
.pl-error-secondary:focus {
    color: var(--pl-accent) !important;
}

/* Prevent global link rules from overriding 404 controls */
.pl-error-actions a {
    text-decoration: none !important;
}

.pl-error-search input {
    box-sizing: border-box;
}

.pl-error-links a {
    color: var(--pl-text) !important;
}

.pl-error-links a:hover {
    color: var(--pl-accent) !important;
}

@media (max-width: 900px) {
    .pl-error-layout {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 42px 0;
    }

    .pl-error-number {
        transform: none;
    }
}

@media (max-width: 560px) {
    .pl-error-page {
        padding: 34px 0 52px;
    }

    .pl-error-layout {
        padding: 34px 0;
    }

    .pl-error-content h1 {
        font-size: 42px;
    }
}


/* --------------------------------------------------------------------------
   Homepage sidebar archive extension
-------------------------------------------------------------------------- */

.pl-sidebar-archive {
    padding: 26px;
    background: var(--pl-surface);
    border: 1px solid var(--pl-line);
}

.pl-sidebar-archive-list {
    display: grid;
}

.pl-sidebar-archive-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
    padding: 17px 0;
    border-bottom: 1px solid var(--pl-line);
}

.pl-sidebar-archive-item:first-child {
    padding-top: 0;
}

.pl-sidebar-archive-item:last-child {
    border-bottom: 0;
}

.pl-sidebar-archive-number {
    color: var(--pl-accent);
    font-family: var(--pl-font-serif);
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
}

.pl-sidebar-archive-category {
    display: block;
    margin-bottom: 5px;
    color: var(--pl-text-muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pl-sidebar-archive-item h3 {
    margin: 0;
    color: var(--pl-text);
    font-family: var(--pl-font-serif);
    font-size: 18px;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.pl-sidebar-archive-item h3 a {
    color: inherit;
    text-decoration: none;
}

.pl-sidebar-archive-item h3 a:hover {
    color: var(--pl-accent);
}

.pl-sidebar-archive-item small {
    display: block;
    margin-top: 7px;
    color: var(--pl-text-muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pl-sidebar-archive-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 2px solid var(--pl-text);
    color: var(--pl-text);
    text-decoration: none;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pl-sidebar-archive-link:hover {
    color: var(--pl-accent);
}

