:root {
    --rf-ink: #152027;
    --rf-deep: #08131a;
    --rf-night: #0b1b24;
    --rf-paper: #f3f0e8;
    --rf-soft: #dfddd5;
    --rf-line: rgba(21, 32, 39, 0.16);
    --rf-amber: #e69b3a;
    --rf-amber-light: #ffc675;
    --rf-blue: #8db9ca;
    --rf-display: Georgia, "Times New Roman", serif;
    --rf-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.rf-standalone,
.radioaficion-active {
    background: var(--rf-paper);
    color: var(--rf-ink);
    font-family: var(--rf-sans);
}

body.rf-standalone {
    margin: 0;
    overflow-x: hidden;
}

body.rf-standalone a,
.radioaficion-active a {
    color: inherit;
}

body.rf-standalone img,
.radioaficion-active img {
    max-width: 100%;
    height: auto;
}

.rf-skip {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    background: #fff;
    color: #111;
    transform: translateY(-160%);
}

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

.rf-site-header {
    position: relative;
    z-index: 30;
    display: grid;
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
    align-items: center;
    min-height: 76px;
    padding: 0 4.5vw;
    background: var(--rf-deep);
    color: #f7f3eb;
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.rf-site-mark,
.rf-footer-mark {
    display: inline-flex;
    align-items: baseline;
    width: max-content;
    text-decoration: none;
    letter-spacing: -.045em;
    font-size: 24px;
    line-height: 1;
}

.rf-site-mark b,
.rf-footer-mark b {
    color: var(--rf-amber-light);
    font-weight: 650;
}

.rf-site-mark i {
    display: block;
    width: 6px;
    height: 6px;
    margin-left: 10px;
    background: var(--rf-amber);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--rf-amber);
}

.rf-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 38px);
}

.rf-nav a,
.rf-header-action {
    color: rgba(255,255,255,.76);
    text-decoration: none;
    font-size: 12px;
    font-weight: 680;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.rf-nav a:hover,
.rf-nav a:focus,
.rf-header-action:hover,
.rf-header-action:focus {
    color: var(--rf-amber-light);
}

.rf-header-action {
    justify-self: end;
}

.rf-publication {
    width: 100%;
    overflow: hidden;
}

.rf-kicker,
.rf-eyebrow,
.rf-post-label {
    margin: 0;
    color: #8e5d1f;
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .18em;
    line-height: 1.35;
    text-transform: uppercase;
}

.rf-hero {
    position: relative;
    width: 100vw;
    min-height: calc(100svh - 76px);
    margin-left: calc(50% - 50vw);
    display: grid;
    align-items: center;
    isolation: isolate;
    background: var(--rf-deep);
    color: #f8f4eb;
}

.rf-hero-image,
.rf-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.rf-hero-image {
    z-index: -3;
    object-fit: cover;
    object-position: center;
    transform: scale(1.025) translate3d(0, var(--rf-parallax, 0px), 0);
    transition: transform .12s linear;
}

.rf-hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3,10,15,.96) 0%, rgba(5,14,20,.86) 30%, rgba(7,16,22,.35) 61%, rgba(6,12,16,.12) 100%),
        linear-gradient(0deg, rgba(4,10,14,.68), transparent 52%);
}

.rf-hero-copy {
    width: min(1180px, calc(100% - 10vw));
    margin: 0 auto;
    padding: clamp(76px, 11vh, 130px) 0 130px;
}

.rf-hero-brand {
    margin: 0 0 24px;
    font-size: clamp(52px, 6.7vw, 112px);
    font-weight: 300;
    letter-spacing: -.065em;
    line-height: .86;
}

.rf-hero-brand span {
    color: var(--rf-amber-light);
}

.rf-hero .rf-eyebrow {
    color: var(--rf-amber-light);
}

.rf-hero h1 {
    max-width: 760px;
    margin: 20px 0 22px;
    color: #fff;
    font-family: var(--rf-display);
    font-size: clamp(48px, 5.1vw, 84px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .96;
}

.rf-lede {
    max-width: 590px;
    margin: 0;
    color: rgba(255,255,255,.73);
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.62;
}

.rf-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 38px;
}

.rf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    background: var(--rf-amber);
    color: #111b20 !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 780;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.rf-button:hover,
.rf-button:focus {
    background: var(--rf-amber-light);
    transform: translateY(-2px);
}

.rf-button-light {
    background: #f8f4ea;
}

.rf-quiet-link {
    color: rgba(255,255,255,.78) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,.28);
    padding-bottom: 5px;
    transition: color .2s ease, border-color .2s ease;
}

.rf-quiet-link:hover,
.rf-quiet-link:focus {
    color: var(--rf-amber-light) !important;
    border-color: var(--rf-amber-light);
}

.rf-hero-scale {
    position: absolute;
    right: 4.5vw;
    bottom: 34px;
    left: 4.5vw;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.36);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
}

.rf-hero-scale i {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(230,155,58,.45));
}

.rf-intro,
.rf-section-head {
    width: min(1180px, calc(100% - 10vw));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(140px, .35fr) minmax(0, 1fr);
    gap: clamp(36px, 7vw, 120px);
}

.rf-intro {
    padding: clamp(90px, 12vw, 170px) 0;
    align-items: start;
}

.rf-intro h2,
.rf-section-head h2,
.rf-final h2,
.rf-signal-sticky h2,
.rf-route h2,
.rf-related h2 {
    margin: 0;
    font-family: var(--rf-display);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1.03;
}

.rf-intro h2 {
    font-size: clamp(42px, 5.4vw, 80px);
}

.rf-intro p:last-child {
    max-width: 680px;
    margin: 28px 0 0;
    color: #5f6668;
    font-size: 18px;
    line-height: 1.68;
}

.rf-entry-list {
    width: min(1180px, calc(100% - 10vw));
    margin: 0 auto;
    border-top: 1px solid var(--rf-line);
}

.rf-entry {
    position: relative;
    display: grid;
    grid-template-columns: minmax(90px, .26fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 80px);
    padding: clamp(36px, 5vw, 64px) 0;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--rf-line);
}

.rf-entry::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--rf-amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .38s ease;
}

.rf-entry:hover::after,
.rf-entry:focus::after {
    transform: scaleX(1);
}

.rf-entry-number {
    color: #8c9392;
    font-size: 12px;
    font-weight: 740;
    letter-spacing: .16em;
}

.rf-entry h3 {
    margin: 0;
    font-family: var(--rf-display);
    font-size: clamp(30px, 3.2vw, 50px);
    font-weight: 400;
    letter-spacing: -.035em;
}

.rf-entry p {
    max-width: 700px;
    margin: 14px 0 22px;
    color: #666d6f;
    font-size: 16px;
    line-height: 1.65;
}

.rf-entry b,
.rf-text-link {
    color: #8e5d1f;
    font-size: 12px;
    font-weight: 770;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.rf-signal-path {
    width: min(1180px, calc(100% - 10vw));
    margin: clamp(110px, 15vw, 210px) auto;
    display: grid;
    grid-template-columns: minmax(250px, .75fr) minmax(0, 1.2fr);
    gap: clamp(50px, 9vw, 150px);
    align-items: start;
}

.rf-signal-sticky {
    position: sticky;
    top: 34px;
}

.rf-signal-sticky h2 {
    margin-top: 18px;
    font-size: clamp(39px, 4.4vw, 64px);
}

.rf-signal-sticky > p:last-child {
    color: #656c6e;
    line-height: 1.65;
}

.rf-signal-steps,
.rf-route-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rf-signal-steps li,
.rf-route-steps li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 22px;
    padding: 30px 0;
    border-top: 1px solid var(--rf-line);
}

.rf-signal-steps li:last-child,
.rf-route-steps li:last-child {
    border-bottom: 1px solid var(--rf-line);
}

.rf-signal-steps li > span,
.rf-route-steps li > span {
    color: #9b6b2e;
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .16em;
}

.rf-signal-steps h3,
.rf-route-steps h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 680;
}

.rf-signal-steps p,
.rf-route-steps p {
    margin: 8px 0 0;
    color: #686f71;
    line-height: 1.65;
}

.rf-posts {
    width: min(1180px, calc(100% - 10vw));
    margin: clamp(110px, 14vw, 190px) auto 0;
}

.rf-section-head {
    width: 100%;
    margin-bottom: 56px;
}

.rf-section-head h2 {
    font-size: clamp(40px, 4.8vw, 70px);
}

.rf-section-head p:last-child {
    max-width: 650px;
    color: #646b6d;
    line-height: 1.65;
}

.rf-post-list {
    display: block;
    visibility: visible;
    opacity: 1;
    border-top: 1px solid var(--rf-line);
}

.rf-post {
    display: grid;
    grid-template-columns: minmax(220px, .7fr) minmax(0, 1.2fr);
    gap: clamp(34px, 7vw, 100px);
    padding: clamp(40px, 5vw, 70px) 0;
    visibility: visible;
    opacity: 1;
    border-bottom: 1px solid var(--rf-line);
}

.rf-post-no-media {
    grid-template-columns: minmax(90px, .3fr) minmax(0, 1.2fr);
}

.rf-post-no-media::before {
    content: "ON AIR";
    align-self: start;
    width: max-content;
    padding-top: 6px;
    color: #9a682b;
    font-size: 10px;
    font-weight: 760;
    letter-spacing: .18em;
}

.rf-post-media {
    display: block;
    align-self: start;
    overflow: hidden;
    background: var(--rf-night);
}

.rf-post-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .45s ease, opacity .3s ease;
}

.rf-post-media:hover img {
    transform: scale(1.025);
    opacity: .88;
}

.rf-post-body h3 {
    margin: 12px 0 18px;
    font-family: var(--rf-display);
    font-size: clamp(30px, 3.25vw, 50px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.rf-post-body h3 a,
.rf-text-link {
    text-decoration: none;
}

.rf-post-preview {
    color: #525b5e;
    font-size: 16px;
    line-height: 1.7;
}

.rf-post-preview > *:first-child {
    margin-top: 0;
}

.rf-post-preview a {
    text-decoration-color: var(--rf-amber);
    text-underline-offset: 3px;
}

.rf-text-link {
    display: inline-block;
    margin-top: 20px;
}

.rf-final {
    width: 100vw;
    margin: clamp(110px, 14vw, 190px) 0 0 calc(50% - 50vw);
    padding: clamp(80px, 10vw, 140px) max(5vw, calc((100vw - 1180px) / 2));
    background: var(--rf-night);
    color: #f8f4eb;
}

.rf-final .rf-kicker {
    color: var(--rf-amber-light);
}

.rf-final h2 {
    max-width: 890px;
    margin-top: 16px;
    font-size: clamp(45px, 5.5vw, 78px);
}

.rf-final > p:not(.rf-kicker) {
    max-width: 600px;
    color: rgba(255,255,255,.66);
    line-height: 1.65;
}

.rf-site-footer {
    display: grid;
    grid-template-columns: 1.2fr .6fr 1fr;
    gap: clamp(34px, 7vw, 110px);
    padding: 76px 4.5vw;
    background: var(--rf-deep);
    color: rgba(255,255,255,.68);
    border-top: 1px solid rgba(255,255,255,.09);
}

.rf-site-footer p {
    max-width: 420px;
    font-size: 13px;
    line-height: 1.65;
}

.rf-site-footer nav {
    display: grid;
    gap: 11px;
    align-content: start;
}

.rf-site-footer nav a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 12px;
}

.rf-footer-note {
    margin-top: 0;
    color: rgba(255,255,255,.42);
}

/* Standalone route pages */
.rf-route-hero {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: flex-end;
    padding: 90px max(5vw, calc((100vw - 1180px) / 2)) 80px;
    overflow: hidden;
    background: var(--rf-night);
    color: #f8f4eb;
}

.rf-route-grid {
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image:
        linear-gradient(rgba(141,185,202,.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141,185,202,.18) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.rf-route-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 110px;
    background: linear-gradient(transparent, rgba(5,12,16,.55));
}

.rf-route-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.rf-breadcrumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 70px;
    color: rgba(255,255,255,.46);
    font-size: 11px;
    font-weight: 680;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.rf-breadcrumbs a {
    color: var(--rf-amber-light) !important;
    text-decoration: none;
}

.rf-route-hero .rf-eyebrow {
    color: var(--rf-amber-light);
}

.rf-route-hero h1 {
    max-width: 900px;
    margin: 18px 0 20px;
    color: #fff;
    font-family: var(--rf-display);
    font-size: clamp(48px, 6.6vw, 94px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .96;
}

.rf-route-intro {
    max-width: 750px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: clamp(16px, 1.45vw, 21px);
    line-height: 1.65;
}

.rf-route-dial {
    position: absolute;
    right: 5vw;
    top: 52%;
    z-index: 1;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    transform: translateY(-50%);
}

.rf-route-dial::before,
.rf-route-dial::after {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px dashed rgba(230,155,58,.34);
    border-radius: 50%;
}

.rf-route-dial::after {
    inset: 64px;
    border-style: solid;
}

.rf-route-dial i {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 2px;
    height: 36px;
    background: var(--rf-amber-light);
    transform-origin: 0 107px;
    transform: rotate(43deg);
}

.rf-route-dial span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.4);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: .18em;
}

.rf-article-layout {
    width: min(1180px, calc(100% - 10vw));
    margin: clamp(80px, 10vw, 140px) auto;
    display: grid;
    grid-template-columns: minmax(210px, .42fr) minmax(0, 1fr);
    gap: clamp(54px, 9vw, 140px);
    align-items: start;
}

.rf-article-aside {
    position: sticky;
    top: 30px;
}

.rf-article-aside dl {
    margin: 22px 0 0;
}

.rf-article-aside dl > div {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid var(--rf-line);
}

.rf-article-aside dt {
    color: #8b9090;
    font-size: 10px;
    font-weight: 720;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.rf-article-aside dd {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
}

.rf-aside-note {
    margin-top: 24px;
    padding-left: 14px;
    color: #6e7475;
    font-size: 12px;
    line-height: 1.6;
    border-left: 2px solid var(--rf-amber);
}

.rf-article-copy > section {
    margin-bottom: 84px;
}

.rf-article-copy h2 {
    max-width: 760px;
    margin: 16px 0 24px;
    font-size: clamp(38px, 4.5vw, 66px);
}

.rf-article-copy > section > p:not(.rf-kicker) {
    max-width: 770px;
    color: #555e60;
    font-size: 18px;
    line-height: 1.7;
}

.rf-route-steps {
    margin-top: 44px;
}

.rf-safety-note {
    padding: clamp(38px, 5vw, 66px);
    background: #1a2930;
    color: #f6f1e7;
}

.rf-safety-note .rf-kicker {
    color: var(--rf-amber-light);
}

.rf-safety-note h2 {
    font-size: clamp(34px, 4vw, 54px);
}

.rf-safety-note > p:not(.rf-kicker) {
    color: rgba(255,255,255,.67) !important;
}

.rf-related {
    width: min(1180px, calc(100% - 10vw));
    margin: 0 auto clamp(90px, 12vw, 160px);
}

.rf-related h2 {
    margin: 14px 0 32px;
    font-size: clamp(38px, 4.5vw, 64px);
}

.rf-related > div {
    border-top: 1px solid var(--rf-line);
}

.rf-related a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    text-decoration: none;
    border-bottom: 1px solid var(--rf-line);
    transition: padding .25s ease, color .25s ease;
}

.rf-related a:hover,
.rf-related a:focus {
    padding-left: 12px;
    color: #8e5d1f;
}

.rf-related a span {
    font-family: var(--rf-display);
    font-size: clamp(22px, 2.5vw, 34px);
}

.rf-route-final {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    padding: clamp(70px, 9vw, 120px) max(5vw, calc((100vw - 1180px) / 2));
    background: var(--rf-night);
    color: #f8f4eb;
}

.rf-route-final .rf-kicker {
    color: var(--rf-amber-light);
}

.rf-route-final h2 {
    margin-top: 14px;
    font-size: clamp(38px, 4.8vw, 66px);
}

/* GeneratePress home integration */
.radioaficion-active #page,
.radioaficion-active .site-content,
.radioaficion-active #primary,
.radioaficion-active #main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.radioaficion-active #right-sidebar,
.radioaficion-active .widget-area {
    display: none !important;
}

.radioaficion-active .site-header,
.radioaficion-active .site-info {
    position: relative;
    z-index: 20;
    background: var(--rf-deep);
    color: #f7f3eb;
}

.radioaficion-active .inside-header {
    min-height: 76px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.radioaficion-active .main-title,
.radioaficion-active .main-title a {
    color: #f7f3eb;
    font-size: 24px;
    font-weight: 420;
    letter-spacing: -.04em;
    text-decoration: none;
}

.radioaficion-active .site-description {
    color: rgba(255,255,255,.5);
    font-size: 11px;
    letter-spacing: .07em;
}

.radioaficion-active .site-info {
    border-top: 1px solid rgba(255,255,255,.09);
}

.radioaficion-active .copyright-bar {
    color: rgba(255,255,255,.5);
}

/* Motion enhances visible content; it is never the accessibility baseline. */
.rf-motion .rf-hero-copy {
    opacity: 0;
    transform: translateY(20px);
}

.rf-motion.rf-ready .rf-hero-copy {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1);
}

.rf-motion .rf-reveal {
    opacity: 0;
    transform: translateY(24px);
}

.rf-motion .rf-reveal.rf-in-view {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.25,1);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .rf-motion .rf-hero-copy,
    .rf-motion.rf-ready .rf-hero-copy,
    .rf-motion .rf-reveal,
    .rf-motion .rf-reveal.rf-in-view {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .rf-hero-image { transform: none; transition: none; }
}

@media (max-width: 960px) {
    .rf-site-header {
        grid-template-columns: 1fr auto;
    }
    .rf-nav { display: none; }
    .rf-route-dial { opacity: .4; right: -80px; }
    .rf-site-footer { grid-template-columns: 1fr 1fr; }
    .rf-footer-note { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .rf-site-header {
        min-height: 66px;
        padding: 0 22px;
    }
    .rf-site-mark { font-size: 21px; }
    .rf-header-action { font-size: 9px; letter-spacing: .08em; }
    .rf-hero {
        min-height: calc(100svh - 66px);
        align-items: end;
    }
    .rf-hero-image {
        object-position: 63% center;
    }
    .rf-hero-shade {
        background: linear-gradient(0deg, rgba(3,9,13,.98) 0%, rgba(4,11,16,.86) 48%, rgba(4,11,16,.2) 100%);
    }
    .rf-hero-copy {
        width: calc(100% - 40px);
        padding: 82px 0 92px;
    }
    .rf-hero-brand { font-size: 50px; margin-bottom: 16px; }
    .rf-hero h1 { font-size: clamp(42px, 12.8vw, 62px); }
    .rf-lede { font-size: 15px; line-height: 1.55; }
    .rf-actions { align-items: stretch; gap: 17px; margin-top: 28px; }
    .rf-button { width: 100%; }
    .rf-quiet-link { width: max-content; max-width: 100%; }
    .rf-hero-scale { right: 20px; bottom: 20px; left: 20px; }
    .rf-hero-scale span:nth-of-type(2),
    .rf-hero-scale span:nth-of-type(3),
    .rf-hero-scale i:nth-of-type(2),
    .rf-hero-scale i:nth-of-type(3) { display: none; }

    .rf-intro,
    .rf-section-head,
    .rf-signal-path,
    .rf-article-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .rf-intro,
    .rf-entry-list,
    .rf-signal-path,
    .rf-posts,
    .rf-related,
    .rf-article-layout {
        width: calc(100% - 40px);
    }
    .rf-intro { padding: 78px 0; }
    .rf-intro h2 { font-size: 43px; }
    .rf-entry { grid-template-columns: 42px minmax(0,1fr); gap: 17px; padding: 34px 0; }
    .rf-entry h3 { font-size: 30px; }
    .rf-signal-path { margin-top: 90px; margin-bottom: 90px; }
    .rf-signal-sticky,
    .rf-article-aside { position: static; }
    .rf-signal-sticky h2 { font-size: 42px; }
    .rf-section-head h2 { font-size: 43px; }
    .rf-post { grid-template-columns: 1fr; gap: 26px; }
    .rf-post-no-media { grid-template-columns: 1fr; }
    .rf-post-body h3 { font-size: 32px; }
    .rf-final {
        padding: 74px 20px;
    }
    .rf-final h2 { font-size: 45px; }

    .rf-route-hero {
        min-height: 500px;
        padding: 70px 20px 55px;
    }
    .rf-breadcrumbs { margin-bottom: 48px; }
    .rf-route-hero h1 { font-size: clamp(43px, 13.4vw, 64px); overflow-wrap: anywhere; }
    .rf-route-dial { display: none; }
    .rf-article-layout { margin-top: 72px; margin-bottom: 90px; }
    .rf-article-aside { order: 2; }
    .rf-article-copy h2 { font-size: 41px; }
    .rf-article-copy > section > p:not(.rf-kicker) { font-size: 16px; }
    .rf-safety-note { padding: 32px 24px; }
    .rf-related h2 { font-size: 40px; }
    .rf-route-final {
        align-items: stretch;
        flex-direction: column;
        padding: 70px 20px;
    }
    .rf-route-final .rf-button { width: 100%; }
    .rf-site-footer {
        grid-template-columns: 1fr;
        padding: 58px 22px;
    }
    .rf-footer-note { grid-column: auto; }
    .radioaficion-active .inside-header { min-height: 66px; padding-right: 20px; padding-left: 20px; }
}

