/*
 * Radio Fatti Sentire — Stili principali
 * v1.3.9 — Fix definitivo hamburger + menu mobile
 * Palette: Rosso / Bianco / Nero (coerente con app iOS)
 */

:root {
    --rfs-red:        #E10F1A;
    --rfs-red-dark:   #B00C14;
    --rfs-red-light:  #FF3B45;
    --rfs-black:      #0B0B0B;
    --rfs-black-soft: #1A1A1A;
    --rfs-black-bar:  #161616;
    --rfs-white:      #FFFFFF;
    --rfs-gray:       #8A8A8A;
    --rfs-gray-light: #D8D8D8;
    --rfs-gray-dark:  #2A2A2A;

    --rfs-radius:     14px;
    --rfs-radius-sm:  8px;
    --rfs-shadow:     0 8px 24px rgba(0, 0, 0, 0.25);
    --rfs-shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.15);

    --rfs-font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --rfs-stickybar-height: 96px;
}

body {
    padding-bottom: var(--rfs-stickybar-height) !important;
}

/* =====================================================
   STICKY BAR
   ===================================================== */

.rfs-stickybar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: var(--rfs-stickybar-height);
    background: var(--rfs-black-bar);
    color: var(--rfs-white);
    border-top: 1px solid var(--rfs-gray-dark);
    display: flex;
    align-items: center;
    padding: 0 24px 0 16px;
    gap: 16px;
    z-index: 9999;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
    font-family: var(--rfs-font);
    transition: opacity 0.2s ease;
}

.rfs-stickybar.is-loading .rfs-stickybar__playbtn {
    animation: rfs-pulse 1.2s ease-in-out infinite;
}

@keyframes rfs-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(0.92); }
}

.rfs-stickybar__cover {
    width: 80px; height: 80px;
    border-radius: var(--rfs-radius-sm);
    object-fit: cover;
    background: var(--rfs-gray-dark);
    flex-shrink: 0;
    transition: filter 0.3s ease;
}

.rfs-stickybar.is-paused .rfs-stickybar__cover { filter: grayscale(0.6) brightness(0.7); }

.rfs-stickybar__meta {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column;
    justify-content: center; gap: 4px;
}

.rfs-stickybar__badge {
    display: inline-flex; align-items: center; gap: 6px;
    align-self: flex-start;
    padding: 3px 10px;
    background: var(--rfs-red);
    color: var(--rfs-white);
    border-radius: 4px;
    font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.2;
}

.rfs-stickybar__badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--rfs-white);
    animation: rfs-blink 1.5s ease-in-out infinite;
}

@keyframes rfs-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.rfs-stickybar.is-paused .rfs-stickybar__badge { display: none; }

.rfs-stickybar__title {
    margin: 0; font-size: 1rem; font-weight: 700;
    color: var(--rfs-white);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; line-height: 1.3;
}

.rfs-stickybar__artist {
    margin: 0; font-size: 0.85rem; color: var(--rfs-red-light);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; line-height: 1.2;
}

.rfs-stickybar__controls {
    display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}

.rfs-stickybar__btn {
    background: transparent; color: var(--rfs-gray-light);
    border: 0; padding: 0;
    width: 40px; height: 40px; border-radius: 50%;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: color 0.2s ease, background 0.2s ease, transform 0.1s ease;
}

.rfs-stickybar__btn:hover  { color: var(--rfs-red); background: rgba(255,255,255,0.05); }
.rfs-stickybar__btn:active { transform: scale(0.92); }
.rfs-stickybar__btn svg      { width: 22px; height: 22px; fill: currentColor !important; pointer-events: none; }
.rfs-stickybar__btn svg path { fill: currentColor !important; }

.rfs-stickybar__btn .rfs-icon-speaker { display: block; }
.rfs-stickybar__btn .rfs-icon-muted   { display: none; }
.rfs-stickybar__btn.is-muted .rfs-icon-speaker { display: none; }
.rfs-stickybar__btn.is-muted .rfs-icon-muted   { display: block; }
.rfs-stickybar__btn.is-muted { color: var(--rfs-red); }

.rfs-stickybar__playbtn {
    border: 0;
    width: 56px; height: 56px; border-radius: 50%;
    cursor: pointer; flex-shrink: 0;
    background-color: var(--rfs-red);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; background-size: 24px 24px;
    box-shadow: 0 4px 16px rgba(225,15,26,0.4);
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.rfs-stickybar__playbtn:hover  { background-color: var(--rfs-red-dark); box-shadow: 0 6px 20px rgba(225,15,26,0.55); }
.rfs-stickybar__playbtn:active { transform: scale(0.94); }

.rfs-stickybar__playbtn.is-playing {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 19h4V5H6v14zm8-14v14h4V5h-4z' fill='%23fff'/%3E%3C/svg%3E");
}

.rfs-stickybar.is-offline .rfs-stickybar__playbtn { background-color: var(--rfs-gray-dark); box-shadow: none; cursor: not-allowed; }
.rfs-stickybar.is-offline .rfs-stickybar__title   { color: var(--rfs-gray); }
.rfs-stickybar.is-offline .rfs-stickybar__artist  { color: transparent; }
.rfs-stickybar.is-offline .rfs-stickybar__artist::before { content: '○ Offline'; color: var(--rfs-gray); }

/* =====================================================
   SHORTCODES
   ===================================================== */

.rfs-in-onda, .rfs-prossimo, .rfs-cronologia {
    font-family: var(--rfs-font); margin: 1.5rem 0;
}

.rfs-in-onda {
    display: flex; gap: 24px; align-items: center; padding: 24px;
    background: linear-gradient(135deg, var(--rfs-black) 0%, var(--rfs-black-soft) 100%);
    color: var(--rfs-white); border-radius: var(--rfs-radius); box-shadow: var(--rfs-shadow);
}

.rfs-in-onda__cover  { flex-shrink: 0; }
.rfs-in-onda__img    { width: 160px; height: 160px; border-radius: var(--rfs-radius); object-fit: cover; background: var(--rfs-gray-dark); }
.rfs-in-onda__label  { margin: 0; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--rfs-red); font-weight: 700; }
.rfs-in-onda__title  { margin: 8px 0 4px; font-size: 1.5rem; font-weight: 700; color: var(--rfs-white); line-height: 1.2; }
.rfs-in-onda__artist { margin: 0; color: var(--rfs-gray-light); font-size: 1.05rem; }
.rfs-in-onda__links  { margin-top: 14px; display: flex; gap: 8px; }

.rfs-prossimo { padding: 16px 18px; background: var(--rfs-white); border: 1px solid var(--rfs-gray-light); border-radius: var(--rfs-radius); }
.rfs-prossimo__label  { margin: 0 0 10px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--rfs-gray); font-weight: 700; }
.rfs-prossimo__row    { display: flex; gap: 14px; align-items: center; }
.rfs-prossimo__img    { width: 64px; height: 64px; border-radius: var(--rfs-radius-sm); object-fit: cover; background: var(--rfs-gray-light); flex-shrink: 0; }
.rfs-prossimo__title  { margin: 0; font-size: 1.05rem; font-weight: 600; color: var(--rfs-black); }
.rfs-prossimo__artist { margin: 2px 0 0; color: var(--rfs-gray); font-size: 0.9rem; }

.rfs-cronologia__list    { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.rfs-cronologia__item    { display: flex; gap: 14px; align-items: center; padding: 12px 16px; background: var(--rfs-white); border: 1px solid var(--rfs-gray-light); border-radius: var(--rfs-radius-sm); transition: border-color 0.2s ease, transform 0.15s ease; }
.rfs-cronologia__item:hover { border-color: var(--rfs-red); transform: translateX(2px); }
.rfs-cronologia__img     { width: 52px; height: 52px; border-radius: var(--rfs-radius-sm); object-fit: cover; background: var(--rfs-gray-light); flex-shrink: 0; }
.rfs-cronologia__meta    { flex: 1; min-width: 0; }
.rfs-cronologia__title   { margin: 0; font-weight: 600; font-size: 0.95rem; color: var(--rfs-black); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rfs-cronologia__artist  { margin: 2px 0 0; color: var(--rfs-gray); font-size: 0.85rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rfs-cronologia__time    { color: var(--rfs-gray); font-size: 0.78rem; flex-shrink: 0; font-variant-numeric: tabular-nums; }
.rfs-cronologia__links   { display: flex; gap: 8px; flex-shrink: 0; }
.rfs-cronologia__loading { color: var(--rfs-gray); font-style: italic; }

.rfs-music-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.rfs-music-link svg   { width: 18px; height: 18px; fill: currentColor; }
.rfs-music-link:hover { transform: scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.rfs-music-link--spotify { background: #1DB954; color: #fff; }

/* Apple Music — icona come background-image */
.rfs-music-link--apple {
    background-color: #FC3C44;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M79.3 13.5L36.9 24.8v38.5c-2.8-1.4-6.1-2-9.6-1.5-8.1 1.2-14 7.7-13.2 14.5.8 6.8 8 11.2 16.1 10 7.2-1.1 12.6-6.6 13.1-13V36.5l33.5-8.8v30c-2.8-1.4-6.1-2-9.6-1.5-8.1 1.2-14 7.7-13.2 14.5.8 6.8 8 11.2 16.1 10 7.3-1.1 12.7-6.8 13.1-13.1V13.5h-4z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    color: transparent;
}
.rfs-music-link--apple svg { display: none !important; }

/* =====================================================
   MOBILE — STICKY BAR
   ===================================================== */
@media (max-width: 700px) {
    :root { --rfs-stickybar-height: 80px; }
    .rfs-stickybar          { padding: 0 16px 0 12px; gap: 12px; }
    .rfs-stickybar__cover   { width: 60px; height: 60px; }
    .rfs-stickybar__title   { font-size: 0.9rem; }
    .rfs-stickybar__artist  { font-size: 0.78rem; }
    .rfs-stickybar__playbtn { width: 48px; height: 48px; background-size: 20px 20px; }
    .rfs-stickybar__btn     { width: 36px; height: 36px; }
    .rfs-stickybar__btn svg { width: 18px; height: 18px; }
    .rfs-stickybar__expand  { display: none; }
    .rfs-in-onda            { flex-direction: column; text-align: center; }
    .rfs-in-onda__img       { width: 220px; height: 220px; }
    .rfs-in-onda__links     { justify-content: center; }
    .rfs-cronologia__time   { display: none; }
}

@media (max-width: 420px) {
    .rfs-stickybar__badge { display: none; }
}

/* =====================================================
   TOAST "Riprendi ascolto"
   ===================================================== */
.rfs-resume-toast {
    position: fixed;
    bottom: calc(var(--rfs-stickybar-height) + 16px); right: 16px;
    z-index: 10000;
    background: var(--rfs-red); color: var(--rfs-white);
    padding: 14px 18px; border-radius: var(--rfs-radius);
    box-shadow: 0 12px 32px rgba(225,15,26,0.4);
    font-family: var(--rfs-font);
    display: flex; align-items: center; gap: 12px;
    cursor: pointer; max-width: 320px;
    transform: translateY(20px); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 0; text-align: left;
}
.rfs-resume-toast.is-visible { transform: translateY(0); opacity: 1; }
.rfs-resume-toast:hover       { background: var(--rfs-red-dark); transform: translateY(-2px); }
.rfs-resume-toast__icon { flex-shrink: 0; width: 32px; height: 32px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.rfs-resume-toast__icon svg { width: 18px; height: 18px; fill: #fff !important; }
.rfs-resume-toast__text  { flex: 1; line-height: 1.3; }
.rfs-resume-toast__title { font-size: 0.85rem; font-weight: 700; margin: 0; }
.rfs-resume-toast__sub   { font-size: 0.75rem; opacity: 0.9; margin: 2px 0 0; }

@media (max-width: 600px) {
    .rfs-resume-toast { right: 12px; left: 12px; max-width: none; }
}

/* =====================================================
   TURBO PROGRESS BAR
   ===================================================== */
.turbo-progress-bar {
    position: fixed; display: block; top: 0; left: 0;
    height: 3px; background: var(--rfs-red); z-index: 99999;
    transition: width 300ms ease-out, opacity 150ms 150ms ease-in;
    transform: translate3d(0,0,0);
}

/* =====================================================
   HEADER DARK — Override Astra
   ===================================================== */

/* Sfondo header */
.site-header, #masthead,
.ast-desktop-header,
.main-header-bar,
.ast-primary-header-bar {
    background: var(--rfs-black-bar) !important;
    border-bottom: 1px solid var(--rfs-gray-dark) !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4) !important;
    position: relative !important;
}

/* Striscia rossa decorativa */
.main-header-bar::after {
    content: ''; display: block; position: absolute;
    bottom: -3px; left: 0; right: 0; height: 3px;
    background: var(--rfs-red); z-index: 1;
}

/* Logo testo */
.site-title a, .ast-site-name-text { color: var(--rfs-white) !important; }

/* Nasconde breadcrumb e righe header doppie */
.ast-breadcrumbs-wrapper, .ast-breadcrumbs,
.ast-breadcrumbs-custom-link,
[class*="ast-breadcrumb"],
.breadcrumb-trail, .breadcrumbs,
.ast-above-header, .ast-above-header-wrap,
.ast-below-header, .ast-below-header-wrap {
    display: none !important;
}

/* Link menu DESKTOP */
.main-header-menu > .menu-item > a,
.ast-nav-menu > .menu-item > a,
#site-navigation .menu-item > a {
    color: var(--rfs-gray-light) !important;
    font-family: var(--rfs-font) !important;
    font-size: 0.78rem !important; font-weight: 600 !important;
    letter-spacing: 0.08em !important; text-transform: uppercase !important;
    white-space: nowrap !important;
    transition: color 0.2s ease !important; padding: 6px 12px !important;
}

.main-header-menu > .menu-item > a:hover,
.ast-nav-menu > .menu-item > a:hover,
.main-header-menu > .menu-item.current-menu-item > a,
.ast-nav-menu > .menu-item.current-menu-item > a {
    color: var(--rfs-red) !important;
}

.main-header-menu > .menu-item.current-menu-item > a,
.ast-nav-menu > .menu-item.current-menu-item > a {
    border-bottom: 2px solid var(--rfs-red) !important;
}

/* Dropdown desktop */
.main-header-menu .sub-menu, .ast-nav-menu .sub-menu {
    background: var(--rfs-black-soft) !important;
    border: 1px solid var(--rfs-gray-dark) !important;
    border-radius: var(--rfs-radius-sm) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5) !important;
}
.main-header-menu .sub-menu .menu-item > a,
.ast-nav-menu .sub-menu .menu-item > a {
    color: var(--rfs-gray-light) !important;
    font-size: 0.85rem !important; padding: 10px 18px !important;
}
.main-header-menu .sub-menu .menu-item > a:hover,
.ast-nav-menu .sub-menu .menu-item > a:hover {
    color: var(--rfs-white) !important; background: var(--rfs-gray-dark) !important;
}

/* =====================================================
   HAMBURGER — rosso, grande, visibile
   ===================================================== */

/* Pulsante contenitore */
.ast-mobile-menu-trigger,
.menu-toggle,
button.ast-mobile-menu-trigger {
    background: transparent !important;
    border: none !important;
    width: 48px !important; height: 48px !important;
    padding: 6px !important;
    display: flex !important; align-items: center !important;
    justify-content: center !important; cursor: pointer !important;
}

/* Tre linee — bianche e spesse */
.ast-mobile-menu-trigger span,
.ast-mobile-menu-trigger .ast-mobile-menu-trigger-bar,
.menu-toggle span {
    background: var(--rfs-white) !important;
    width: 28px !important; height: 3px !important;
    display: block !important; border-radius: 2px !important;
    margin: 3px 0 !important;
}

/* SVG hamburger — forza bianco su tutti gli elementi */
.ast-mobile-menu-trigger svg,
.menu-toggle svg {
    width: 28px !important; height: 28px !important;
}
.ast-mobile-menu-trigger svg *,
.menu-toggle svg * {
    fill: var(--rfs-white) !important;
    stroke: var(--rfs-white) !important;
    color: var(--rfs-white) !important;
}

/* Bottone X di chiusura (stesso stile) */
.ast-mobile-close,
.ast-close-btn,
button[class*="close"],
.ast-mobile-menu-trigger.toggled svg *,
.menu-toggle.toggled svg * {
    fill: var(--rfs-white) !important;
    stroke: var(--rfs-white) !important;
    color: var(--rfs-white) !important;
}

/* =====================================================
   MENU MOBILE APERTO — sfondo scuro garantito
   ===================================================== */

/* Tutti i possibili contenitori del menu mobile Astra */
.ast-mobile-header-wrap,
.ast-mobile-nav-wrap,
.ast-mobile-menu,
#ast-mobile-popup,
.ast-popup-header-wrap,
.ast-mobile-overlay,
.ast-mobile-menu-overlay,
/* WordPress standard nav mobile */
.main-navigation,
.nav-menu-container,
/* Astra Pro slide-out */
.ast-slide-out-menu,
.ast-flyout-menu {
    background: var(--rfs-black-bar) !important;
    background-color: var(--rfs-black-bar) !important;
}

/* Bordo rosso in cima al pannello */
.ast-mobile-nav-wrap,
#ast-mobile-popup,
.ast-slide-out-menu {
    border-top: 3px solid var(--rfs-red) !important;
}

/* Ogni singola riga <li> del menu mobile */
.ast-mobile-nav-wrap li,
.ast-mobile-menu li,
#ast-mobile-popup li,
.main-navigation li {
    background: var(--rfs-black-bar) !important;
    background-color: var(--rfs-black-bar) !important;
    border-bottom: 1px solid var(--rfs-gray-dark) !important;
}

/* Link delle voci */
.ast-mobile-nav-wrap li > a,
.ast-mobile-nav-wrap .menu-item > a,
.ast-mobile-menu li > a,
.ast-mobile-menu .menu-item > a,
#ast-mobile-popup li > a,
#ast-mobile-popup .menu-item > a,
.main-navigation li > a,
.main-navigation .menu-item > a,
.ast-popup-header-wrap .menu-item > a {
    color: var(--rfs-white) !important;
    background: transparent !important;
    background-color: transparent !important;
    padding: 16px 20px !important;
    font-family: var(--rfs-font) !important;
    font-size: 0.9rem !important; font-weight: 600 !important;
    letter-spacing: 0.06em !important; text-transform: uppercase !important;
    display: block !important;
    border: none !important;
}

/* Hover voci */
.ast-mobile-nav-wrap li > a:hover,
.ast-mobile-menu li > a:hover,
#ast-mobile-popup li > a:hover,
.main-navigation li > a:hover {
    color: var(--rfs-red) !important;
    background: var(--rfs-black-soft) !important;
    background-color: var(--rfs-black-soft) !important;
}

/* Nasconde "RADIO FATTI SENTIRE" duplicato ovunque nel mobile */
.ast-mobile-nav-wrap .ast-site-title-wrap,
.ast-mobile-nav-wrap .ast-site-identity,
.ast-mobile-nav-wrap .site-title,
.ast-mobile-nav-wrap .site-description,
#ast-mobile-popup .ast-site-title-wrap,
#ast-mobile-popup .ast-site-identity,
#ast-mobile-popup .site-title,
#ast-mobile-popup .site-description,
.main-navigation .ast-site-title-wrap,
.main-navigation .site-title {
    display: none !important;
}

/* =====================================================
   FORM INVIO BRANI
   ===================================================== */

.rfs-cf7-form {
    font-family: var(--rfs-font);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rfs-cf7-row {
    display: flex;
    gap: 16px;
}

.rfs-cf7-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rfs-cf7-full {
    flex: 1 1 100%;
}

.rfs-cf7-form label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rfs-white);  /* ← era --rfs-gray */
}
.rfs-cf7-form input[type="text"],
.rfs-cf7-form input[type="number"],
.rfs-cf7-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--rfs-gray-dark);
    border-radius: var(--rfs-radius-sm);
    background: var(--rfs-black-soft);
  color: var(--rfs-white) !important;
    font-family: var(--rfs-font);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.rfs-cf7-form input[type="text"]:focus,
color: var(--rfs-white);
.rfs-cf7-form input[type="number"]:focus,
.rfs-cf7-form textarea:focus {
    outline: none;
    border-color: var(--rfs-red);
    color: var(--rfs-white);
}

.rfs-cf7-form input::placeholder,
.rfs-cf7-form textarea::placeholder {
    color: var(--rfs-white);
}

.rfs-cf7-form input[type="submit"] {
    background-color: var(--rfs-red);
    color: var(--rfs-white);
    border: 0;
    padding: 14px 32px;
    border-radius: var(--rfs-radius-sm);
    font-family: var(--rfs-font);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.rfs-cf7-form input[type="submit"]:hover {
    background-color: var(--rfs-red-dark);
}

.rfs-cf7-form input[type="submit"]:active {
    transform: scale(0.98);
}

/* Messaggi CF7 */
.rfs-cf7-form .wpcf7-response-output {
    border-radius: var(--rfs-radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    border: 1px solid var(--rfs-red);
    color: var(--rfs-white);
    background: var(--rfs-black-soft);
}

.rfs-cf7-form .wpcf7-not-valid-tip {
    color: var(--rfs-red-light);
    font-size: 0.78rem;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .rfs-cf7-row {
        flex-direction: column;
        gap: 20px;
    }
}