:root {
    --pfm-primary: #e30613;
    --pfm-primary-dark: #8e0010;
    --pfm-navy: #07142f;
    --pfm-accent: #ffd400;
    --pfm-cyan: #0fd3e4;
    --pfm-text: #172033;
    --pfm-muted: #667085;
    --pfm-light: #f4f6fb;
    --pfm-white: #ffffff;
    --pfm-border: #e5e8ef;
    --pfm-green: #16b364;
    --pfm-container: 1180px;
    --pfm-radius-sm: 10px;
    --pfm-radius: 18px;
    --pfm-radius-lg: 28px;
    --pfm-shadow-sm: 0 8px 24px rgba(7, 20, 47, .08);
    --pfm-shadow: 0 18px 50px rgba(7, 20, 47, .12);
    --pfm-transition: .25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--pfm-text);
    background: var(--pfm-white);
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--pfm-transition), background-color var(--pfm-transition), border-color var(--pfm-transition), transform var(--pfm-transition), opacity var(--pfm-transition); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .65em;
    color: var(--pfm-navy);
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.015em;
}
p { margin: 0 0 1.25em; }
ul, ol { margin-top: 0; }
::selection { color: var(--pfm-navy); background: var(--pfm-accent); }

.pfm-container { width: min(calc(100% - 40px), var(--pfm-container)); margin-inline: auto; }
.pfm-narrow { width: min(calc(100% - 40px), 880px); margin-inline: auto; }
.pfm-icon { width: 1em; height: 1em; display: inline-block; flex: 0 0 auto; fill: currentColor; vertical-align: -.12em; }
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
    top: 12px; left: 12px; z-index: 99999;
    width: auto; height: auto; padding: 12px 18px;
    clip: auto !important; overflow: visible;
    color: var(--pfm-white); background: var(--pfm-navy);
    border-radius: 8px;
}

/* Buttons */
.pfm-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .035em;
    box-shadow: none;
}
.pfm-button .pfm-icon { width: 19px; height: 19px; }
.pfm-button:hover { transform: translateY(-2px); }
.pfm-button--primary { color: var(--pfm-white); background: var(--pfm-primary); box-shadow: 0 10px 24px rgba(227, 6, 19, .25); }
.pfm-button--primary:hover { background: var(--pfm-primary-dark); }
.pfm-button--accent { color: var(--pfm-navy); background: var(--pfm-accent); box-shadow: 0 10px 26px rgba(255, 212, 0, .2); }
.pfm-button--accent:hover { background: #ffe34d; }
.pfm-button--ghost { color: var(--pfm-white); background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .35); backdrop-filter: blur(8px); }
.pfm-button--ghost:hover { background: rgba(255, 255, 255, .18); }
.pfm-button--light { color: var(--pfm-primary); background: var(--pfm-white); }
.pfm-button--whatsapp { color: var(--pfm-white); background: #12a853; box-shadow: 0 12px 28px rgba(10, 120, 60, .3); }
.pfm-button--whatsapp:hover { background: #0c8c44; }

/* Top player bar */
.pfm-audio { display: none; }
.pfm-topbar { position: relative; z-index: 60; color: var(--pfm-white); background: var(--pfm-navy); }
.pfm-topbar::after { content: ""; position: absolute; inset: auto 0 0; height: 2px; background: linear-gradient(90deg, var(--pfm-primary), var(--pfm-accent), var(--pfm-cyan)); }
.pfm-topbar__inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.pfm-live-control {
    align-self: stretch;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 22px;
    color: var(--pfm-white);
    background: var(--pfm-primary);
    border: 0;
    border-radius: 0;
    text-align: left;
}
.pfm-live-control:hover { background: #fb0b19; }
.pfm-live-control__icon {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    color: var(--pfm-primary);
    background: var(--pfm-white);
    border-radius: 50%;
}
.pfm-live-control__icon .pfm-icon { width: 18px; height: 18px; }
.pfm-live-control__pulse { width: 8px; height: 8px; background: var(--pfm-white); border-radius: 50%; box-shadow: 0 0 0 0 rgba(255, 255, 255, .7); animation: pfm-pulse 1.8s infinite; }
.pfm-live-control__text { display: grid; line-height: 1.1; }
.pfm-live-control__text small { margin-bottom: 3px; font-size: .65rem; font-weight: 700; opacity: .8; }
.pfm-live-control__text strong { font-size: .82rem; letter-spacing: .04em; }
.pfm-topbar__actions { display: flex; align-items: center; gap: 28px; }
.pfm-topbar__actions > a { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; }
.pfm-topbar__actions > a:hover { color: var(--pfm-accent); }
.pfm-topbar__actions > a .pfm-icon { width: 22px; height: 22px; }
@keyframes pfm-pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.65); } 70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

/* Social icons */
.pfm-socials { display: flex; align-items: center; gap: 9px; }
.pfm-social {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    color: var(--pfm-white);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}
.pfm-social .pfm-icon { width: 19px; height: 19px; }
.pfm-social:hover { color: var(--pfm-white); transform: translateY(-3px); }
.pfm-social--facebook:hover { background: #1877f2; border-color: #1877f2; }
.pfm-social--instagram:hover { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); border-color: transparent; }
.pfm-social--youtube:hover { background: #ff0000; border-color: #ff0000; }
.pfm-social--x:hover { background: #000; border-color: #000; }
.pfm-social--whatsapp:hover { background: #25d366; border-color: #25d366; }
.pfm-socials--top .pfm-social { width: 31px; height: 31px; }
.pfm-socials--top .pfm-social .pfm-icon { width: 15px; height: 15px; }

/* Header */
.pfm-header { position: relative; z-index: 50; background: var(--pfm-white); box-shadow: 0 3px 18px rgba(7, 20, 47, .06); }
.pfm-branding-row { min-height: 132px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 18px; }
.pfm-branding { display: flex; align-items: center; gap: 22px; min-width: 0; }
.pfm-logo-link { flex: 0 0 auto; display: block; line-height: 0; }
.pfm-site-logo { width: auto; max-width: 300px; max-height: 96px; object-fit: contain; }
.pfm-branding__text { min-width: 0; }
.site-title { margin: 0; font-family: "Oswald", Arial, sans-serif; font-size: 1.55rem; font-weight: 700; line-height: 1.05; }
.site-title a { color: var(--pfm-navy); }
.site-description { margin: 5px 0 0; color: var(--pfm-muted); font-size: .88rem; }
.pfm-header-ad { max-width: 720px; flex: 1; }
.pfm-header-ad .widget { margin: 0; }
.pfm-header-ad img { display: block; width: 100%; max-height: 100px; object-fit: cover; border-radius: 12px; }
.pfm-header-frequency { display: flex; align-items: center; gap: 15px; padding: 14px 20px; color: var(--pfm-white); background: linear-gradient(135deg, var(--pfm-primary), var(--pfm-primary-dark)); border-radius: var(--pfm-radius); box-shadow: var(--pfm-shadow-sm); }
.pfm-header-frequency > span { width: 46px; height: 46px; display: grid; place-items: center; color: var(--pfm-navy); background: var(--pfm-accent); border-radius: 50%; }
.pfm-header-frequency .pfm-icon { width: 26px; height: 26px; }
.pfm-header-frequency div { display: grid; line-height: 1; }
.pfm-header-frequency small { margin-bottom: 6px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .75; }
.pfm-header-frequency strong { font-family: "Oswald", Arial, sans-serif; font-size: 1.45rem; }

.pfm-navbar-wrap { color: var(--pfm-white); background: linear-gradient(90deg, var(--pfm-primary-dark), var(--pfm-primary)); }
.pfm-navbar { min-height: 58px; display: flex; align-items: stretch; justify-content: space-between; }
.pfm-navigation { display: flex; align-items: stretch; }
.pfm-menu { display: flex; align-items: stretch; gap: 3px; margin: 0; padding: 0; list-style: none; }
.pfm-menu li { position: relative; display: flex; align-items: stretch; }
.pfm-menu a { min-height: 58px; display: flex; align-items: center; padding: 0 17px; color: var(--pfm-white); font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; }
.pfm-menu > li > a:hover, .pfm-menu > li.current-menu-item > a, .pfm-menu > li.current-menu-ancestor > a { color: var(--pfm-navy); background: var(--pfm-accent); }
.pfm-menu .sub-menu { position: absolute; top: 100%; left: 0; z-index: 100; width: 240px; margin: 0; padding: 10px; list-style: none; color: var(--pfm-text); background: var(--pfm-white); border-radius: 0 0 12px 12px; box-shadow: var(--pfm-shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity var(--pfm-transition), visibility var(--pfm-transition), transform var(--pfm-transition); }
.pfm-menu li:hover > .sub-menu, .pfm-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.pfm-menu .sub-menu li, .pfm-menu .sub-menu a { width: 100%; }
.pfm-menu .sub-menu a { min-height: auto; padding: 11px 13px; color: var(--pfm-text); border-radius: 7px; text-transform: none; }
.pfm-menu .sub-menu a:hover { color: var(--pfm-primary); background: var(--pfm-light); }
.pfm-menu-toggle { display: none; align-items: center; gap: 9px; padding: 0 16px; color: var(--pfm-white); background: transparent; border: 0; font-size: .85rem; font-weight: 800; text-transform: uppercase; }
.pfm-menu-toggle .pfm-icon { width: 24px; height: 24px; }
.pfm-search-toggle { width: 58px; display: grid; place-items: center; color: var(--pfm-white); background: rgba(0,0,0,.12); border: 0; }
.pfm-search-toggle:hover, .pfm-search-toggle[aria-expanded="true"] { color: var(--pfm-navy); background: var(--pfm-accent); }
.pfm-search-toggle .pfm-icon { width: 22px; height: 22px; }
.pfm-header-search { padding: 18px 0; color: var(--pfm-text); background: var(--pfm-white); border-bottom: 1px solid var(--pfm-border); }
.pfm-search-form { display: flex; align-items: stretch; gap: 10px; width: 100%; }
.pfm-search-field { flex: 1; min-width: 0; min-height: 50px; padding: 0 18px; color: var(--pfm-text); background: var(--pfm-light); border: 1px solid var(--pfm-border); border-radius: 10px; outline: none; }
.pfm-search-field:focus { background: var(--pfm-white); border-color: var(--pfm-primary); box-shadow: 0 0 0 3px rgba(227, 6, 19, .1); }
.pfm-search-submit { min-width: 120px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: var(--pfm-white); background: var(--pfm-primary); border: 0; border-radius: 10px; font-weight: 800; }
.pfm-search-submit:hover { background: var(--pfm-primary-dark); }

/* Hero */
.pfm-hero { position: relative; overflow: hidden; min-height: 610px; color: var(--pfm-white); background: var(--pfm-navy); }
.pfm-hero__slides { min-height: inherit; }
.pfm-hero__slide { position: absolute; inset: 0; min-height: inherit; opacity: 0; visibility: hidden; transform: scale(1.02); transition: opacity .6s ease, visibility .6s ease, transform 1s ease; background: radial-gradient(circle at 78% 25%, rgba(15, 211, 228, .26), transparent 28%), radial-gradient(circle at 15% 85%, rgba(227, 6, 19, .34), transparent 36%), linear-gradient(120deg, var(--pfm-navy), #101f49 58%, #07142f); background-image: linear-gradient(90deg, rgba(7, 20, 47, .98) 5%, rgba(7, 20, 47, .83) 52%, rgba(7, 20, 47, .35) 100%), var(--pfm-hero-image); background-size: cover; background-position: center; }
.pfm-hero__slide:first-child { position: relative; }
.pfm-hero__slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.pfm-hero__overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(7,20,47,.15), transparent 70%); }
.pfm-hero__inner { position: relative; z-index: 3; min-height: 610px; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); align-items: center; gap: 70px; padding-block: 75px; }
.pfm-hero__content { max-width: 720px; }
.pfm-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--pfm-primary); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.pfm-eyebrow::before { content: ""; width: 28px; height: 3px; background: currentColor; border-radius: 999px; }
.pfm-eyebrow--light { color: var(--pfm-accent); }
.pfm-hero h1, .pfm-hero h2 { max-width: 760px; margin-bottom: 22px; color: var(--pfm-white); font-size: clamp(3rem, 6vw, 5.8rem); text-transform: uppercase; line-height: .98; }
.pfm-hero__content > p { max-width: 620px; margin-bottom: 32px; color: rgba(255,255,255,.8); font-size: 1.12rem; }
.pfm-hero__buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.pfm-hero__station-card { position: relative; justify-self: end; width: min(100%, 390px); min-height: 390px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 36px; color: var(--pfm-white); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; backdrop-filter: blur(16px); box-shadow: inset 0 0 50px rgba(255,255,255,.08), 0 30px 70px rgba(0,0,0,.25); text-align: center; }
.pfm-hero__station-card::before, .pfm-hero__station-card::after { content: ""; position: absolute; inset: -18px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.pfm-hero__station-card::after { inset: -38px; border-style: dashed; animation: pfm-spin 28s linear infinite; }
.pfm-hero__on-air { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 10px; padding: 5px 11px; color: var(--pfm-white); background: var(--pfm-primary); border-radius: 999px; font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.pfm-hero__on-air i { width: 7px; height: 7px; background: var(--pfm-white); border-radius: 50%; animation: pfm-pulse 1.8s infinite; }
.pfm-hero__frequency { color: var(--pfm-accent); font-family: "Oswald", Arial, sans-serif; font-size: clamp(4rem, 7vw, 6rem); font-weight: 700; line-height: .95; }
.pfm-hero__station-card > strong { margin-top: 8px; font-family: "Oswald", Arial, sans-serif; font-size: 1.35rem; text-transform: uppercase; }
.pfm-hero__station-card > span:not(.pfm-hero__on-air) { margin-top: 4px; color: rgba(255,255,255,.65); font-size: .82rem; }
.pfm-hero__round-play { position: absolute; right: 15px; bottom: 32px; width: 74px; height: 74px; display: grid; place-items: center; color: var(--pfm-primary); background: var(--pfm-white); border: 7px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 15px 30px rgba(0,0,0,.28); }
.pfm-hero__round-play:hover { color: var(--pfm-navy); background: var(--pfm-accent); transform: scale(1.06); }
.pfm-hero__round-play .pfm-icon { width: 27px; height: 27px; }
.pfm-hero__waves { position: absolute; inset: auto 0 36px; z-index: 1; height: 90px; display: flex; align-items: end; justify-content: center; gap: 10px; opacity: .1; }
.pfm-hero__waves span { width: 7px; height: 20px; background: var(--pfm-white); border-radius: 9px; animation: pfm-wave 1.5s ease-in-out infinite alternate; }
.pfm-hero__waves span:nth-child(2) { height: 60px; animation-delay: -.4s; }
.pfm-hero__waves span:nth-child(3) { height: 90px; animation-delay: -.8s; }
@keyframes pfm-spin { to { transform: rotate(360deg); } }
@keyframes pfm-wave { to { height: 75px; } }
.pfm-hero__arrow { position: absolute; top: 50%; z-index: 10; width: 50px; height: 50px; display: grid; place-items: center; color: var(--pfm-white); background: rgba(7,20,47,.35); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; backdrop-filter: blur(8px); transform: translateY(-50%); }
.pfm-hero__arrow:hover { color: var(--pfm-navy); background: var(--pfm-accent); }
.pfm-hero__arrow--prev { left: 24px; }
.pfm-hero__arrow--next { right: 24px; }
.pfm-hero__dots { position: absolute; left: 50%; bottom: 26px; z-index: 10; display: flex; gap: 8px; transform: translateX(-50%); }
.pfm-hero__dots button { width: 10px; height: 10px; padding: 0; background: rgba(255,255,255,.4); border: 0; border-radius: 99px; transition: width var(--pfm-transition), background var(--pfm-transition); }
.pfm-hero__dots button.is-active { width: 34px; background: var(--pfm-accent); }

/* Sections */
.pfm-section { padding: 88px 0; }
.pfm-section--single { padding-top: 60px; }
.pfm-news-section { background: var(--pfm-light); }
.pfm-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.pfm-section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }
.pfm-section-heading .pfm-eyebrow { margin-bottom: 9px; }
.pfm-section-heading--light h2 { color: var(--pfm-white); }
.pfm-text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--pfm-primary); font-size: .84rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.pfm-text-link:hover { color: var(--pfm-primary-dark); gap: 12px; }
.pfm-text-link--light { color: var(--pfm-accent); }
.pfm-text-link--light:hover { color: var(--pfm-white); }

/* News cards */
.pfm-news-grid, .pfm-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; }
.pfm-news-card { overflow: hidden; min-width: 0; background: var(--pfm-white); border: 1px solid var(--pfm-border); border-radius: var(--pfm-radius); box-shadow: var(--pfm-shadow-sm); transition: transform var(--pfm-transition), box-shadow var(--pfm-transition); }
.pfm-news-card:hover { transform: translateY(-7px); box-shadow: var(--pfm-shadow); }
.pfm-news-card__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--pfm-navy); }
.pfm-news-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease; }
.pfm-news-card:hover .pfm-news-card__media img { transform: scale(1.05); }
.pfm-category-badge { position: absolute; left: 15px; top: 15px; z-index: 2; display: inline-flex; align-items: center; min-height: 28px; padding: 5px 11px; color: var(--pfm-white); background: var(--pfm-primary); border-radius: 6px; font-size: .67rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; box-shadow: 0 8px 18px rgba(0,0,0,.18); }
.pfm-category-badge:hover { color: var(--pfm-navy); background: var(--pfm-accent); }
.pfm-news-card__body { padding: 22px 22px 24px; }
.pfm-news-card__date { display: flex; align-items: center; gap: 7px; margin-bottom: 11px; color: var(--pfm-muted); font-size: .74rem; font-weight: 700; text-transform: uppercase; }
.pfm-news-card__date .pfm-icon { color: var(--pfm-primary); }
.pfm-news-card h3 { margin-bottom: 10px; font-size: 1.45rem; line-height: 1.16; }
.pfm-news-card h3 a:hover { color: var(--pfm-primary); }
.pfm-news-card__body > p { margin-bottom: 18px; color: var(--pfm-muted); font-size: .9rem; line-height: 1.55; }
.pfm-news-card__link { display: inline-flex; align-items: center; gap: 7px; color: var(--pfm-primary); font-size: .77rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.pfm-news-card__link:hover { color: var(--pfm-primary-dark); gap: 11px; }

/* Placeholder */
.pfm-placeholder { position: relative; width: 100%; height: 100%; min-height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; overflow: hidden; color: rgba(255,255,255,.8); background: radial-gradient(circle at 70% 20%, rgba(15,211,228,.32), transparent 32%), linear-gradient(135deg, var(--pfm-primary-dark), var(--pfm-navy)); text-align: center; }
.pfm-placeholder .pfm-icon { width: 50px; height: 50px; color: var(--pfm-accent); }
.pfm-placeholder strong { position: relative; z-index: 2; font-family: "Oswald", Arial, sans-serif; text-transform: uppercase; }
.pfm-placeholder__wave { position: absolute; width: 220px; height: 220px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,.06), 0 0 0 58px rgba(255,255,255,.03); }
.pfm-placeholder--team { border-radius: 50%; }

/* Advertising */
.pfm-ad-section { padding: 28px 0; }
.pfm-ad-section .widget { margin: 0; }
.pfm-ad-section img { width: 100%; max-height: 160px; display: block; object-fit: cover; border-radius: var(--pfm-radius); }

/* Music request CTA */
.pfm-request-section { padding: 55px 0; background: var(--pfm-white); }
.pfm-request-card { position: relative; overflow: hidden; min-height: 220px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 30px; padding: 42px 48px; color: var(--pfm-white); background: radial-gradient(circle at 95% 15%, rgba(255,255,255,.17), transparent 28%), linear-gradient(120deg, #0d8f46, #12b85a 60%, #1bc96b); border-radius: var(--pfm-radius-lg); box-shadow: 0 24px 50px rgba(10, 120, 60, .22); }
.pfm-request-card::before, .pfm-request-card::after { content: ""; position: absolute; width: 160px; height: 160px; border: 18px solid rgba(255,255,255,.06); border-radius: 50%; }
.pfm-request-card::before { right: 120px; top: -95px; }
.pfm-request-card::after { right: -60px; bottom: -105px; }
.pfm-request-card__icon { position: relative; z-index: 2; width: 96px; height: 96px; display: grid; place-items: center; color: #12a853; background: var(--pfm-white); border-radius: 24px; transform: rotate(-6deg); box-shadow: 0 20px 35px rgba(0,0,0,.18); }
.pfm-request-card__icon .pfm-icon { width: 48px; height: 48px; }
.pfm-request-card__content { position: relative; z-index: 2; }
.pfm-request-card__content > span { display: block; margin-bottom: 4px; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; opacity: .78; }
.pfm-request-card h2 { margin-bottom: 7px; color: var(--pfm-white); font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; }
.pfm-request-card p { max-width: 630px; margin: 0; color: rgba(255,255,255,.78); }
.pfm-request-card > .pfm-button { position: relative; z-index: 2; color: #0d8f46; background: var(--pfm-white); white-space: nowrap; }

/* Programs */
.pfm-program-section { position: relative; overflow: hidden; background: radial-gradient(circle at 10% 10%, rgba(227,6,19,.25), transparent 30%), radial-gradient(circle at 90% 100%, rgba(15,211,228,.15), transparent 36%), var(--pfm-navy); }
.pfm-program-section::before { content: ""; position: absolute; inset: 0; opacity: .035; background-image: linear-gradient(90deg, #fff 1px, transparent 1px), linear-gradient(#fff 1px, transparent 1px); background-size: 42px 42px; }
.pfm-program-section .pfm-container { position: relative; z-index: 2; }
.pfm-program-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.pfm-program-card { overflow: hidden; background: var(--pfm-white); border-radius: var(--pfm-radius); box-shadow: 0 16px 38px rgba(0,0,0,.2); transition: transform var(--pfm-transition); }
.pfm-program-card:hover { transform: translateY(-7px); }
.pfm-program-card__media { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #132653; }
.pfm-program-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.pfm-program-card:hover img { transform: scale(1.05); }
.pfm-program-card__time { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; color: var(--pfm-navy); background: var(--pfm-accent); border-radius: 7px; font-size: .72rem; font-weight: 900; }
.pfm-program-card__body { padding: 19px 20px 22px; }
.pfm-program-card__body > span { display: block; margin-bottom: 7px; color: var(--pfm-primary); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.pfm-program-card h3, .pfm-program-card h2 { margin-bottom: 10px; font-size: 1.45rem; }
.pfm-program-card h3 a:hover, .pfm-program-card h2 a:hover { color: var(--pfm-primary); }
.pfm-program-card__body p { display: flex; align-items: center; gap: 7px; margin: 0; color: var(--pfm-muted); font-size: .82rem; font-weight: 700; }
.pfm-program-card__body p .pfm-icon { color: var(--pfm-primary); }
.pfm-program-card--archive { box-shadow: var(--pfm-shadow-sm); }

/* Team */
.pfm-team-section { background: var(--pfm-white); }
.pfm-team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.pfm-team-card { min-width: 0; text-align: center; }
.pfm-team-card__photo { position: relative; width: min(100%, 245px); aspect-ratio: 1 / 1; display: block; margin: 0 auto 18px; padding: 8px; background: linear-gradient(135deg, var(--pfm-primary), var(--pfm-accent), var(--pfm-cyan)); border-radius: 50%; box-shadow: var(--pfm-shadow-sm); }
.pfm-team-card__photo::after { content: ""; position: absolute; inset: 8px; border: 5px solid var(--pfm-white); border-radius: 50%; pointer-events: none; }
.pfm-team-card__photo img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 50%; transition: transform var(--pfm-transition); }
.pfm-team-card:hover .pfm-team-card__photo img { transform: scale(.97); }
.pfm-team-card__body { position: relative; }
.pfm-team-card__body > span { display: block; margin-bottom: 4px; color: var(--pfm-primary); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.pfm-team-card h3, .pfm-team-card h2 { margin: 0; font-size: 1.5rem; }
.pfm-team-card h3 a:hover, .pfm-team-card h2 a:hover { color: var(--pfm-primary); }
.pfm-team-card__social { position: absolute; right: 15px; top: -58px; width: 40px; height: 40px; display: grid; place-items: center; color: var(--pfm-white); background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); border: 3px solid var(--pfm-white); border-radius: 50%; box-shadow: var(--pfm-shadow-sm); }
.pfm-team-card__social:hover { transform: scale(1.1); }
.pfm-team-card--archive { margin-bottom: 12px; }

/* Empty states */
.pfm-empty-state, .pfm-empty-content { grid-column: 1 / -1; padding: 48px; color: var(--pfm-white); background: rgba(255,255,255,.08); border: 1px dashed rgba(255,255,255,.25); border-radius: var(--pfm-radius); text-align: center; }
.pfm-empty-state > .pfm-icon, .pfm-empty-content > .pfm-icon { width: 56px; height: 56px; margin-bottom: 12px; color: var(--pfm-accent); }
.pfm-empty-state p { margin-bottom: 18px; }
.pfm-empty-state--light, .pfm-empty-content { color: var(--pfm-muted); background: var(--pfm-light); border-color: var(--pfm-border); }
.pfm-empty-state--light > .pfm-icon, .pfm-empty-content > .pfm-icon { color: var(--pfm-primary); }
.pfm-empty-content h2 { font-size: 2rem; }

/* Footer */
.pfm-footer { position: relative; overflow: hidden; color: rgba(255,255,255,.72); background: linear-gradient(145deg, #040d21, var(--pfm-navy) 58%, #101f49); }
.pfm-footer__signal { height: 7px; display: flex; }
.pfm-footer__signal span { flex: 1; }
.pfm-footer__signal span:nth-child(1), .pfm-footer__signal span:nth-child(4), .pfm-footer__signal span:nth-child(7) { background: var(--pfm-primary); }
.pfm-footer__signal span:nth-child(2), .pfm-footer__signal span:nth-child(5) { background: var(--pfm-accent); }
.pfm-footer__signal span:nth-child(3), .pfm-footer__signal span:nth-child(6) { background: var(--pfm-cyan); }
.pfm-footer__grid { display: grid; grid-template-columns: 1.35fr .8fr 1fr 1fr; gap: 50px; padding-top: 70px; padding-bottom: 62px; }
.pfm-footer__about .pfm-logo-link { display: inline-block; padding: 10px 14px; background: var(--pfm-white); border-radius: 12px; }
.pfm-site-logo--footer { max-width: 250px; max-height: 84px; }
.pfm-footer__about > p { max-width: 390px; margin: 23px 0; }
.pfm-footer h2 { margin-bottom: 20px; color: var(--pfm-white); font-size: 1.35rem; text-transform: uppercase; }
.pfm-footer__column ul, .pfm-footer-menu { margin: 0; padding: 0; list-style: none; }
.pfm-footer-menu li + li { margin-top: 9px; }
.pfm-footer-menu a:hover { color: var(--pfm-accent); padding-left: 4px; }
.pfm-footer__contact li { display: flex; align-items: flex-start; gap: 10px; }
.pfm-footer__contact li + li { margin-top: 14px; }
.pfm-footer__contact li .pfm-icon { width: 19px; height: 19px; margin-top: 3px; color: var(--pfm-accent); }
.pfm-footer__contact a:hover { color: var(--pfm-accent); }
.pfm-footer__frequency { display: block; margin-bottom: 9px; color: var(--pfm-accent); font-family: "Oswald", Arial, sans-serif; font-size: 3.4rem; font-weight: 700; line-height: 1; }
.pfm-footer__listen h2 { max-width: 260px; font-size: 1.6rem; line-height: 1.15; }
.pfm-footer__bottom { padding: 18px 0; color: rgba(255,255,255,.62); background: rgba(0,0,0,.25); border-top: 1px solid rgba(255,255,255,.08); font-size: .76rem; }
.pfm-footer__bottom .pfm-container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pfm-footer__bottom p { margin: 0; }
.pfm-footer__bottom a { color: var(--pfm-white); font-weight: 900; }
.pfm-footer__bottom a:hover { color: var(--pfm-accent); }
.pfm-socials--footer .pfm-social { background: rgba(255,255,255,.08); }

/* Page headers / archives */
.pfm-page-hero, .pfm-single__header { position: relative; overflow: hidden; padding: 76px 0; color: var(--pfm-white); background: radial-gradient(circle at 85% 20%, rgba(15,211,228,.2), transparent 30%), radial-gradient(circle at 10% 100%, rgba(227,6,19,.35), transparent 35%), var(--pfm-navy); }
.pfm-page-hero::after, .pfm-single__header::after { content: ""; position: absolute; right: -100px; top: -180px; width: 430px; height: 430px; border: 50px solid rgba(255,255,255,.035); border-radius: 50%; }
.pfm-page-hero .pfm-container, .pfm-single__header-inner { position: relative; z-index: 2; }
.pfm-page-hero h1, .pfm-single__header h1 { max-width: 960px; margin: 0; color: var(--pfm-white); font-size: clamp(2.5rem, 5vw, 4.5rem); text-transform: uppercase; }
.pfm-page-hero p, .pfm-archive-description { max-width: 700px; margin: 16px 0 0; color: rgba(255,255,255,.75); font-size: 1.05rem; }
.pfm-page-hero--compact { padding: 54px 0; }
.pfm-page-hero--compact h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.pfm-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 42px; align-items: start; }
.pfm-content-area { min-width: 0; }
.pfm-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pfm-archive-grid--custom { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Sidebar / widgets */
.pfm-sidebar { position: sticky; top: 24px; display: grid; gap: 24px; }
.widget { padding: 24px; background: var(--pfm-white); border: 1px solid var(--pfm-border); border-radius: var(--pfm-radius); box-shadow: var(--pfm-shadow-sm); }
.widget-title { position: relative; margin-bottom: 18px; padding-bottom: 12px; font-size: 1.3rem; text-transform: uppercase; }
.widget-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 42px; height: 3px; background: var(--pfm-primary); border-radius: 3px; }
.widget ul { margin: 0; padding: 0; list-style: none; }
.widget li + li { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--pfm-border); }
.widget a:hover { color: var(--pfm-primary); }
.widget img { border-radius: 10px; }
.widget_search { padding: 0; border: 0; box-shadow: none; }
.widget_search .pfm-search-submit span { display: none; }
.widget_search .pfm-search-submit { min-width: 52px; }

/* Single content */
.pfm-single__header { padding: 68px 0; }
.pfm-single__header .pfm-category-badge { position: static; margin-bottom: 18px; }
.pfm-single__header h1 { margin-bottom: 22px; font-size: clamp(2.5rem, 5vw, 4.5rem); text-transform: none; }
.pfm-post-meta { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 700; }
.pfm-post-meta span { display: inline-flex; align-items: center; gap: 7px; }
.pfm-post-meta .pfm-icon { color: var(--pfm-accent); }
.pfm-single__featured { overflow: hidden; margin: 0 0 35px; background: var(--pfm-light); border-radius: var(--pfm-radius); box-shadow: var(--pfm-shadow-sm); }
.pfm-single__featured img { width: 100%; display: block; }
.pfm-single__featured figcaption { padding: 10px 16px; color: var(--pfm-muted); font-size: .76rem; text-align: center; }
.pfm-entry-content { color: #263044; font-size: 1.13rem; line-height: 1.82; }
.pfm-entry-content > *:first-child { margin-top: 0; }
.pfm-entry-content h2 { margin-top: 1.55em; font-size: 2rem; }
.pfm-entry-content h3 { margin-top: 1.4em; font-size: 1.6rem; }
.pfm-entry-content a { color: var(--pfm-primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.pfm-entry-content a:hover { color: var(--pfm-primary-dark); }
.pfm-entry-content blockquote { margin: 30px 0; padding: 24px 28px; color: var(--pfm-navy); background: var(--pfm-light); border-left: 5px solid var(--pfm-primary); border-radius: 0 var(--pfm-radius-sm) var(--pfm-radius-sm) 0; font-family: "Oswald", Arial, sans-serif; font-size: 1.35rem; }
.pfm-entry-content table { width: 100%; border-collapse: collapse; }
.pfm-entry-content th, .pfm-entry-content td { padding: 12px; border: 1px solid var(--pfm-border); }
.pfm-entry-content th { background: var(--pfm-light); }
.pfm-entry-content iframe { max-width: 100%; }
.alignwide { width: min(1100px, 100vw - 40px); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.pfm-program-details { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 34px; }
.pfm-program-details > div { display: flex; align-items: center; gap: 13px; padding: 18px; background: var(--pfm-light); border: 1px solid var(--pfm-border); border-radius: var(--pfm-radius-sm); }
.pfm-program-details > div > .pfm-icon { width: 29px; height: 29px; color: var(--pfm-primary); }
.pfm-program-details span { display: grid; }
.pfm-program-details small { color: var(--pfm-muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
.pfm-program-details strong { color: var(--pfm-navy); }
.pfm-person-details { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 30px; padding: 18px 22px; background: var(--pfm-light); border-radius: var(--pfm-radius-sm); }
.pfm-person-details a { display: inline-flex; align-items: center; gap: 8px; color: #d62976; font-weight: 800; }
.pfm-single__footer { margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--pfm-border); }
.pfm-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--pfm-muted); }
.pfm-tags > .pfm-icon { color: var(--pfm-primary); }
.pfm-tags a { padding: 6px 10px; color: var(--pfm-muted); background: var(--pfm-light); border-radius: 6px; font-size: .76rem; }
.pfm-tags a:hover { color: var(--pfm-white); background: var(--pfm-primary); }
.pfm-post-navigation { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--pfm-border); }
.pfm-post-navigation > div { min-width: 0; padding: 18px; background: var(--pfm-light); border-radius: 10px; }
.pfm-post-navigation span { display: block; margin-bottom: 4px; color: var(--pfm-muted); font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.pfm-post-navigation a { color: var(--pfm-navy); font-family: "Oswald", Arial, sans-serif; font-size: 1.05rem; font-weight: 700; }
.pfm-post-navigation a:hover { color: var(--pfm-primary); }
.pfm-post-navigation__next { text-align: right; }

/* Pagination */
.navigation.pagination { margin-top: 38px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; color: var(--pfm-navy); background: var(--pfm-white); border: 1px solid var(--pfm-border); border-radius: 8px; font-weight: 800; }
.page-numbers.current, .page-numbers:hover { color: var(--pfm-white); background: var(--pfm-primary); border-color: var(--pfm-primary); }
.page-numbers .pfm-icon { width: 17px; height: 17px; }

/* Comments */
.pfm-comments-area { margin-top: 46px; padding-top: 36px; border-top: 1px solid var(--pfm-border); }
.pfm-comments-title, .comment-reply-title { font-size: 1.8rem; }
.comment-list { margin: 0 0 35px; padding: 0; list-style: none; }
.comment-list .children { margin: 18px 0 0 35px; list-style: none; }
.comment-body { margin-bottom: 18px; padding: 22px; background: var(--pfm-light); border-radius: var(--pfm-radius-sm); }
.comment-meta { margin-bottom: 12px; }
.comment-author { display: flex; align-items: center; gap: 10px; }
.comment-author img { border-radius: 50%; }
.comment-author .fn { color: var(--pfm-navy); font-weight: 800; }
.comment-metadata { margin: 6px 0 0 66px; color: var(--pfm-muted); font-size: .72rem; }
.comment-content p:last-child { margin-bottom: 0; }
.reply { margin-top: 10px; font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.reply a { color: var(--pfm-primary); }
.comment-form { display: grid; gap: 16px; }
.comment-form p { margin: 0; }
.comment-form label { display: block; margin-bottom: 6px; color: var(--pfm-navy); font-weight: 800; }
.comment-form input:not([type="checkbox"]), .comment-form textarea { width: 100%; padding: 13px 15px; background: var(--pfm-white); border: 1px solid var(--pfm-border); border-radius: 8px; outline: none; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--pfm-primary); box-shadow: 0 0 0 3px rgba(227,6,19,.08); }
.form-submit .submit { min-height: 48px; padding: 0 22px; color: var(--pfm-white); background: var(--pfm-primary); border: 0; border-radius: 999px; font-weight: 900; text-transform: uppercase; }

/* Contact template */
.pfm-contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: start; }
.pfm-contact-cards { display: grid; gap: 15px; }
.pfm-contact-card { display: flex; align-items: center; gap: 16px; padding: 20px; color: var(--pfm-text); background: var(--pfm-light); border: 1px solid var(--pfm-border); border-radius: var(--pfm-radius-sm); }
.pfm-contact-card > .pfm-icon { width: 30px; height: 30px; color: var(--pfm-primary); }
.pfm-contact-card div { display: grid; }
.pfm-contact-card small { color: var(--pfm-muted); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.pfm-contact-card strong, .pfm-contact-card a { color: var(--pfm-navy); font-weight: 800; }
.pfm-contact-card a:hover { color: var(--pfm-primary); }
.pfm-contact-card--whatsapp { color: var(--pfm-white); background: #12a853; border-color: #12a853; }
.pfm-contact-card--whatsapp > .pfm-icon, .pfm-contact-card--whatsapp small, .pfm-contact-card--whatsapp strong { color: var(--pfm-white); }
.pfm-contact-content { padding: 34px; background: var(--pfm-white); border: 1px solid var(--pfm-border); border-radius: var(--pfm-radius); box-shadow: var(--pfm-shadow-sm); }
.pfm-socials--contact { margin-top: 24px; }
.pfm-socials--contact .pfm-social { background: var(--pfm-navy); }

/* 404 */
.pfm-error-page { padding: 90px 0; background: var(--pfm-light); }
.pfm-error-page__inner { max-width: 780px; text-align: center; }
.pfm-error-page__code { color: var(--pfm-primary); font-family: "Oswald", Arial, sans-serif; font-size: clamp(7rem, 18vw, 13rem); font-weight: 700; line-height: .8; opacity: .12; }
.pfm-error-page h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.pfm-error-page p { max-width: 620px; margin: 0 auto 25px; color: var(--pfm-muted); }
.pfm-error-page .pfm-search-form { margin-bottom: 22px; }

/* Mobile player and back to top */
.pfm-mobile-player { display: none; }
.pfm-back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 46px; height: 46px; display: grid; place-items: center; color: var(--pfm-white); background: var(--pfm-primary); border: 0; border-radius: 50%; box-shadow: 0 12px 25px rgba(7,20,47,.25); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity var(--pfm-transition), visibility var(--pfm-transition), transform var(--pfm-transition); }
.pfm-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.pfm-back-to-top:hover { background: var(--pfm-primary-dark); }

/* Responsive */
@media (max-width: 1100px) {
    .pfm-topbar__actions { gap: 18px; }
    .pfm-topbar__actions > a span { display: none; }
    .pfm-hero__inner { grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 35px; }
    .pfm-hero__station-card { min-height: 330px; }
    .pfm-program-grid, .pfm-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pfm-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pfm-layout { grid-template-columns: minmax(0,1fr) 285px; gap: 30px; }
}

@media (max-width: 900px) {
    body { padding-bottom: 70px; }
    .pfm-container, .pfm-narrow { width: min(calc(100% - 30px), var(--pfm-container)); }
    .pfm-topbar { display: none; }
    .pfm-branding-row { min-height: 100px; padding-block: 12px; }
    .pfm-site-logo { max-width: 235px; max-height: 75px; }
    .pfm-branding__text { display: none; }
    .pfm-header-frequency { padding: 11px 14px; }
    .pfm-header-frequency > span { width: 40px; height: 40px; }
    .pfm-header-frequency strong { font-size: 1.15rem; }
    .pfm-menu-toggle { display: inline-flex; }
    .pfm-navbar { min-height: 54px; }
    .pfm-navigation { position: fixed; inset: 0 auto 0 0; z-index: 1000; width: min(86vw, 360px); display: block; padding: 90px 18px 30px; color: var(--pfm-text); background: var(--pfm-white); box-shadow: 20px 0 50px rgba(7,20,47,.2); overflow-y: auto; transform: translateX(-105%); transition: transform .3s ease; }
    body.menu-open .pfm-navigation { transform: translateX(0); }
    body.menu-open::after { content: ""; position: fixed; inset: 0; z-index: 999; background: rgba(3,10,26,.7); backdrop-filter: blur(3px); }
    .pfm-navigation .pfm-menu { display: block; }
    .pfm-navigation .pfm-menu li { display: block; }
    .pfm-navigation .pfm-menu a { min-height: 48px; padding: 0 12px; color: var(--pfm-navy); border-bottom: 1px solid var(--pfm-border); }
    .pfm-navigation .pfm-menu > li > a:hover, .pfm-navigation .pfm-menu > li.current-menu-item > a { color: var(--pfm-primary); background: transparent; }
    .pfm-menu .sub-menu { position: static; width: 100%; padding: 0 0 0 14px; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .pfm-menu .sub-menu a { min-height: 42px; }
    .pfm-search-toggle { width: 54px; }
    .pfm-hero { min-height: 620px; }
    .pfm-hero__inner { min-height: 620px; grid-template-columns: 1fr; gap: 28px; padding: 65px 55px; text-align: center; }
    .pfm-hero__content { margin-inline: auto; }
    .pfm-hero__content > p { margin-inline: auto; }
    .pfm-hero__buttons { justify-content: center; }
    .pfm-hero__station-card { display: none; }
    .pfm-news-grid, .pfm-archive-grid, .pfm-archive-grid--custom { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pfm-request-card { grid-template-columns: auto 1fr; padding: 35px; }
    .pfm-request-card > .pfm-button { grid-column: 2; justify-self: start; }
    .pfm-layout { grid-template-columns: 1fr; }
    .pfm-sidebar { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }
    .pfm-contact-grid { grid-template-columns: 1fr; }
    .pfm-mobile-player { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9998; height: 70px; display: grid; grid-template-columns: 52px minmax(0,1fr) 44px; align-items: center; gap: 12px; padding: 9px 15px; color: var(--pfm-white); background: rgba(7,20,47,.97); border-top: 2px solid var(--pfm-primary); box-shadow: 0 -10px 30px rgba(7,20,47,.22); backdrop-filter: blur(12px); }
    .pfm-mobile-player__play { width: 48px; height: 48px; display: grid; place-items: center; color: var(--pfm-primary); background: var(--pfm-white); border: 0; border-radius: 50%; }
    .pfm-mobile-player__play .pfm-icon { width: 22px; height: 22px; }
    .pfm-mobile-player__info { min-width: 0; display: grid; line-height: 1.15; }
    .pfm-mobile-player__info small { margin-bottom: 4px; color: var(--pfm-accent); font-size: .62rem; font-weight: 900; letter-spacing: .1em; }
    .pfm-mobile-player__info strong { overflow: hidden; font-size: .78rem; white-space: nowrap; text-overflow: ellipsis; }
    .pfm-volume-toggle { width: 42px; height: 42px; display: grid; place-items: center; color: var(--pfm-white); background: transparent; border: 0; }
    .pfm-volume-toggle .pfm-icon { width: 22px; height: 22px; }
    .pfm-back-to-top { bottom: 88px; }
}

@media (max-width: 640px) {
    body { font-size: 15px; }
    .pfm-container, .pfm-narrow { width: min(calc(100% - 24px), var(--pfm-container)); }
    .pfm-branding-row { min-height: 86px; }
    .pfm-site-logo { max-width: 195px; max-height: 66px; }
    .pfm-header-frequency { gap: 8px; padding: 8px 10px; border-radius: 10px; }
    .pfm-header-frequency > span { display: none; }
    .pfm-header-frequency small { font-size: .58rem; }
    .pfm-header-frequency strong { font-size: 1rem; }
    .pfm-hero { min-height: 540px; }
    .pfm-hero__inner { min-height: 540px; padding: 54px 28px 70px; }
    .pfm-hero h1, .pfm-hero h2 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
    .pfm-hero__content > p { font-size: 1rem; }
    .pfm-hero__arrow { width: 40px; height: 40px; }
    .pfm-hero__arrow--prev { left: 8px; }
    .pfm-hero__arrow--next { right: 8px; }
    .pfm-section { padding: 62px 0; }
    .pfm-section-heading { align-items: flex-start; margin-bottom: 26px; }
    .pfm-section-heading .pfm-text-link { display: none; }
    .pfm-news-grid, .pfm-archive-grid, .pfm-archive-grid--custom, .pfm-program-grid, .pfm-team-grid { grid-template-columns: 1fr; }
    .pfm-news-card h3 { font-size: 1.55rem; }
    .pfm-request-section { padding: 35px 0; }
    .pfm-request-card { grid-template-columns: 1fr; gap: 20px; padding: 30px 24px; text-align: center; }
    .pfm-request-card__icon { width: 76px; height: 76px; margin-inline: auto; }
    .pfm-request-card > .pfm-button { grid-column: auto; justify-self: stretch; }
    .pfm-team-card { max-width: 320px; margin-inline: auto; }
    .pfm-footer__grid { grid-template-columns: 1fr; gap: 35px; padding-top: 52px; padding-bottom: 45px; }
    .pfm-footer__bottom .pfm-container { flex-direction: column; gap: 7px; text-align: center; }
    .pfm-page-hero, .pfm-single__header { padding: 54px 0; }
    .pfm-single__header h1 { font-size: 2.45rem; }
    .pfm-post-meta { gap: 10px 15px; }
    .pfm-entry-content { font-size: 1.04rem; }
    .pfm-program-details { grid-template-columns: 1fr; }
    .pfm-post-navigation { grid-template-columns: 1fr; }
    .pfm-post-navigation__next { text-align: left; }
    .pfm-sidebar { grid-template-columns: 1fr; }
    .pfm-search-submit { min-width: 52px; padding-inline: 14px; }
    .pfm-search-submit span { display: none; }
    .pfm-contact-content { padding: 24px; }
    .comment-list .children { margin-left: 15px; padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
