/* ── Pink Radio Front Page — Hero — all selectors scoped to .pfp ── */

.pfp {
    --pfp-pink: #e8005a;
    --pfp-pink-lo: rgba(232,0,90,0.12);
    --pfp-pink-mid: rgba(232,0,90,0.25);
    --pfp-bgn: #111;
    --pfp-bg: #0a0a0a;
    --pfp-s3: #202020;
    --pfp-border: rgba(255,255,255,0.07);
    --pfp-border2: rgba(255,255,255,0.13);
    --pfp-text: #f0f0f0;
    --pfp-muted: #888;
    --pfp-dim: #444;
    --pfp-r: 10px;
    --pfp-rl: 14px;
}

/* The hero is full-bleed under the theme's fixed transparent header, so
   cancel the default top padding the parent theme adds to every page. */
.home #vice-ajaxcontents.qw-totalcontainer {
    padding-top: 0;
}

/* === ANIMATIONS === */
@keyframes pfpFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.pfp .fu { animation: pfpFadeUp .6s ease both; }
.pfp .d1 { animation-delay: .1s; }
.pfp .d2 { animation-delay: .2s; }
.pfp .d3 { animation-delay: .3s; }
.pfp .d4 { animation-delay: .4s; }

@keyframes pfpBlink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.pfp .live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--pfp-pink);
    animation: pfpBlink 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pfpEq { from { transform: scaleY(.15); } to { transform: scaleY(1); } }

/* === HERO === */
.pfp.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
    padding-top: 70px; /* clears the parent theme's 70px fixed header */
    background: var(--pfp-bg);
    color: var(--pfp-text);
    font-family: 'DM Sans', sans-serif;
}
@media (max-width: 768px) {
    .pfp.hero { padding-top: 50px; } /* header shrinks to 50px on mobile */
}

/* Background image + gradient stack are printed inline by
   front-page-hero.php (wp_head, is_front_page only) using the day's
   chosen photo from the Customizer. These rules are just a fallback. */
.pfp .hero-photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 30%; background-repeat: no-repeat;
    transition: background-image .6s ease;
}
.pfp .hero-grain {
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: .6; mix-blend-mode: overlay;
}
.pfp .hero-inner {
    position: relative; z-index: 2;
    max-width: 1180px; margin: 0 auto; width: 100%;
    padding: 4.5rem 2.5rem 0;
    display: grid; grid-template-columns: 1fr 300px; gap: 3rem;
    align-items: start;
}
.pfp .hero-giveaway {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px; border-radius: 99px;
    margin-bottom: 1.25rem; max-width: 100%;
    background: linear-gradient(90deg, rgba(232,0,90,.18), rgba(232,0,90,.05));
    border: 1px solid rgba(232,0,90,.4);
    color: var(--pfp-text); text-decoration: none;
    font-size: 13px; font-weight: 500; line-height: 1.4;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pfp .hero-giveaway:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,0,90,.35);
    border-color: rgba(232,0,90,.7);
}
.pfp .hero-giveaway-icon { font-size: 16px; flex-shrink: 0; }
.pfp .hero-giveaway-text strong { color: var(--pfp-pink); }
.pfp .hero-giveaway-arrow { color: var(--pfp-pink); font-weight: 700; flex-shrink: 0; transition: transform .2s; }
.pfp .hero-giveaway:hover .hero-giveaway-arrow { transform: translateX(3px); }
@media (max-width: 600px) {
    .pfp .hero-giveaway { font-size: 12px; padding: 8px 14px; }
}

.pfp .hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.5rem; }
.pfp .hero-tag-pill {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--pfp-pink);
    border: 1px solid rgba(232,0,90,.35); background: var(--pfp-pink-lo);
    padding: 5px 12px; border-radius: 99px;
}
.pfp .hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8.5vw, 116px);
    letter-spacing: 2px; line-height: .92;
    margin-bottom: 1.5rem;
}
.pfp .hero-h1 .line-fill { color: var(--pfp-text); display: block; }
.pfp .hero-h1 .line-outline {
    display: block; color: transparent;
    -webkit-text-stroke: 1.5px var(--pfp-text);
}
.pfp .hero-h1 .line-pink { display: block; color: var(--pfp-pink); }
.pfp .hero-p {
    font-size: 15px; font-weight: 300; color: rgba(240,240,240,.75);
    line-height: 1.75; max-width: 460px; margin-bottom: 2.25rem;
}
.pfp .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.pfp .btn-p {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: var(--pfp-r);
    background: var(--pfp-pink); color: #fff; border: none;
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .8px; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.pfp .btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,0,90,.35); }
.pfp .btn-p svg { width: 15px; height: 15px; fill: white; }
.pfp .btn-g {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--pfp-r);
    background: rgba(255,255,255,.04); color: var(--pfp-text);
    border: 1px solid var(--pfp-border2);
    font-family: 'DM Sans', sans-serif; font-size: 13px;
    text-transform: uppercase; letter-spacing: .8px; cursor: pointer;
    transition: all .2s; backdrop-filter: blur(8px);
}
.pfp .btn-g:hover { border-color: rgba(255,255,255,.4); }

/* live broadcast card — right column */
.pfp .np-card {
    background: rgba(15,15,15,.65);
    border: 1px solid rgba(232,0,90,.25);
    border-radius: var(--pfp-rl); padding: 1.5rem;
    backdrop-filter: blur(16px);
    position: relative; overflow: hidden;
}
.pfp .np-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--pfp-pink), transparent);
}
.pfp .np-lbl { display: flex; align-items: center; gap: 7px; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--pfp-pink); margin-bottom: 16px; font-weight: 500; }
.pfp .np-head { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.pfp .np-art { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--pfp-s3); }
.pfp .np-bars { display: flex; align-items: flex-end; gap: 3px; height: 32px; }
.pfp .np-bar {
    width: 5px; border-radius: 2px; background: var(--pfp-pink);
    animation: pfpEq var(--d) ease-in-out infinite alternate;
    transform-origin: bottom;
}
.pfp .np-show { font-size: 15px; font-weight: 500; color: var(--pfp-text); margin-bottom: 3px; }
.pfp .np-host { font-size: 12px; color: var(--pfp-muted); font-weight: 300; }
.pfp .np-divider { height: 1px; background: var(--pfp-border); margin: 16px 0; }
.pfp .np-next { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--pfp-dim); margin-bottom: 6px; }
.pfp .np-next-row { display: flex; justify-content: space-between; align-items: center; }
.pfp .np-next-show { font-size: 13px; color: var(--pfp-muted); }
.pfp .np-next-time { font-size: 12px; color: var(--pfp-text); font-weight: 500; }

/* hero bottom: giant wordmark fading to black + info strip */
.pfp .hero-mark-wrap {
    position: relative; z-index: 2; margin-top: 3rem;
    text-align: center; overflow: hidden;
}
.pfp .hero-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(90px, 16vw, 200px);
    letter-spacing: .16em; color: transparent;
    -webkit-text-stroke: 1.5px rgba(232,0,90,.18);
    line-height: 1; white-space: nowrap; user-select: none;
    mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
}
.pfp .hero-strip {
    position: relative; z-index: 2;
    display: flex; align-items: stretch;
    border-top: 1px solid var(--pfp-border);
    background: var(--pfp-bg);
}
.pfp .strip-item {
    flex: 1; padding: 1.25rem 2rem;
    border-right: 1px solid var(--pfp-border);
    transition: background .2s; cursor: default;
}
.pfp .strip-item:last-child { border-right: none; }
.pfp .strip-item:hover { background: rgba(255,255,255,.03); }
.pfp .strip-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--pfp-dim); margin-bottom: 4px; }
.pfp .strip-val { font-size: 14px; font-weight: 500; color: var(--pfp-text); }
.pfp .strip-sub { font-size: 12px; color: var(--pfp-muted); font-weight: 300; }

@media (max-width: 960px) {
    .pfp .hero-inner { grid-template-columns: 1fr; }
    .pfp .np-card { display: none; }
}
@media (max-width: 640px) {
    .pfp .hero-inner { padding: 3rem 1.25rem 0; }
    .pfp .hero-strip .strip-item:nth-child(3),
    .pfp .hero-strip .strip-item:nth-child(4) { display: none; }
}

/* === LATEST NEWS === */
.pfp.pfp-news {
    background: var(--pfp-bgn);
    color: var(--pfp-text);
    font-family: 'DM Sans', sans-serif;
    padding: 4.5rem 0;
    border-top: 1px solid var(--pfp-border);
}
.pfp-news .news-inner { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; }
.pfp-news .news-head {
    display: flex; 
    align-items: baseline; 
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 1rem;
}
.pfp-news .news-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 1px; line-height: 1;
    color: var(--pfp-text); margin: 0;
}
.pfp-news .news-h2-accent { color: var(--pfp-pink); }
.pfp-news .news-viewall {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
    color: var(--pfp-pink); text-decoration: none;
    transition: gap .2s;
}
.pfp-news .news-viewall:hover { gap: 10px; color: var(--pfp-pink); }
.pfp-news .news-viewall svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

.pfp-news .news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.pfp-news .news-card {
    display: flex; flex-direction: column;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--pfp-border);
    border-radius: var(--pfp-rl);
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: border-color .2s, transform .2s;
}
.pfp-news .news-card:hover { border-color: var(--pfp-border2); transform: translateY(-3px); color: inherit; }

.pfp-news .news-card--feature {
    grid-column: span 2; grid-row: span 2;
}
.pfp-news .news-card--feature .news-card-media { aspect-ratio: 16 / 11; }
.pfp-news .news-card--feature .news-card-title { font-size: 22px; }

.pfp-news .news-card-media {
    position: relative; aspect-ratio: 16 / 10;
    background: var(--pfp-s3); overflow: hidden;
}
.pfp-news .news-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .4s ease;
}
.pfp-news .news-card:hover .news-card-media img { transform: scale(1.05); }
.pfp-news .news-card-tag {
    position: absolute; top: 12px; left: 12px;
    font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--pfp-text); font-weight: 500;
    background: rgba(13,13,13,.7); backdrop-filter: blur(8px);
    border: 1px solid rgba(232,0,90,.35);
    padding: 5px 10px; border-radius: 4px;
}
.pfp-news .news-card-body { padding: 1.1rem 1.25rem 1.4rem; flex: 1; }
.pfp-news .news-card-date {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--pfp-dim); margin: 0 0 8px;
}
.pfp-news .news-card-title {
    font-size: 16px; font-weight: 500; line-height: 1.35;
    color: var(--pfp-text); margin: 0;
}
.pfp-news .news-card-excerpt {
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: var(--pfp-muted); margin: 10px 0 0;
}

@media (max-width: 960px) {
    .pfp-news .news-grid { grid-template-columns: repeat(2, 1fr); }
    .pfp-news .news-card--feature { grid-column: span 2; grid-row: auto; }
    .pfp-news .news-card--feature .news-card-media { aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
    .pfp-news { padding: 3rem 0; }
    .pfp-news .news-inner { padding: 0 1.25rem; }
    .pfp-news .news-grid { grid-template-columns: 1fr; }
    .pfp-news .news-card--feature { grid-column: span 1; }
    .pfp-news .news-card--feature .news-card-media,
    .pfp-news .news-card--feature .news-card-title { aspect-ratio: 16 / 10; font-size: 16px; }
}

/* === UPCOMING EVENTS === */
.pfp.pfp-events {
    background: #0e0b08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
    color: var(--pfp-text);
    font-family: 'DM Sans', sans-serif;
    padding: 4.5rem 0;
    position: relative; overflow: hidden;
}
.pfp-events::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: repeating-linear-gradient(90deg, var(--pfp-pink) 0, var(--pfp-pink) 18px, transparent 18px, transparent 26px);
}
.pfp-events .events-inner { max-width: 1180px; margin: 0 auto; padding: 0 0.5rem 0 0; position: relative; z-index: 1; }
.pfp-events .events-head {
    display: flex; 
    align-items: baseline; 
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 1rem;
}
.pfp-events .events-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 1px; line-height: 1;
    color: var(--pfp-text); margin: 0;
}
.pfp-events .events-h2-accent { color: var(--pfp-pink); }
.pfp-events .events-viewall {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
    color: var(--pfp-pink); text-decoration: none;
    transition: gap .2s;
}
.pfp-events .events-viewall:hover { gap: 10px; color: var(--pfp-pink); }
.pfp-events .events-viewall svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

.pfp-events .events-row {
    display: flex; gap: 0; overflow-x: auto; padding-top: 10px; padding-bottom: 1rem;
    scrollbar-width: none; margin: 0 -2.5rem; padding-left: 2.5rem; padding-right: 2.5rem;
}
.pfp-events .events-row::-webkit-scrollbar { display: none; }

.pfp-events .ev-card {
    flex-shrink: 0; display: flex; align-items: stretch;
    margin-right: 16px; border-radius: var(--pfp-rl); overflow: hidden;
    border: 1px solid var(--pfp-border);
    text-decoration: none; color: inherit;
    transition: transform .25s, box-shadow .25s;
    position: relative;
}
.pfp-events .ev-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.5); color: inherit; }
.pfp-events .ev-stub {
    width: 64px; background: var(--pfp-pink);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: .75rem .5rem; position: relative; flex-shrink: 0;
}
.pfp-events .ev-stub::before,
.pfp-events .ev-stub::after {
    content: ''; position: absolute;
    width: 18px; height: 18px; border-radius: 50%;
    background: #0e0b08; left: 50%; transform: translateX(-50%);
}
.pfp-events .ev-stub::before { top: -9px; }
.pfp-events .ev-stub::after { bottom: -9px; }
.pfp-events .ev-stub-day { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: #fff; line-height: 1; letter-spacing: 1px; }
.pfp-events .ev-stub-mon { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.75); }
.pfp-events .ev-body {
    background: #161210; padding: 1.1rem 1.25rem; width: 220px;
    display: flex; flex-direction: column; justify-content: space-between; gap: 8px;
}
.pfp-events .ev-name { font-size: 14px; font-weight: 500; color: var(--pfp-text); line-height: 1.4; }
.pfp-events .ev-venue { font-size: 11px; color: #665c52; display: flex; align-items: center; gap: 4px; }
.pfp-events .ev-venue svg { width: 10px; height: 10px; stroke: currentColor; fill: none; flex-shrink: 0; }
.pfp-events .ev-link {
    font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px;
    color: var(--pfp-pink); display: flex; align-items: center; gap: 4px; margin-top: auto;
}
.pfp-events .ev-link svg { width: 10px; height: 10px; stroke: currentColor; fill: none; transition: transform .2s; }
.pfp-events .ev-card:hover .ev-link svg { transform: translateX(3px); }

@media (max-width: 640px) {
    .pfp-events { padding: 3rem 0; }
    .pfp-events .events-inner { padding: 0 0.5rem 0 0; }
    .pfp-events .events-row { margin: 0 -1.25rem; padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* === WEEKLY SCHEDULE === */
.pfp.pfp-schedule {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #1a0010 0%, #0d0d0d 55%, #080816 100%);
    border-top: 1px solid rgba(232,0,90,.15);
    border-bottom: 1px solid rgba(232,0,90,.15);
    color: var(--pfp-text);
    font-family: 'DM Sans', sans-serif;
    position: relative; overflow: hidden;
}
.pfp-schedule::before {
    content: ''; position: absolute; top: -40%; left: -10%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,0,90,.12) 0%, transparent 70%);
    pointer-events: none;
}
.pfp-schedule .schedule-inner { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; position: relative; z-index: 1; }
.pfp-schedule .schedule-head {
    display: flex; 
    align-items: baseline; 
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 1rem;
}
.pfp-schedule .schedule-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 1px; line-height: 1;
    color: var(--pfp-text); margin: 0;
}
.pfp-schedule .schedule-h2-accent { color: var(--pfp-pink); }
.pfp-schedule .schedule-viewall {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
    color: var(--pfp-pink); text-decoration: none;
    transition: gap .2s;
}
.pfp-schedule .schedule-viewall:hover { gap: 10px; color: var(--pfp-pink); }
.pfp-schedule .schedule-viewall svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

.pfp-schedule .schedule-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; }

.pfp-schedule .week-grid { display: flex; flex-direction: column; }
.pfp-schedule .week-row {
    display: grid; grid-template-columns: 90px 1fr auto; gap: 14px; align-items: center;
    padding: 14px 4px; border-bottom: 1px solid var(--pfp-border);
}
.pfp-schedule .week-row:last-child { border-bottom: none; }
.pfp-schedule .week-row.is-now {
    background: var(--pfp-pink-lo); border-radius: var(--pfp-r);
    margin: 0 -10px; padding: 14px; border-bottom: 1px solid transparent;
}
.pfp-schedule .week-day {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--pfp-dim);
    display: flex; align-items: center; gap: 8px;
}
.pfp-schedule .week-row.is-now .week-day { color: var(--pfp-pink); font-weight: 500; }
.pfp-schedule .week-show h4 { font-size: 14px; font-weight: 500; color: var(--pfp-text); margin: 0 0 2px; }
.pfp-schedule .week-show p { font-size: 11px; color: var(--pfp-muted); font-weight: 300; margin: 0; }
.pfp-schedule .week-show-empty { color: var(--pfp-dim); font-weight: 400; }
.pfp-schedule .week-time { font-size: 12px; color: var(--pfp-muted); font-weight: 300; white-space: nowrap; }
.pfp-schedule .week-row.is-now .week-time { color: var(--pfp-text); font-weight: 500; }

/* featured shows — compact vertical cards */
.pfp-schedule .featured-shows { display: flex; flex-direction: column; gap: 12px; }
.pfp-schedule .fshow-title { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--pfp-dim); margin: 0 0 14px; }
.pfp-schedule .fshow-card {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,.03); border: 1px solid var(--pfp-border);
    border-radius: var(--pfp-rl); padding: .85rem;
    text-decoration: none; color: inherit;
    transition: border-color .2s, transform .2s;
}
.pfp-schedule .fshow-card:hover { border-color: rgba(232,0,90,.4); transform: translateX(4px); color: inherit; }
.pfp-schedule .fshow-card img { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--pfp-s3); }
.pfp-schedule .fshow-body h4 { font-size: 13px; font-weight: 500; color: var(--pfp-text); margin: 0 0 2px; }
.pfp-schedule .fshow-body p { font-size: 11px; color: var(--pfp-muted); font-weight: 300; margin: 0; }

@media (max-width: 960px) {
    .pfp-schedule .schedule-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
    .pfp-schedule { padding: 3rem 0; }
    .pfp-schedule .schedule-inner { padding: 0 1.25rem; }
}

/* === LATEST ARTICLES === */
.pfp.pfp-articles {
    background: #111;
    color: var(--pfp-text);
    font-family: 'DM Sans', sans-serif;
    padding: 4.5rem 0;
    border-top: 1px solid var(--pfp-border);
    position: relative; overflow: hidden;
}
.pfp-articles::after {
    content: ''; position: absolute; right: -150px; bottom: -150px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,0,90,.07) 0%, transparent 70%);
    pointer-events: none;
}
.pfp-articles .articles-inner { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; position: relative; z-index: 1; }
.pfp-articles .articles-head {
    display: flex; 
    align-items: baseline; 
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 1rem;
}
.pfp-articles .articles-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 1px; line-height: 1;
    color: var(--pfp-text); margin: 0;
}
.pfp-articles .articles-h2-accent { color: var(--pfp-pink); }
.pfp-articles .articles-viewall {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
    color: var(--pfp-pink); text-decoration: none;
    transition: gap .2s;
}
.pfp-articles .articles-viewall:hover { gap: 10px; color: var(--pfp-pink); }
.pfp-articles .articles-viewall svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

.pfp-articles .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pfp-articles .article-card {
    background: #181818; border: 1px solid var(--pfp-border);
    border-radius: var(--pfp-rl); overflow: hidden;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    transition: border-color .2s, transform .2s;
}
.pfp-articles .article-card:hover { border-color: rgba(232,0,90,.28); transform: translateY(-3px); color: inherit; }
.pfp-articles .article-card:hover .article-card-media img { transform: scale(1.04); }
.pfp-articles .article-card-media { height: 185px; overflow: hidden; background: var(--pfp-s3); }
.pfp-articles .article-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.pfp-articles .article-card-body { padding: 1.1rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.pfp-articles .article-card-tag {
    display: inline-block; align-self: flex-start;
    font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .5px;
    color: var(--pfp-pink); padding: 3px 10px;
    border: 1px solid rgba(232,0,90,.3); border-radius: 4px;
    background: var(--pfp-pink-lo); margin-bottom: 9px;
}
.pfp-articles .article-card-title {
    font-size: 14px; font-weight: 500; color: var(--pfp-text);
    line-height: 1.5; margin: 0 0 7px;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pfp-articles .article-card-excerpt {
    font-size: 12px; color: var(--pfp-muted); line-height: 1.65; font-weight: 300;
    display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    margin: 0 0 .9rem;
}
.pfp-articles .article-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.pfp-articles .article-card-date { font-size: 11px; color: var(--pfp-dim); }
.pfp-articles .article-card-arrow {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
    color: var(--pfp-pink); display: flex; align-items: center; gap: 4px;
    transition: gap .2s;
}
.pfp-articles .article-card-arrow svg { width: 11px; height: 11px; stroke: currentColor; fill: none; }
.pfp-articles .article-card:hover .article-card-arrow { gap: 7px; }

@media (max-width: 960px) {
    .pfp-articles .articles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .pfp-articles { padding: 3rem 0; }
    .pfp-articles .articles-inner { padding: 0 1.25rem; }
    .pfp-articles .articles-grid { grid-template-columns: 1fr; }
}

/* === LATEST PODCASTS === */
.pfp.pfp-podcasts {
    background: var(--pfp-bg);
    color: var(--pfp-text);
    font-family: 'DM Sans', sans-serif;
    padding: 4.5rem 0;
    border-top: 1px solid var(--pfp-border);
}
.pfp-podcasts .podcasts-inner { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; }
.pfp-podcasts .podcasts-head {
    display: flex; 
    align-items: baseline; 
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 1rem;
}
.pfp-podcasts .podcasts-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 1px; line-height: 1;
    color: var(--pfp-text); margin: 0;
}
.pfp-podcasts .podcasts-h2-accent { color: var(--pfp-pink); }
.pfp-podcasts .podcasts-viewall {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
    color: var(--pfp-pink); text-decoration: none;
    transition: gap .2s;
}
.pfp-podcasts .podcasts-viewall:hover { gap: 10px; color: var(--pfp-pink); }
.pfp-podcasts .podcasts-viewall svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

.pfp-podcasts .podcasts-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.pfp-podcasts .pod-card {
    background: #181818; border: 1px solid var(--pfp-border);
    border-radius: var(--pfp-rl); overflow: hidden;
    text-decoration: none; color: inherit;
    display: block;
    transition: border-color .2s, transform .2s;
}
.pfp-podcasts .pod-card:hover { border-color: var(--pfp-border2); transform: translateY(-3px); color: inherit; }
.pfp-podcasts .pod-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--pfp-s3); }
.pfp-podcasts .pod-card-body { padding: .8rem .9rem; }
.pfp-podcasts .pod-card-body h4 {
    font-size: 12px; font-weight: 500; color: var(--pfp-text); line-height: 1.4; margin: 0 0 3px;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pfp-podcasts .pod-card-body p { font-size: 11px; color: var(--pfp-dim); margin: 0; }

@media (max-width: 960px) {
    .pfp-podcasts .podcasts-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .pfp-podcasts { padding: 3rem 0; }
    .pfp-podcasts .podcasts-inner { padding: 0 1.25rem; }
    .pfp-podcasts .podcasts-grid { grid-template-columns: repeat(2, 1fr); }
}
