/*
Theme Name: Quest FM
Theme URI: https://questfm.nl/
Author: Quest FM
Description: Modern responsive WordPress theme for Quest FM – Your 4 Seasons Internet Radio. Includes the supplied seasonal radio header and a built-in live player area.
Version: 1.0.0
Requires at least: 6.6
Tested up to: 6.8
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: quest-fm
*/

:root {
  --qf-red: #e31b23;
  --qf-blue: #0759d9;
  --qf-dark: #07090d;
  --qf-card: rgba(8, 12, 20, .88);
  --qf-text: #f5f7fb;
  --qf-muted: #b8c0ce;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #05070b;
  color: var(--qf-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

.qf-wrap {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.qf-topbar {
  background: #05070b;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: var(--qf-muted);
}
.qf-topbar .qf-wrap {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qf-topbar strong { color: #fff; }

.qf-header {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.04) 45%, rgba(0,0,0,.9) 100%),
    url('assets/headerbreed.png');
  background-size: cover;
  background-position: center top;
  border-bottom: 3px solid var(--qf-red);
}
.qf-header-inner {
  width: 100%;
  padding: 30px 0 24px;
}
.qf-brand-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
}
.qf-brand-dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: #ff1d25;
  box-shadow: 0 0 18px #ff1d25;
  animation: qf-pulse 1.5s infinite;
}
.qf-brand-title { font-weight: 800; letter-spacing: .08em; }
.qf-brand-sub { color: #ddd; font-size: 13px; }

@keyframes qf-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.82); }
}

.qf-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,7,11,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.qf-nav .qf-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  gap: 20px;
}
.qf-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
}
.qf-menu a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
}
.qf-menu a:hover { background: rgba(255,255,255,.1); color: #fff; }

.qf-live {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.qf-live span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff1d25;
  box-shadow: 0 0 12px #ff1d25;
}

.qf-player {
  background: linear-gradient(135deg, #0a0e16, #151b28);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
}
.qf-player-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.qf-player-title {
  font-size: 13px;
  color: var(--qf-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.qf-player-now {
  font-size: 18px;
  font-weight: 800;
}
.qf-player audio { width: min(420px, 100%); }

.qf-main { padding: 48px 0; }
.qf-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
}
.qf-card {
  background: var(--qf-card);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}
.qf-card h1, .qf-card h2, .qf-card h3 { margin-top: 0; }
.qf-card h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}
.qf-card h2 { font-size: 25px; }
.qf-button {
  display: inline-block;
  background: var(--qf-red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 9px;
  box-shadow: 0 7px 20px rgba(227,27,35,.25);
}
.qf-button:hover { filter: brightness(1.1); }

.qf-seasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.qf-season {
  min-height: 110px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.1);
}
.qf-season strong { display:block; font-size: 18px; }
.qf-season small { color: var(--qf-muted); }

.qf-widget-title {
  margin: 0 0 12px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.qf-sidebar ul { margin: 0; padding-left: 18px; }

.qf-footer {
  background: #030407;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 34px 0;
}
.qf-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.qf-footer p { margin: 4px 0; color: var(--qf-muted); }
.qf-footer .qf-brand-title { font-size: 18px; }

@media (max-width: 400px) {
  .qf-header { min-height: 380px; }
  .qf-content { grid-template-columns: 1fr; }
  .qf-player-inner { grid-template-columns: 1fr; }
  .qf-seasons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .qf-wrap {
    width: calc(100% - 22px);
    display: grid;
    grid-template-columns: 1fr;
}
  .qf-header { min-height: 300px; background-position: center top; }
  .qf-nav .qf-wrap { align-items: flex-start; padding: 8px 0; flex-direction: column; }
  .qf-menu { width: 100%; }
  .qf-menu a { padding: 6px 8px; font-size: 13px; }
  .qf-seasons { grid-template-columns: 1fr; }
  .qf-card { padding: 20px; }
  .qf-footer-grid { grid-template-columns: 1fr; }
}

/* Quest FM Player - always visible on desktop, tablet and mobile */
.qf-player {
  display: block !important;
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: 92px;
  background: linear-gradient(135deg, #070b13 0%, #111a2a 55%, #080b12 100%);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 2px solid #e31b23;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.qf-player-inner {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
  min-height: 92px;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 22px !important;
}
.qf-player-info { min-width: 0; flex: 1 1 auto; }
.qf-player-title { font-size: 12px; color: #d9e1ef; text-transform: uppercase; letter-spacing: .12em; }
.qf-player-now { font-size: 17px; font-weight: 800; line-height: 1.3; margin-top: 3px; }
.qf-player-status { font-size: 12px; color: #9eabc0; margin-top: 3px; }
.qf-player-controls { display: flex !important; align-items: center; gap: 12px; flex: 0 0 auto; }
.qf-play-button {
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: #e31b23; color: #fff; font-size: 18px; font-weight: 900;
  box-shadow: 0 0 0 4px rgba(227,27,35,.16), 0 7px 22px rgba(0,0,0,.4);
}
.qf-play-button:hover { filter: brightness(1.12); transform: translateY(-1px); }
.qf-play-button:disabled { opacity: .55; cursor: not-allowed; }
.qf-pause-icon { display: none; }
.qf-play-button.is-playing .qf-play-icon { display: none; }
.qf-play-button.is-playing .qf-pause-icon { display: inline; }
.qf-audio-wrap { min-width: 320px; }
.qf-player audio { display: block !important; visibility: visible !important; opacity: 1 !important; width: 360px !important; max-width: 100% !important; height: 42px !important; }

@media (max-width: 760px) {
  .qf-player-inner { flex-direction: column !important; align-items: stretch !important; padding: 14px 0; gap: 10px !important; }
  .qf-player-controls { width: 100%; }
  .qf-audio-wrap { flex: 1; min-width: 0; }
  .qf-player audio { width: 100% !important; }
}
/* =========================================
   QUEST RADIO - PROGRAMMA PAGINA
   ========================================= */

.qf-programma {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px 50px;
    box-sizing: border-box;
}

.qf-programma-intro {
    margin-bottom: 30px;
}

.qf-programma-intro h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
}

.qf-programma-intro p {
    margin: 0;
    color: #b9c0ca;
    font-size: 17px;
}

/* Programmadag */
.qf-day {
    display: grid;
    grid-template-columns: 210px 1fr;
    margin-bottom: 18px;
    overflow: hidden;
    background: #101720;
    border: 1px solid #29313b;
    border-radius: 10px;
}

/* Linkerkant */
.qf-day-name {
    min-height: 120px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #121b25;
    border-left: 3px solid #ed1c24;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
}

/* Kalendericoon */
.qf-calendar {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    border: 2px solid #ed1c24;
    border-radius: 4px;
    position: relative;
    font-size: 0;
}

.qf-calendar::before,
.qf-calendar::after {
    content: "";
    position: absolute;
    top: -5px;
    width: 3px;
    height: 7px;
    background: #ed1c24;
}

.qf-calendar::before {
    left: 6px;
}

.qf-calendar::after {
    right: 6px;
}

.qf-calendar {
    background:
        linear-gradient(#ed1c24, #ed1c24) 0 7px / 100% 2px no-repeat;
}

/* Rechterkant */
.qf-shows {
    padding: 0 24px;
}

.qf-show {
    min-height: 88px;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    border-bottom: 1px solid #29313b;
}

.qf-show:last-child {
    border-bottom: none;
}

/* Tijd + klok */
.qf-time {
    position: relative;
    padding-left: 28px;
    color: #d7dce3;
    font-size: 16px;
}

.qf-time::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    border: 2px solid #ed1c24;
    border-radius: 50%;
}

.qf-time::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    width: 5px;
    height: 2px;
    background: #ed1c24;
    transform: translateY(-50%);
}

/* Programma info */
.qf-info {
    display: flex;
    flex-direction: column;
}

.qf-info strong {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
}

.qf-info span {
    color: #b9c0ca;
    font-size: 15px;
}

/* Onderste blok */
.qf-nonstop {
    margin-top: 25px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #101720;
    border: 1px solid #29313b;
    border-radius: 10px;
}

.qf-note {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ed1c24;
    border-radius: 50%;
    color: #ffffff;
    font-size: 28px;
}

.qf-nonstop strong {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.qf-nonstop p {
    margin: 5px 0 0;
    color: #b9c0ca;
}

/* Mobiel */
@media (max-width: 800px) {
    .qf-programma {
        padding: 20px 12px 40px;
    }

    .qf-programma-intro h2 {
        font-size: 30px;
    }

    .qf-day {
        grid-template-columns: 1fr;
    }

    .qf-day-name {
        min-height: auto;
        padding: 16px;
    }

    .qf-shows {
        padding: 0 15px;
    }

    .qf-show {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 0;
    }
}
/* Dubbele titel Programma verbergen */
.qf-programma-intro h2 {
    display: none;
}
/* Quest Radio - ruimte boven programma verkleinen */

body.page .qf-programma {
    padding-top: 5px;
}

.qf-programma-intro {
    margin-top: 0;
    padding-top: 0;
}

.qf-programma-intro p {
    margin-top: 0;
}
/* QUEST FM - homepage breder en netter */

main .qf-card {
    max-width: 1150px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

main .qf-card h1 {
    margin-top: 0;
}

main {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 800px) {
    main {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* =========================================
   QUEST FM - VOLLEDIGE BREEDTE ZONDER SIDEBAR
   ========================================= */

.qf-main .qf-wrap {
    display: block;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 35px 25px;
    box-sizing: border-box;
}

.qf-main .qf-content {
    width: 100%;
    max-width: none;
    min-width: 0;
}

.qf-main .qf-card {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

/* Programmapagina */
.qf-programma {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

/* =========================================
   MOBIEL
   ========================================= */

@media (max-width: 768px) {

    .qf-main .qf-wrap {
        width: 100%;
        padding: 18px 12px;
    }

    .qf-main .qf-card {
        width: 100%;
        padding: 20px 16px;
        border-radius: 8px;
    }

    .qf-main .qf-card h1 {
        font-size: 30px;
        line-height: 1.15;
    }

    .qf-programma {
        padding: 0;
    }

    .qf-day {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .qf-day-name {
        min-height: auto;
        padding: 15px;
    }

    .qf-show {
        grid-template-columns: 1fr;
        padding: 15px 0;
        gap: 8px;
    }

    .qf-shows {
        padding: 0 15px;
    }

    .qf-nonstop {
        width: 100%;
        box-sizing: border-box;
    }
}
/* QUEST FM - inhoud echt volledige breedte */

.qf-main,
.qf-main .qf-wrap,
.qf-main .qf-content {
    width: 100% !important;
    max-width: 100% !important;
}

.qf-main .qf-wrap {
    display: block !important;
    margin: 0 auto !important;
    padding: 40px 5vw !important;
    box-sizing: border-box !important;
}

.qf-main .qf-card {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Programma ook breed */
.qf-programma {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Mobiel */
@media (max-width: 768px) {
    .qf-main .qf-wrap {
        padding: 20px 12px !important;
    }

    .qf-main .qf-card {
        max-width: 100% !important;
        padding: 18px !important;
    }

    .qf-programma {
        max-width: 100% !important;
    }
}
/* =========================================
   QUEST FM - MOBIELE FIX
   ========================================= */

@media screen and (max-width: 768px) {

    /* Hoofdgedeelte volledige schermbreedte */
    .qf-main {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .qf-main .qf-wrap {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 22px 12px !important;
        box-sizing: border-box !important;
    }

    .qf-main .qf-content {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    /* Welkomstkaart */
    .qf-main .qf-card {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 20px 16px !important;
        box-sizing: border-box !important;
    }

    /* Normale tekstbreedte herstellen */
    .qf-card h1,
    .qf-card h2,
    .qf-card h3,
    .qf-card p,
    .qf-card div {
        width: auto !important;
        max-width: none !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
    }

    .qf-card h1 {
        font-size: 28px !important;
        line-height: 1.15 !important;
        margin-bottom: 22px !important;
    }

    .qf-card p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    /* Programmapagina */
    .qf-programma {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .qf-day {
        display: block !important;
        width: 100% !important;
    }

    .qf-day-name {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .qf-shows {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .qf-show {
        display: block !important;
        width: 100% !important;
        padding: 15px 0 !important;
    }

    .qf-time {
        margin-bottom: 8px !important;
    }
}
@media (max-width: 620px) {

    .qf-nav .qf-wrap {
        padding: 8px 12px !important;
    }

    .qf-menu {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px 10px !important;
        width: 100% !important;
    }

    .qf-menu li {
        margin: 0 !important;
    }

    .qf-menu a {
        padding: 8px 6px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    .qf-nav-status {
        margin-top: 10px !important;
        font-size: 14px !important;
    }
}
/* Quest FM mobiel hamburger menu */

.qf-menu-toggle {
    display: none;
}

@media (max-width: 620px) {

    .qf-menu-toggle {
        display: block;
        width: 100%;
        padding: 12px 14px;
        margin-bottom: 8px;

        background: #101720;
        color: #ffffff;

        border: 1px solid #29313b;
        border-radius: 6px;

        font-size: 16px;
        font-weight: 700;
        text-align: left;
        cursor: pointer;
    }

    .qf-menu {
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .qf-menu.qf-menu-open {
        display: flex !important;
    }

    .qf-menu li {
        width: 100% !important;
        margin: 0 !important;
        border-top: 1px solid #202833;
    }

    .qf-menu a {
        display: block !important;
        width: 100% !important;
        padding: 12px 8px !important;
        box-sizing: border-box;
    }

    .qf-live {
        margin-top: 10px;
    }
}
/* MOBIEL MENU - definitieve correctie */

@media screen and (max-width: 620px) {

    .qf-nav .qf-menu {
        display: none !important;
    }

    .qf-nav .qf-menu.qf-menu-open {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 8px 0 0 !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    .qf-nav .qf-menu.qf-menu-open li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .qf-nav .qf-menu.qf-menu-open a {
        display: block !important;
        width: 100% !important;
        padding: 12px 8px !important;
        box-sizing: border-box !important;
        border-bottom: 1px solid #202833;
    }

    .qf-menu-toggle {
        display: block !important;
        width: auto !important;
        padding: 10px 14px !important;
        margin: 0 !important;
    }

    .qf-live {
        margin-top: 14px !important;
    }
}
@media screen and (max-width: 620px) {

    .qf-header {
        min-height: 240px !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .qf-header-inner {
        min-height: 240px !important;
    }

    .qf-brand-card {
        transform: scale(0.9);
        transform-origin: left bottom;
    }
}
/* =========================================
   QUEST FM - CUSTOM RADIO PLAYER
   ========================================= */

.qf-player {
    background: linear-gradient(180deg, #111a26, #0d141e);
    border-top: 1px solid #27303b;
    border-bottom: 1px solid #ed1c24;
}

.qf-player-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.qf-player-info {
    min-width: 280px;
}

.qf-player-live {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;

    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.qf-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ed1c24;
    box-shadow: 0 0 10px rgba(237, 28, 36, 0.9);
}

.qf-player-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.qf-player-status {
    color: #9ca8b6;
    font-size: 14px;
}

.qf-player-controls {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: flex-end;
}

.qf-play-button {
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: #ed1c24;
    color: #ffffff;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 0 0 4px rgba(237, 28, 36, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.qf-play-button:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 0 5px rgba(237, 28, 36, 0.2),
        0 10px 28px rgba(0, 0, 0, 0.4);
}

.qf-play-icon,
.qf-pause-icon {
    font-size: 24px;
    line-height: 1;
}

.qf-pause-icon {
    display: none;
}

.qf-play-button.is-playing .qf-play-icon {
    display: none;
}

.qf-play-button.is-playing .qf-pause-icon {
    display: inline;
}

.qf-custom-audio {
    min-width: 360px;
    max-width: 520px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 14px 18px;

    background: #151e29;
    border: 1px solid #2a3440;
    border-radius: 14px;
}

.qf-stream-label {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.qf-stream-label strong {
    color: #ffffff;
    font-size: 15px;
}

.qf-stream-label span {
    margin-top: 3px;
    color: #8f9aa8;
    font-size: 12px;
}

.qf-volume-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.qf-volume-icon {
    font-size: 18px;
}

#qf-volume {
    width: 100%;
    accent-color: #ed1c24;
    cursor: pointer;
}

/* Mobiel */
@media (max-width: 620px) {

    .qf-player-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 18px 14px !important;
    }

    .qf-player-info {
        min-width: 0;
    }

    .qf-player-title {
        font-size: 18px;
    }

    .qf-player-controls {
        justify-content: flex-start;
        width: 100%;
    }

    .qf-play-button {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
    }

    .qf-custom-audio {
        min-width: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .qf-volume-box {
        width: 100%;
    }
}
/* =====================================
   QUEST FM - LUISTERLINKS
   ===================================== */

.qf-listen {
    width: 100%;
}

.qf-listen-intro {
    margin-bottom: 28px;
}

.qf-listen-intro h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 30px;
}

.qf-listen-intro p {
    color: #aeb8c5;
    line-height: 1.6;
}

.qf-quality-card {
    padding: 28px;
    background: #111a25;
    border: 1px solid #293442;
    border-left: 3px solid #ed1c24;
    border-radius: 12px;
}

.qf-quality-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.qf-quality-label {
    color: #ed1c24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.qf-quality-head h3 {
    margin: 5px 0;
    color: #fff;
    font-size: 24px;
}

.qf-quality-head p {
    margin: 0;
    color: #9da9b7;
}

.qf-quality-badge {
    min-width: 70px;
    padding: 12px 8px;
    text-align: center;
    color: #fff;
    background: #ed1c24;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.qf-quality-badge small {
    font-size: 11px;
    font-weight: 600;
}

.qf-listen-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.qf-listen-link {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px;

    color: #fff !important;
    text-decoration: none !important;

    background: #0c131c;
    border: 1px solid #283442;
    border-radius: 9px;

    transition: 0.2s ease;
}

.qf-listen-link:hover {
    border-color: #ed1c24;
    background: #151e29;
    transform: translateY(-2px);
}

.qf-listen-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    color: #fff;
    background: #ed1c24;
    border-radius: 50%;
}

.qf-listen-link span:last-child {
    display: flex;
    flex-direction: column;
}

.qf-listen-link strong {
    color: #fff;
    font-size: 15px;
}

.qf-listen-link small {
    margin-top: 3px;
    color: #8f9ba9;
    font-size: 12px;
}

/* Webplayer over volledige breedte */
.qf-listen-web {
    grid-column: 1 / -1;
}

/* Mobiel */
@media (max-width: 620px) {

    .qf-quality-card {
        padding: 18px;
    }

    .qf-quality-head {
        align-items: flex-start;
    }

    .qf-quality-head h3 {
        font-size: 21px;
    }

    .qf-listen-buttons {
        grid-template-columns: 1fr;
    }

    .qf-listen-web {
        grid-column: auto;
    }

    .qf-quality-badge {
        min-width: 58px;
        font-size: 18px;
    }
}
/* Ruimte tussen de 320 en 64 kbps stream */
.qf-mobile-stream {
    margin-top: 22px;
}
/* =====================================
   QUEST FM - DIRECT LUISTEREN
   ===================================== */

.qf-direct-listen {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    margin-top: 20px;
    padding: 13px 22px;

    background: #ed1c24;
    border: 1px solid #ff3940;
    border-radius: 9px;

    color: #fff !important;
    text-decoration: none !important;

    box-shadow: 0 6px 20px rgba(237, 28, 36, 0.18);
    transition: 0.2s ease;
}

.qf-direct-listen:hover {
    background: #ff252e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.28);
}

.qf-direct-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    background: rgba(0,0,0,0.18);
    border-radius: 50%;

    font-size: 15px;
}

.qf-direct-listen > span:last-child {
    display: flex;
    flex-direction: column;
}

.qf-direct-listen strong {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.qf-direct-listen small {
    margin-top: 2px;
    color: rgba(255,255,255,0.8);
    font-size: 11px;
}

.qf-other-title {
    margin: 25px 0 10px;
    color: #9da9b7;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobiel */
@media (max-width: 620px) {

    .qf-direct-listen {
        width: 100%;
        box-sizing: border-box;
    }
}
/* =========================================
   QUEST FM - MUZIEKRECHTEN
   ========================================= */

.qf-rights {
    width: 100%;
}

.qf-rights-intro {
    margin-bottom: 28px;
}

.qf-rights-intro h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 30px;
}

.qf-rights-intro p {
    margin: 0;
    color: #aeb8c5;
    line-height: 1.7;
}

/* Hoofdkaarten */
.qf-rights-card,
.qf-sponsors-card {
    padding: 28px;
    margin-bottom: 22px;

    background: #111a25;
    border: 1px solid #293442;
    border-left: 3px solid #ed1c24;
    border-radius: 12px;

    box-sizing: border-box;
}

.qf-rights-label {
    color: #ed1c24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.qf-rights-card h3,
.qf-sponsors-card h3 {
    margin: 6px 0 12px;
    color: #ffffff;
    font-size: 24px;
}

.qf-rights-card > p,
.qf-sponsors-card > p {
    color: #aeb8c5;
    line-height: 1.7;
}

/* BumaStemra + Sena */
.qf-rights-organisations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.qf-rights-box {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px;

    background: #0c131c;
    border: 1px solid #293442;
    border-radius: 9px;
}

.qf-rights-check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    background: #ed1c24;
    border-radius: 50%;

    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
}

.qf-rights-box > div:last-child {
    display: flex;
    flex-direction: column;
}

.qf-rights-box strong {
    color: #ffffff;
    font-size: 17px;
}

.qf-rights-box span {
    margin-top: 4px;
    color: #929eac;
    font-size: 13px;
}

/* Streaming */
.qf-rights-stream {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 16px;
    padding: 18px;

    background: #0c131c;
    border: 1px solid #293442;
    border-radius: 9px;
}

.qf-rights-stream > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    color: #ffffff;
    background: #ed1c24;
    border-radius: 50%;

    font-size: 21px;
}

.qf-rights-stream strong {
    color: #ffffff;
}

.qf-rights-stream p {
    margin: 4px 0 0;
    color: #929eac;
    line-height: 1.5;
}

/* Sponsors */
.qf-sponsor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;

    margin-top: 22px;
}

.qf-sponsor {
    padding: 14px 16px;

    background: #0c131c;
    border: 1px solid #293442;
    border-radius: 8px;

    color: #ffffff;
    font-weight: 600;
}

.qf-sponsor::before {
    content: "♥";
    margin-right: 10px;
    color: #ed1c24;
}

/* Bedankblok */
.qf-thanks {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 24px;
    padding: 20px;

    text-align: center;

    background: #0c131c;
    border-radius: 9px;
}

.qf-thanks strong {
    color: #ffffff;
    font-size: 18px;
}

.qf-thanks span {
    margin-top: 5px;
    color: #ed1c24;
    font-size: 13px;
    font-weight: 700;
}

/* Mobiel */
@media (max-width: 620px) {

    .qf-rights-card,
    .qf-sponsors-card {
        padding: 18px;
    }

    .qf-rights-intro h2 {
        font-size: 25px;
    }

    .qf-rights-card h3,
    .qf-sponsors-card h3 {
        font-size: 21px;
    }

    .qf-rights-organisations,
    .qf-sponsor-grid {
        grid-template-columns: 1fr;
    }

    .qf-rights-stream {
        align-items: flex-start;
    }
}
/* =========================================
   QUEST FM - CONTACT
   ========================================= */

.qf-contact {
    width: 100%;
}

.qf-contact-intro {
    margin-bottom: 28px;
}

.qf-contact-intro h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 30px;
}

.qf-contact-intro p {
    margin: 0;
    color: #aeb8c5;
    line-height: 1.7;
}

.qf-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.qf-contact-card {
    padding: 28px;
    background: #111a25;
    border: 1px solid #293442;
    border-left: 3px solid #ed1c24;
    border-radius: 12px;
    box-sizing: border-box;
}

.qf-contact-label {
    color: #ed1c24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.qf-contact-card h3 {
    margin: 6px 0 20px;
    color: #ffffff;
    font-size: 24px;
}

.qf-contact-item {
    display: flex;
    flex-direction: column;
    padding: 14px 0;
    border-bottom: 1px solid #293442;
}

.qf-contact-item strong {
    color: #ffffff;
    font-size: 15px;
}

.qf-contact-item span {
    margin-top: 4px;
    color: #9aa6b4;
}

.qf-contact-slogan {
    margin-top: 20px;
    padding: 14px;
    background: #0c131c;
    border-radius: 8px;
    color: #ed1c24;
    font-weight: 700;
    text-align: center;
}

.qf-form-placeholder {
    padding: 30px 20px;
    background: #0c131c;
    border: 1px dashed #3b4654;
    border-radius: 8px;
    color: #9aa6b4;
    text-align: center;
}

/* Mobiel */
@media (max-width: 620px) {

    .qf-contact-grid {
        grid-template-columns: 1fr;
    }

    .qf-contact-card {
        padding: 18px;
    }

    .qf-contact-intro h2 {
        font-size: 25px;
    }
}
/* =========================================
   QUEST FM - CONTACT FORM 7
   ========================================= */

.qf-contact-form-card .wpcf7 {
    width: 100%;
}

.qf-contact-form-card .wpcf7 p {
    margin: 0 0 16px;
}

.qf-contact-form-card .wpcf7 label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

/* Invoervelden */
.qf-contact-form-card .wpcf7 input[type="text"],
.qf-contact-form-card .wpcf7 input[type="email"],
.qf-contact-form-card .wpcf7 input[type="tel"],
.qf-contact-form-card .wpcf7 input[type="url"],
.qf-contact-form-card .wpcf7 textarea,
.qf-contact-form-card .wpcf7 select {
    width: 100%;
    margin-top: 7px;
    padding: 13px 14px;

    background: #0c131c;
    color: #ffffff;

    border: 1px solid #34404d;
    border-radius: 8px;

    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;

    box-sizing: border-box;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

/* Tekstvak */
.qf-contact-form-card .wpcf7 textarea {
    min-height: 170px;
    resize: vertical;
}

/* Focus */
.qf-contact-form-card .wpcf7 input:focus,
.qf-contact-form-card .wpcf7 textarea:focus,
.qf-contact-form-card .wpcf7 select:focus {
    outline: none;
    background: #101923;
    border-color: #ed1c24;
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.12);
}

/* Placeholder */
.qf-contact-form-card .wpcf7 input::placeholder,
.qf-contact-form-card .wpcf7 textarea::placeholder {
    color: #6f7c8b;
}

/* Rode verzendknop */
.qf-contact-form-card .wpcf7 input[type="submit"] {
    display: inline-block;
    min-width: 180px;

    padding: 13px 22px;

    background: #ed1c24;
    color: #ffffff;

    border: 1px solid #ff353d;
    border-radius: 8px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 6px 18px rgba(237, 28, 36, 0.18);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.qf-contact-form-card .wpcf7 input[type="submit"]:hover {
    background: #ff252e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.28);
}

/* Contact Form 7 meldingen */
.qf-contact-form-card .wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 12px 14px !important;

    background: #0c131c;
    color: #ffffff;

    border: 1px solid #34404d !important;
    border-radius: 8px;
}

/* Foutmelding bij veld */
.qf-contact-form-card .wpcf7-not-valid-tip {
    margin-top: 5px;
    color: #ff686e;
    font-size: 12px;
}

/* Spinner */
.qf-contact-form-card .wpcf7-spinner {
    vertical-align: middle;
}

/* =========================================
   MOBIEL
   ========================================= */

@media (max-width: 620px) {

    .qf-contact-grid {
        grid-template-columns: 1fr !important;
    }

    .qf-contact-form-card {
        width: 100%;
        padding: 18px;
        box-sizing: border-box;
    }

    .qf-contact-form-card .wpcf7 input[type="text"],
    .qf-contact-form-card .wpcf7 input[type="email"],
    .qf-contact-form-card .wpcf7 input[type="tel"],
    .qf-contact-form-card .wpcf7 input[type="url"],
    .qf-contact-form-card .wpcf7 textarea,
    .qf-contact-form-card .wpcf7 select {
        font-size: 16px;
    }

    .qf-contact-form-card .wpcf7 input[type="submit"] {
        width: 100%;
    }
}
/* Quest FM - Now Playing */

.qf-now-playing {
    margin-top: 4px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.qf-now-playing * {
    color: #ffffff !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.qf-now-playing img {
    display: none !important;
}

@media (max-width: 620px) {
    .qf-now-playing {
        font-size: 17px;
    }
}
/* =========================================
   QUEST FM - NOW PLAYING LEESBAAR MAKEN
   ========================================= */

.qf-now-playing,
.qf-now-playing #RTWidgetStatus,
.qf-now-playing #RTWidgetStatus * {
    color: #ffffff !important;
    background: transparent !important;
    text-shadow: none !important;
}

.qf-now-playing-label {
    margin-bottom: 4px;
    color: #ed1c24 !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.qf-now-playing #RTWidgetStatus {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.qf-now-playing #RTWidgetStatus a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.qf-now-playing #RTWidgetStatus img {
    display: none !important;
}

/* Eventuele tabellen/lijsten uit provider-widget */
.qf-now-playing #RTWidgetStatus table,
.qf-now-playing #RTWidgetStatus td,
.qf-now-playing #RTWidgetStatus tr,
.qf-now-playing #RTWidgetStatus div,
.qf-now-playing #RTWidgetStatus span {
    background: transparent !important;
    border: 0 !important;
    color: #ffffff !important;
}

/* Mobiel */
@media (max-width: 620px) {
    .qf-now-playing #RTWidgetStatus {
        font-size: 16px !important;
    }
}
/* =========================================
   QUEST FM - HOME
   ========================================= */

.qf-home {
    width: 100%;
}

.qf-home-hero {
    padding: 34px;
    margin-bottom: 22px;

    background: #111a25;
    border: 1px solid #293442;
    border-left: 3px solid #ed1c24;
    border-radius: 12px;
}

.qf-home-label {
    color: #ed1c24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.qf-home-hero h1 {
    margin: 6px 0 10px;
    color: #fff;
    font-size: 38px;
}

.qf-home-hero p {
    color: #aeb8c5;
    font-size: 17px;
    line-height: 1.7;
}

.qf-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.qf-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;

    background: #0c131c;
    color: #fff !important;
    text-decoration: none !important;

    border: 1px solid #34404d;
    border-radius: 8px;

    font-weight: 700;
}

.qf-home-button-primary {
    background: #ed1c24;
    border-color: #ff353d;
}

.qf-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.qf-home-card {
    padding: 26px;

    background: #111a25;
    border: 1px solid #293442;
    border-radius: 12px;
}

.qf-home-card h2 {
    margin: 6px 0 18px;
    color: #fff;
    font-size: 24px;
}

.qf-home-now {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 16px;
    margin-bottom: 16px;

    background: #0c131c;
    border: 1px solid #293442;
    border-radius: 8px;

    color: #fff;
}

.qf-home-live-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;

    background: #ed1c24;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(237,28,36,.85);
}

.qf-home-program {
    display: flex;
    flex-direction: column;

    padding: 13px 0;
    border-bottom: 1px solid #293442;
}

.qf-home-program strong {
    color: #ed1c24;
    font-size: 12px;
    text-transform: uppercase;
}

.qf-home-program span {
    margin-top: 4px;
    color: #fff;
    font-weight: 700;
}

.qf-home-program small {
    margin-top: 3px;
    color: #98a4b2;
}

.qf-home-text-link {
    display: inline-block;
    margin-top: 16px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
}

.qf-home-text-link:hover {
    color: #ed1c24 !important;
}

.qf-home-wide {
    margin-top: 22px;
}

.qf-home-listen-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.qf-home-listen-option {
    display: flex;
    flex-direction: column;

    padding: 18px;

    background: #0c131c;
    border: 1px solid #293442;
    border-radius: 8px;

    color: #fff !important;
    text-decoration: none !important;
}

.qf-home-listen-option strong {
    font-size: 20px;
}

.qf-home-listen-option span {
    margin-top: 4px;
    color: #98a4b2;
}

/* Mobiel */
@media (max-width: 620px) {

    .qf-home-hero {
        padding: 22px;
    }

    .qf-home-hero h1 {
        font-size: 30px;
    }

    .qf-home-grid,
    .qf-home-listen-options {
        grid-template-columns: 1fr;
    }

    .qf-home-actions {
        flex-direction: column;
    }

    .qf-home-button {
        width: 100%;
        box-sizing: border-box;
    }
}
/* =========================================
   QUEST FM - SCHONE HOMEPAGE
   ========================================= */

.qf-home-clean {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Welkomstgedeelte */
.qf-home-welcome {
    padding: 20px 0 38px;
}

.qf-home-welcome h1 {
    margin: 7px 0 18px;
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
}

.qf-home-kicker {
    color: #ed1c24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.qf-home-lead {
    max-width: 720px;
    margin: 0;
    color: #b5bfca;
    font-size: 17px;
    line-height: 1.8;
}

/* Nu op Quest FM */
.qf-home-divider {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 0;
    margin-bottom: 38px;

    border-top: 1px solid #293442;
    border-bottom: 1px solid #293442;
}

.qf-home-divider .qf-live-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;

    background: #ed1c24;
    border-radius: 50%;

    box-shadow: 0 0 12px rgba(237, 28, 36, .9);
}

.qf-home-divider div {
    display: flex;
    flex-direction: column;
}

.qf-home-divider small {
    margin-bottom: 4px;

    color: #ed1c24;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.qf-home-divider strong {
    color: #fff;
    font-size: 16px;
}

/* Programma */
.qf-home-today {
    padding-bottom: 20px;
}

.qf-home-section-title span {
    color: #ed1c24;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.qf-home-section-title h2 {
    margin: 5px 0 22px;
    color: #fff;
    font-size: 30px;
}

.qf-home-schedule {
    max-width: 800px;
    border-top: 1px solid #293442;
}

.qf-home-show {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 25px;

    padding: 19px 0;

    border-bottom: 1px solid #293442;
}

.qf-home-show time {
    color: #ed1c24;
    font-size: 15px;
    font-weight: 700;
}

.qf-home-show div {
    display: flex;
    flex-direction: column;
}

.qf-home-show strong {
    color: #fff;
    font-size: 17px;
}

.qf-home-show span {
    margin-top: 4px;
    color: #9ca8b6;
    font-size: 14px;
}

.qf-home-program-link {
    margin-top: 22px;
}

.qf-home-program-link a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
}

.qf-home-program-link a:hover {
    color: #ed1c24 !important;
}

/* Mobiel */
@media (max-width: 620px) {

    .qf-home-welcome h1 {
        font-size: 31px;
    }

    .qf-home-lead {
        font-size: 15px;
    }

    .qf-home-show {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .qf-home-divider {
        align-items: flex-start;
    }
}
/* =========================================
   QUEST FM - DJ LIVE INDICATOR
   ========================================= */

.qf-dj-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    padding: 3px 8px;
    color: #fff !important;
    background: rgba(237, 28, 36, 0.15);
    border: 1px solid rgba(237, 28, 36, 0.55);
    border-radius: 20px;
    font-size: 10px !important;
    font-weight: 800;
    letter-spacing: 1px;
}

.qf-dj-live i {
    display: block;
    width: 8px;
    height: 8px;
    background: #ed1c24;
    border-radius: 50%;
    box-shadow: 0 0 8px #ed1c24;
    animation: qf-live-pulse 1.5s infinite;
}

@keyframes qf-live-pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}
/* =========================================
   QUEST FM - GROTE SCHERMEN / SMART TV
   ========================================= */

@media (min-width: 1600px) {

    .qf-wrap,
    .qf-main .qf-wrap,
    .qf-player-inner,
    .qf-footer-grid,
    .qf-home-clean {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .qf-header-inner,
    .qf-nav .qf-wrap {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .qf-main {
        padding-left: 32px;
        padding-right: 32px;
    }

    .qf-player {
        padding-left: 32px;
        padding-right: 32px;
    }

    .qf-footer {
        padding-left: 32px;
        padding-right: 32px;
    }

    .qf-header {
        background-size: cover;
        background-position: center center;
    }
}
/* =========================================
   QUEST FM - WHATSAPP STUDIO KNOP
   ========================================= */

.qf-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;
    background: #25d366;
    color: #ffffff !important;

    border-radius: 30px;
    text-decoration: none !important;
    font-weight: 700;

    box-shadow: 0 5px 18px rgba(0,0,0,.35);

    transition: transform .2s ease, box-shadow .2s ease;
}

.qf-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(0,0,0,.45);
}

.qf-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    background: #ffffff;
    color: #25d366 !important;

    border-radius: 50%;
    font-size: 16px;
}

.qf-whatsapp-text {
    color: #ffffff !important;
}

/* Mobiel */
@media (max-width: 620px) {

    .qf-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 10px 14px;
    }

    .qf-whatsapp-text {
        font-size: 13px;
    }
}
/* =========================================
   QUEST FM - SOCIAL MEDIA FOOTER
   ========================================= */

.qf-social-title {
    margin-top: 18px;
    margin-bottom: 8px;
}

.qf-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.qf-social-links a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    transition: transform .2s ease, opacity .2s ease;
}

.qf-social-links a:hover {
    transform: translateY(-2px);
    opacity: .9;
}

.qf-social-facebook {
    background: #1877f2;
}

.qf-social-instagram {
    background: linear-gradient(
        45deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    );
}
/* TuneIn knop */
.qf-social-tunein {
    background: #14d8cc;
    color: #000000 !important;
}