:root {
    --ptv-bg: #f4f6f8;
    --ptv-surface: #ffffff;
    --ptv-ink: #101828;
    --ptv-muted: #667085;
    --ptv-line: #d9dee7;
    --ptv-red: #df1628;
    --ptv-red-dark: #9f0d1a;
    --ptv-green: #00a76f;
    --ptv-blue: #155eef;
    --ptv-gold: #f6b51d;
    --ptv-shadow: 0 18px 45px rgba(16, 24, 40, 0.10);
}

body {
    background: var(--ptv-bg);
    color: var(--ptv-ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.navbar-menu {
    min-height: 58px;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid var(--ptv-line);
}

.container-menu {
    min-height: 58px;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
    margin-right: 18px;
    color: var(--ptv-ink);
    font-size: 1.25rem;
    font-weight: 900;
}

.navbar-brand img {
    width: auto;
    max-height: 48px;
    object-fit: contain;
}

.navbar-menu .navbar-nav {
    align-items: center;
    gap: 0;
    width: 100%;
}

.navbar-menu .nav-link {
    position: relative;
    padding: 18px 9px;
    border-radius: 0;
    color: #344054;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar-menu .nav-link:hover,
.navbar-menu .nav-link:focus {
    background: transparent;
    color: var(--ptv-red);
}

.navbar-menu .nav-link::before {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 13px;
    height: 2px;
    background: var(--ptv-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.18s ease;
}

.navbar-menu .nav-link:hover::before,
.navbar-menu .nav-link:focus::before {
    transform: scaleX(1);
}

.navbar-menu .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 0.12em;
    border-top-width: 0.32em;
    opacity: 0.7;
}

.navbar-menu .dropdown-menu {
    min-width: 220px;
    margin-top: 0;
    padding: 8px;
    border: 1px solid var(--ptv-line);
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.12);
}

.navbar-menu .dropdown-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 6px;
    color: #344054;
    font-size: 0.82rem;
    text-transform: none;
}

.navbar-menu .dropdown-menu .nav-link::before {
    display: none;
}

.navbar-menu .dropdown-menu .nav-link:hover,
.navbar-menu .dropdown-menu .nav-link:focus {
    background: #f4f6f8;
    color: var(--ptv-red);
}

.navbar-menu .dropdown-menu .dropdown-menu {
    top: -8px;
    left: 100%;
    margin-left: 8px;
}

@media (min-width: 821px) {
    .navbar-menu .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .ptv-highlight-stack,
    .ptv-news-grid {
        align-content: start;
        align-items: start;
        grid-auto-rows: max-content;
    }

    .ptv-highlight-stack .ptv-small-card {
        display: grid;
        grid-template-columns: 128px minmax(0, 1fr);
        grid-template-rows: none;
        align-self: start;
    }

    .ptv-highlight-stack .ptv-small-card__image {
        height: 118px;
        min-height: 118px;
        aspect-ratio: auto;
    }

    .ptv-news-grid .ptv-news-card {
        display: grid;
        grid-template-columns: 145px minmax(0, 1fr);
        align-self: start;
    }

    .ptv-news-grid .ptv-news-card__image {
        height: 118px;
        min-height: 118px;
        aspect-ratio: auto;
    }

    .ptv-news-grid .ptv-news-card p {
        display: none;
    }
}

.navbar-toggler {
    border: 1px solid var(--ptv-line);
    border-radius: 999px;
    padding: 8px 10px;
}

.ptv-site-header {
    position: relative;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--ptv-line);
}

.ptv-site-header .ptv-main-menu {
    min-height: 66px !important;
    border-bottom: 0 !important;
    background: #fff !important;
}

.ptv-site-header .container-menu {
    min-height: 66px !important;
}

.ptv-site-header .navbar-brand {
    margin-right: 26px !important;
    padding: 6px 0 !important;
}

.ptv-site-header .navbar-brand img {
    max-height: 56px !important;
    width: auto !important;
}

.ptv-site-header .navbar-collapse {
    overflow: visible !important;
}

.ptv-site-header .navbar-nav {
    align-items: center !important;
    gap: 0 !important;
}

.ptv-site-header .nav-item {
    position: relative;
}

.ptv-site-header .nav-link {
    min-height: 66px;
    display: inline-flex !important;
    align-items: center;
    padding: 0 11px !important;
    color: #15233d !important;
    font-size: 0.84rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-transform: uppercase;
}

.ptv-site-header .nav-link:hover,
.ptv-site-header .nav-link:focus {
    color: var(--ptv-red) !important;
}

.ptv-site-header .dropdown-menu {
    top: 100%;
    z-index: 2000;
    min-width: 220px;
    padding: 6px !important;
    border: 1px solid var(--ptv-line) !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.14) !important;
}

.ptv-site-header .dropdown-menu .nav-link {
    min-height: 34px;
    width: 100%;
    justify-content: space-between;
    padding: 8px 10px !important;
    border-radius: 6px;
    color: #344054 !important;
    font-size: 0.82rem !important;
    text-transform: none;
}

.ptv-site-header .dropdown-menu .nav-link:hover,
.ptv-site-header .dropdown-menu .nav-link:focus {
    background: #f4f6f8 !important;
    color: var(--ptv-red) !important;
}

.ptv-site-header .dropdown-menu .dropdown-menu {
    top: -6px;
    left: 100%;
    margin-left: 6px;
}

.full-advertising {
    background: #fff;
    border: 1px solid var(--ptv-line);
}

.full-advertising .carousel-item {
    background: #fff;
}

.full-advertising img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    background: #fff;
}

.ptv-ticker-wrap {
    background: #101828;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.ptv-ticker {
    display: flex;
    align-items: center;
    min-height: 38px;
    overflow: hidden;
}

.ptv-ticker strong {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    margin-right: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--ptv-red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ptv-ticker__viewport {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.ptv-ticker__track {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
    animation: ptvTicker 42s linear infinite;
}

.ptv-ticker__track:hover {
    animation-play-state: paused;
}

.ptv-ticker__track a {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 32px;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
}

.ptv-ticker__track a::after {
    content: "";
    position: absolute;
    right: -18px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--ptv-gold);
}

.ptv-ticker__track a:hover {
    color: var(--ptv-gold);
}

.player {
    margin-top: 14px !important;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(16, 24, 40, 0.96), rgba(159, 13, 26, 0.94)),
        #101828;
    color: #fff;
}

.player h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.15rem, 2vw, 1.9rem);
}

.player #artist_name,
.player #track_name,
.player #artist_type,
.player #artist_genres {
    color: #fff;
    font-weight: 700;
}

.full-advertising,
.post-advertising {
    overflow: hidden;
    border-radius: 8px;
}

.site-content {
    margin-top: 18px;
}

.footer {
    margin-top: 24px;
    background: #0b1220;
    color: #d0d5dd;
}

.container-footer footer {
    padding: 20px;
}

.container-footer a {
    color: #fff;
}

.ptv-home {
    display: grid;
    gap: 18px;
    padding-bottom: 30px;
}

.ptv-breaking {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 52px;
    padding: 0 16px;
    overflow: hidden;
    border: 1px solid var(--ptv-line);
    border-radius: 8px;
    background: #fff;
}

.ptv-breaking strong {
    flex: 0 0 auto;
    padding: 5px 10px;
    border-radius: 999px;
    background: #ffe8eb;
    color: var(--ptv-red);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ptv-breaking__links {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
}

.ptv-breaking__links a {
    flex: 0 0 auto;
    color: var(--ptv-ink);
    font-size: 0.92rem;
    font-weight: 800;
}

.ptv-breaking__links a:hover {
    color: var(--ptv-red);
}

.ptv-banner-strip {
    overflow: hidden;
    border-radius: 8px;
    background: #111827;
    box-shadow: var(--ptv-shadow);
}

.ptv-banner-strip .carousel-item {
    position: relative;
    min-height: clamp(260px, 26vw, 430px);
    background: #111827;
}

.ptv-banner-strip img {
    width: 100%;
    height: clamp(260px, 26vw, 430px);
    max-height: none;
    object-fit: cover;
    background: #fff;
}

.ptv-banner-strip__caption {
    position: absolute;
    left: 22px;
    bottom: 20px;
    display: grid;
    max-width: min(560px, calc(100% - 44px));
    gap: 4px;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(16, 24, 40, 0.82);
    color: #fff;
}

.ptv-banner-strip__caption strong {
    font-size: 1.2rem;
    line-height: 1.15;
}

.ptv-banner-strip__caption span {
    color: #e5e7eb;
}

.ptv-lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.74fr) minmax(230px, 0.62fr);
    align-items: start;
    gap: 14px;
}

.ptv-hero-card,
.ptv-small-card,
.ptv-news-card,
.ptv-rail-list,
.ptv-most-read,
.ptv-topic-card,
.ptv-ad-card {
    overflow: hidden;
    border: 1px solid var(--ptv-line);
    border-radius: 8px;
    background: #fff;
}

.ptv-hero-card {
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
}

.ptv-hero-card__image,
.ptv-news-card__image,
.ptv-small-card__image {
    display: block;
    overflow: hidden;
    background: #e5e7eb;
}

.ptv-hero-card__image {
    aspect-ratio: 16 / 8.4;
}

.ptv-news-card__image,
.ptv-small-card__image {
    aspect-ratio: 16 / 9;
}

.ptv-hero-card__image img,
.ptv-news-card__image img,
.ptv-small-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.ptv-hero-card:hover img,
.ptv-news-card:hover img,
.ptv-small-card:hover img {
    transform: scale(1.035);
}

.ptv-hero-card__body,
.ptv-news-card__body,
.ptv-empty-state {
    padding: 14px;
}

.ptv-kicker,
.ptv-section__heading span {
    display: inline-flex;
    width: fit-content;
    color: var(--ptv-red);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ptv-hero-card h1,
.ptv-section__heading h2,
.ptv-small-card h2,
.ptv-news-card h3,
.ptv-live-box h2,
.ptv-most-read h2,
.ptv-topic-card h3 {
    margin: 0;
    color: var(--ptv-ink);
    font-family: "Arial", Inter, system-ui, sans-serif;
    font-weight: 900;
    line-height: 1.08;
}

.ptv-hero-card h1 {
    margin-top: 10px;
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    line-height: 1.12;
}

.ptv-hero-card h1 a,
.ptv-small-card h2 a,
.ptv-news-card h3 a,
.ptv-most-read a,
.ptv-topic-card a {
    color: inherit;
}

.ptv-hero-card h1 a:hover,
.ptv-small-card h2 a:hover,
.ptv-news-card h3 a:hover,
.ptv-most-read a:hover,
.ptv-topic-card a:hover {
    color: var(--ptv-red);
}

.ptv-hero-card p,
.ptv-news-card p,
.ptv-live-box p {
    margin: 8px 0 0;
    color: #475467;
    font-size: 0.94rem;
}

.ptv-hero-card time,
.ptv-small-card time,
.ptv-news-card time {
    display: block;
    margin-top: 8px;
    color: var(--ptv-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.ptv-highlight-stack {
    display: grid;
    align-content: start;
    gap: 10px;
}

.ptv-small-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.ptv-small-card > div {
    padding: 10px 12px;
}

.ptv-small-card h2 {
    margin-top: 6px;
    font-size: 0.96rem;
    line-height: 1.18;
}

.ptv-rail-list {
    display: grid;
    align-self: start;
}

.ptv-rail-list > span {
    padding: 10px 12px 8px;
    border-bottom: 1px solid var(--ptv-line);
    color: var(--ptv-red);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ptv-rail-list a {
    display: grid;
    gap: 3px;
    padding: 9px 12px;
    border-bottom: 1px solid var(--ptv-line);
    color: var(--ptv-ink);
}

.ptv-rail-list a:last-child {
    border-bottom: 0;
}

.ptv-rail-list a:hover {
    color: var(--ptv-red);
}

.ptv-rail-list strong {
    font-size: 0.88rem;
    line-height: 1.16;
}

.ptv-rail-list small {
    color: var(--ptv-muted);
    font-size: 0.72rem;
    font-weight: 800;
}

.ptv-live-box {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    border-radius: 8px;
    background:
        radial-gradient(circle at top right, rgba(246, 181, 29, 0.22), transparent 32%),
        linear-gradient(180deg, #111827, #0b1220);
    color: #fff;
}

.ptv-live-box__status {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(0, 167, 111, 0.16);
    color: #7bf0c1;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ptv-live-box h2 {
    margin-top: 12px;
    color: #fff;
    font-size: 1.28rem;
}

.ptv-live-box__logo {
    width: 100%;
    max-height: 150px;
    margin-top: 14px;
    border-radius: 6px;
    object-fit: cover;
}

.ptv-live-box time {
    display: block;
    margin-top: 8px;
    color: #7bf0c1;
    font-size: 0.82rem;
    font-weight: 900;
}

.ptv-live-box p {
    color: #d0d5dd;
}

.ptv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--ptv-red);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ptv-button:hover {
    background: var(--ptv-red-dark);
    color: #fff;
}

.ptv-section {
    display: grid;
    gap: 14px;
}

.ptv-section__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 3px solid var(--ptv-ink);
    padding-bottom: 11px;
}

.ptv-section__heading h2 {
    font-size: clamp(1.22rem, 1.8vw, 1.55rem);
}

.ptv-section__heading > a,
.ptv-topic-card__heading a {
    color: var(--ptv-red);
    font-size: 0.9rem;
    font-weight: 900;
}

.ptv-section__heading--compact {
    align-items: center;
    margin-bottom: 2px;
    border-bottom: 0;
    padding-bottom: 0;
}

.ptv-section__heading--compact h2 {
    font-size: 1.08rem;
}

.ptv-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 18px;
}

.ptv-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    align-items: start;
    gap: 10px;
}

.ptv-news-card__body {
    padding: 10px 12px;
}

.ptv-news-card h3 {
    margin-top: 6px;
    font-size: 0.96rem;
    line-height: 1.18;
}

.ptv-sidebar-news {
    display: grid;
    align-content: start;
    gap: 18px;
}

.ptv-ad-card {
    padding: 12px;
    background: #eef2f6;
}

.ptv-ad-card > span {
    display: block;
    margin-bottom: 8px;
    color: var(--ptv-muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.ptv-ad-card img {
    width: 100%;
    border-radius: 6px;
}

.ptv-most-read {
    padding: 18px;
    border-top: 4px solid var(--ptv-red);
}

.ptv-most-read ol,
.ptv-topic-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ptv-most-read ol {
    counter-reset: read;
}

.ptv-most-read li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid var(--ptv-line);
    counter-increment: read;
}

.ptv-most-read li::before {
    content: counter(read, decimal-leading-zero);
    color: var(--ptv-blue);
    font-weight: 900;
}

.ptv-most-read small {
    display: block;
    margin-top: 5px;
    color: var(--ptv-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

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

.ptv-topic-card {
    padding: 18px;
    border-top: 4px solid var(--ptv-green);
}

.ptv-topic-card:nth-child(even) {
    border-top-color: var(--ptv-blue);
}

.ptv-topic-card__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.ptv-topic-card h3 {
    font-size: 1.08rem;
}

.ptv-topic-card li {
    border-top: 1px solid var(--ptv-line);
}

.ptv-topic-card li a {
    display: block;
    padding: 12px 0;
    font-weight: 800;
    line-height: 1.25;
}

.ptv-empty-state {
    min-height: 100%;
    background: #fff;
}

.ptv-page {
    display: grid;
    gap: 24px;
    padding-bottom: 34px;
}

.ptv-page-hero {
    overflow: hidden;
    border-radius: 8px;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid var(--ptv-line);
    border-top: 4px solid var(--ptv-red);
    background: #fff;
    color: var(--ptv-ink);
}

.ptv-page-hero span {
    color: var(--ptv-red);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ptv-page-hero h1,
.ptv-index-feature h2,
.ptv-list-card h3,
.ptv-post-header h1,
.ptv-related h2,
.ptv-program-card h2,
.ptv-podcast-card h2,
.ptv-person-card h2,
.ptv-contact-card h2 {
    margin: 0;
    color: inherit;
    font-weight: 900;
    line-height: 1.08;
}

.ptv-page-hero h1 {
    max-width: 760px;
    margin-top: 8px;
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    line-height: 1.12;
}

.ptv-page-hero p {
    max-width: 720px;
    margin: 8px 0 0;
    color: #667085;
    font-size: 0.98rem;
}

.ptv-index-layout,
.ptv-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
}

.ptv-index-main,
.ptv-post-main {
    display: grid;
    gap: 22px;
    align-content: start;
}

.ptv-index-feature,
.ptv-list-card,
.ptv-page-surface,
.ptv-program-card,
.ptv-podcast-card,
.ptv-person-card,
.ptv-contact-card,
.ptv-post-article,
.ptv-post-ad {
    overflow: hidden;
    border: 1px solid var(--ptv-line);
    border-radius: 8px;
    background: #fff;
}

.ptv-index-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    box-shadow: var(--ptv-shadow);
}

.ptv-index-feature__image,
.ptv-list-card__image,
.ptv-program-card__image,
.ptv-podcast-card__media,
.ptv-person-card__image {
    display: block;
    overflow: hidden;
    background: #e5e7eb;
}

.ptv-index-feature__image {
    min-height: 100%;
    aspect-ratio: 16 / 11;
}

.ptv-index-feature__image img,
.ptv-list-card__image img,
.ptv-program-card__image img,
.ptv-podcast-card__media img,
.ptv-person-card__image img,
.ptv-post-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ptv-index-feature__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.ptv-index-feature h2 {
    margin-top: 10px;
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    line-height: 1.14;
}

.ptv-index-feature p {
    margin: 12px 0 0;
    color: #475467;
}

.ptv-index-feature time,
.ptv-list-card time,
.ptv-podcast-card time {
    display: block;
    margin-top: 12px;
    color: var(--ptv-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

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

.ptv-list-card__image {
    aspect-ratio: 16 / 10;
}

.ptv-list-card__body {
    padding: 16px;
}

.ptv-list-card h3 {
    margin-top: 8px;
    font-size: 1.04rem;
    line-height: 1.22;
}

.ptv-list-card a,
.ptv-index-feature a,
.ptv-post-header a,
.ptv-related a,
.ptv-program-card a,
.ptv-podcast-card a,
.ptv-person-card a {
    color: inherit;
}

.ptv-list-card a:hover,
.ptv-index-feature a:hover,
.ptv-related a:hover {
    color: var(--ptv-red);
}

.ptv-index-sidebar .sidebar {
    display: grid;
    gap: 18px;
}

.ptv-index-sidebar .sidebar > * {
    overflow: hidden;
    border: 1px solid var(--ptv-line);
    border-radius: 8px;
    background: #fff;
}

.ptv-pagination {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.ptv-pagination .pagination {
    gap: 6px;
}

.ptv-pagination .page-link {
    border-radius: 999px;
    color: var(--ptv-ink);
    font-weight: 800;
}

.ptv-pagination .page-item.active .page-link {
    border-color: var(--ptv-red);
    background: var(--ptv-red);
}

.ptv-post-header {
    display: grid;
    gap: 12px;
    padding: clamp(20px, 3vw, 30px);
}

.ptv-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ptv-post-header h1 {
    max-width: 860px;
    color: var(--ptv-ink);
    font-size: clamp(1.65rem, 3vw, 2.75rem);
    line-height: 1.12;
}

.ptv-post-header p {
    max-width: 760px;
    margin: 0;
    color: #475467;
    font-size: 1rem;
}

.ptv-post-header time {
    color: var(--ptv-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.ptv-post-cover {
    margin: 0;
    aspect-ratio: 16 / 9;
    background: #e5e7eb;
}

.ptv-share {
    padding: 20px 24px 0;
}

.ptv-post-content {
    padding: clamp(20px, 3vw, 30px);
    color: #344054;
    font-size: 1.02rem;
    line-height: 1.76;
}

.ptv-post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.ptv-post-content iframe {
    max-width: 100%;
}

.ptv-post-ad {
    display: grid;
    gap: 8px;
    padding: 12px;
    background: #eef2f6;
}

.ptv-post-ad > span {
    color: var(--ptv-muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.ptv-post-ad img {
    width: 100%;
    border-radius: 6px;
}

.ptv-related {
    display: grid;
    gap: 16px;
}

.ptv-page-surface {
    padding: clamp(18px, 3vw, 28px);
}

.ptv-day-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.ptv-day-filter a {
    padding: 9px 13px;
    border: 1px solid var(--ptv-line);
    border-radius: 999px;
    background: #fff;
    color: var(--ptv-ink);
    font-size: 0.86rem;
    font-weight: 900;
}

.ptv-day-filter a.active,
.ptv-day-filter a:hover {
    border-color: var(--ptv-red);
    background: var(--ptv-red);
    color: #fff;
}

.ptv-day-filter a.today:not(.active) {
    border-color: var(--ptv-gold);
}

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

.ptv-program-card,
.ptv-person-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
}

.ptv-program-card__image,
.ptv-person-card__image {
    min-height: 210px;
}

.ptv-program-card__body,
.ptv-person-card__body {
    padding: 18px;
}

.ptv-program-card h2,
.ptv-person-card h2,
.ptv-podcast-card h2,
.ptv-contact-card h2 {
    color: var(--ptv-ink);
    font-size: 1.16rem;
    line-height: 1.18;
}

.ptv-program-card ul,
.ptv-contact-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.ptv-program-card li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-top: 1px solid var(--ptv-line);
}

.ptv-program-card li span {
    color: var(--ptv-muted);
    font-weight: 800;
}

.ptv-podcast-list {
    display: grid;
    gap: 18px;
}

.ptv-podcast-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
}

.ptv-podcast-card__media {
    min-height: 270px;
}

.ptv-podcast-card__body {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: clamp(18px, 3vw, 28px);
}

.ptv-podcast-card p {
    margin: 0;
    color: #475467;
}

.ptv-podcast-card audio {
    width: 100%;
}

.ptv-video-frame {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background: #101828;
}

.ptv-video-frame iframe {
    width: 100%;
    height: 100%;
}

.ptv-inline-link {
    color: var(--ptv-red);
    font-weight: 900;
}

.ptv-person-card p {
    color: #475467;
}

.ptv-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.ptv-social-row a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #eef2f6;
    color: var(--ptv-ink);
}

.ptv-social-row a:hover {
    background: var(--ptv-red);
    color: #fff;
}

.ptv-person-programs {
    display: grid;
    gap: 8px;
}

.ptv-person-programs span {
    color: var(--ptv-muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ptv-person-programs div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ptv-person-programs img {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: cover;
}

.ptv-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 18px;
}

.ptv-contact-card {
    padding: clamp(20px, 3vw, 30px);
}

.ptv-contact-card--brand {
    display: grid;
    align-content: center;
    gap: 14px;
    background:
        linear-gradient(135deg, rgba(16, 24, 40, 0.92), rgba(159, 13, 26, 0.88)),
        #101828;
    color: #fff;
}

.ptv-contact-card--brand h2 {
    color: #fff;
}

.ptv-contact-card--brand p {
    color: #e5e7eb;
}

.ptv-contact-card--brand img {
    width: min(260px, 100%);
    max-height: 120px;
    object-fit: contain;
}

.ptv-contact-list {
    display: grid;
    gap: 10px;
}

.ptv-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid var(--ptv-line);
}

.ptv-contact-list i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #fff0f2;
    color: var(--ptv-red);
}

.ptv-contact-list a {
    color: var(--ptv-ink);
    font-weight: 800;
}

@media (max-width: 1100px) {
    .ptv-lead-grid {
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .ptv-hero-card {
        grid-column: 1 / -1;
    }

    .ptv-content-grid {
        grid-template-columns: 1fr;
    }

    .ptv-sidebar-news {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .ptv-index-layout,
    .ptv-post-layout {
        grid-template-columns: 1fr;
    }

    .ptv-index-sidebar {
        display: none;
    }

    .ptv-program-grid,
    .ptv-people-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .navbar-menu,
    .container-menu {
        min-height: 64px;
    }

    .navbar-brand img {
        max-height: 48px;
    }

    .navbar-menu .navbar-collapse {
        margin-top: 12px;
        padding: 12px;
        border-top: 1px solid var(--ptv-line);
        background: #fff;
    }

    .navbar-menu .navbar-nav {
        align-items: stretch;
    }

    .navbar-menu .nav-link {
        border-radius: 6px;
        padding: 10px 12px;
    }

    .navbar-menu .nav-link::before {
        display: none;
    }

    .ptv-breaking {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px;
    }

    .ptv-lead-grid,
    .ptv-news-grid,
    .ptv-topic-grid,
    .ptv-sidebar-news,
    .ptv-list-grid,
    .ptv-contact-layout {
        grid-template-columns: 1fr;
    }

    .ptv-index-feature,
    .ptv-podcast-card,
    .ptv-program-card,
    .ptv-person-card {
        grid-template-columns: 1fr;
    }

    .ptv-index-feature__image,
    .ptv-program-card__image,
    .ptv-podcast-card__media,
    .ptv-person-card__image {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .ptv-hero-card h1 {
        font-size: 1.65rem;
    }

    .ptv-banner-strip .carousel-item,
    .ptv-banner-strip img {
        min-height: 190px;
        height: 190px;
    }

    .ptv-banner-strip__caption {
        position: static;
        max-width: none;
        border-radius: 0;
        background: #101828;
    }
}

@keyframes ptvTicker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 540px) {
    .site-content {
        margin-top: 12px;
    }

    .ptv-home {
        gap: 18px;
    }

    .ptv-hero-card__body,
    .ptv-news-card__body,
    .ptv-live-box,
    .ptv-most-read,
    .ptv-topic-card,
    .ptv-index-feature__body,
    .ptv-list-card__body,
    .ptv-program-card__body,
    .ptv-podcast-card__body,
    .ptv-person-card__body {
        padding: 14px;
    }

    .ptv-hero-card h1 {
        font-size: 1.42rem;
    }

    .ptv-live-box h2 {
        font-size: 1.32rem;
    }

    .container-footer footer .row {
        gap: 10px;
    }

    .container-footer footer .col {
        flex: 0 0 100%;
        text-align: left !important;
    }
}
