/* v0.5.0: public weekly schedule grid for /laidu-tinklelis/ */
.rfm-laidos-grid-page{
  width:min(1180px,calc(100% - 32px));
  margin:34px auto 96px;
  color:#261c1d;
  font-family: var(--rfm-font-main, inherit);
}
.rfm-laidos-grid-head{
  margin:0 0 18px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
}
.rfm-laidos-grid-kicker{
  display:inline-flex;
  align-items:center;
  gap:7px;
  border-radius:999px;
  background:rgba(229,45,39,.10);
  color:#e52d27;
  font-size:11px;
  line-height:1;
  font-weight: 800;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:8px 11px;
}
.rfm-laidos-grid-kicker:before{
  content:'';
  width:7px;
  height:7px;
  border-radius:999px;
  background:#e52d27;
  box-shadow:0 0 0 4px rgba(229,45,39,.10);
}
.rfm-laidos-grid-head h1{
  margin:0;
  font-size:clamp(30px,4.5vw,58px);
  line-height:.95;
  font-weight: 800;
  letter-spacing:-.05em;
  text-transform:uppercase;
  color:#261c1d;
}
.rfm-laidos-grid-head p{
  margin:0;
  color:rgba(38,28,29,.58);
  font-size:14px;
  font-weight: 700;
}
.rfm-laidos-day-nav{
  display:flex;
  gap:8px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  padding:2px 0 14px;
  margin:0 0 8px;
}
.rfm-laidos-day-nav a{
  flex:0 0 auto;
  border-radius:999px;
  background:rgba(255,255,255,.68);
  border:1px solid rgba(38,28,29,.08);
  color:rgba(38,28,29,.70);
  text-decoration:none;
  font-size:12px;
  font-weight: 800;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:10px 13px;
  box-shadow:0 8px 22px rgba(38,28,29,.06);
}
.rfm-laidos-day-nav a.is-today{
  background:#e52d27;
  border-color:#e52d27;
  color:#fff;
}
.rfm-laidos-week-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.rfm-laidos-day-card{
  border-radius:22px;
  background:linear-gradient(135deg,rgba(255,255,255,.78),rgba(255,255,255,.50));
  border:1px solid rgba(255,255,255,.70);
  box-shadow:0 14px 34px rgba(38,28,29,.08),inset 0 1px 0 rgba(255,255,255,.70);
  padding:17px;
  overflow:hidden;
}
@supports ((-webkit-backdrop-filter:blur(10px)) or (backdrop-filter:blur(10px))){
  .rfm-laidos-day-card{
    -webkit-backdrop-filter:blur(12px) saturate(155%);
    backdrop-filter:blur(12px) saturate(155%);
  }
}
.rfm-laidos-day-card.is-today{
  border-color:rgba(229,45,39,.24);
  box-shadow:0 16px 38px rgba(229,45,39,.10),inset 0 1px 0 rgba(255,255,255,.70);
}
.rfm-laidos-day-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.rfm-laidos-day-name{
  color:#261c1d;
  font-size:14px;
  line-height:1;
  font-weight: 800;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.rfm-laidos-day-date{
  display:inline-flex;
  border-radius:999px;
  background:rgba(229,45,39,.10);
  color:#e52d27;
  font-size:11px;
  line-height:1;
  font-weight: 800;
  padding:7px 9px;
}
.rfm-laidos-slots{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.rfm-laidos-slot{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:12px;
  align-items:center;
  min-height:38px;
  padding:9px 0;
  border-top:1px solid rgba(38,28,29,.07);
}
.rfm-laidos-slot:first-child{
  border-top:0;
}
.rfm-laidos-slot-time{
  display:inline-flex;
  width:max-content;
  border-radius:999px;
  background:rgba(229,45,39,.10);
  color:#e52d27;
  font-size:11px;
  line-height:1;
  font-weight: 800;
  padding:7px 9px;
  white-space:nowrap;
}
.rfm-laidos-slot-title{
  color:#261c1d;
  font-size:14px;
  line-height:1.15;
  font-weight: 800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.rfm-laidos-empty-day{
  margin:4px 0 0;
  color:rgba(38,28,29,.48);
  font-size:13px;
  font-weight: 700;
}
@media (min-width: 1100px){
  .rfm-laidos-week-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}
@media (max-width: 760px){
  .rfm-laidos-grid-page{
    width:min(100% - 22px,680px);
    margin:22px auto 86px;
  }
  .rfm-laidos-week-grid{
    grid-template-columns:1fr;
    gap:10px;
  }
  .rfm-laidos-day-card{
    border-radius:18px;
    padding:14px;
  }
  .rfm-laidos-slot{
    grid-template-columns:82px 1fr;
    gap:9px;
  }
  .rfm-laidos-slot-title{
    font-size:13px;
  }
  .rfm-laidos-slot-time{
    font-size:10px;
    padding:7px 8px;
  }
}

/* v0.5.1: schedule page spacing, mobile today scroll target, and active-show marker */
.rfm-laidos-grid-page{
  margin-top:clamp(104px,8vw,132px) !important;
  scroll-margin-top:118px;
}
.rfm-laidos-day-nav{
  display:none !important;
}
.rfm-laidos-day-card{
  scroll-margin-top:112px;
}
.rfm-laidos-slot{
  grid-template-columns:92px 1fr !important;
}
.rfm-laidos-slot.is-now{
  position:relative;
  border-radius:16px;
  padding-left:0;
  padding-right:0;
  box-sizing:border-box;
  background:linear-gradient(135deg,rgba(229,45,39,.08),rgba(229,45,39,.03));
  border-top-color:transparent;
}
.rfm-laidos-slot-main{
  display:flex;
  align-items:center;
  gap:9px;
  min-width:0;
}
.rfm-laidos-now-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  flex:0 0 auto;
  border-radius:999px;
  background:#e52d27;
  color:#fff;
  font-size:10px;
  line-height:1;
  font-weight: 800;
  letter-spacing:.10em;
  text-transform:uppercase;
  padding:7px 9px;
  box-shadow:0 9px 20px rgba(229,45,39,.24);
}
.rfm-laidos-now-dot{
  width:6px;
  height:6px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 0 0 0 rgba(255,255,255,.58);
  animation:rfmLaidosNowPulse 1.25s ease-in-out infinite;
}
@keyframes rfmLaidosNowPulse{
  0%,100%{opacity:1;transform:scale(1);box-shadow:0 0 0 0 rgba(255,255,255,.62)}
  50%{opacity:.62;transform:scale(.82);box-shadow:0 0 0 5px rgba(255,255,255,0)}
}
@media (max-width: 760px){
  .rfm-laidos-grid-page{
    margin-top:94px !important;
    scroll-margin-top:94px;
  }
  .rfm-laidos-day-card{
    scroll-margin-top:92px;
  }
  .rfm-laidos-slot{
    grid-template-columns:82px 1fr !important;
  }
  .rfm-laidos-slot-main{
    flex-wrap:wrap;
    gap:7px;
  }
  .rfm-laidos-now-badge{
    font-size:9px;
    padding:6px 8px;
  }
}


/* v0.5.2: keep active schedule row aligned and move DABAR badge after title */
.rfm-laidos-slot.is-now{
  padding-left:0 !important;
  padding-right:0 !important;
  box-sizing:border-box;
}
.rfm-laidos-slot.is-now .rfm-laidos-slot-main{
  justify-content:flex-start;
}
.rfm-laidos-slot.is-now .rfm-laidos-slot-title{
  min-width:0;
}
.rfm-laidos-now-badge{
  order:2;
}
@media (max-width:760px){
  .rfm-laidos-slot.is-now{
    padding-left:0 !important;
    padding-right:0 !important;
  }
}

/* v0.8.14: plugin does not style Eteryje/current-show banners. Only promo/home-banner fallback remains scoped to promo markup. */
.rfm-laidos-promo-banner{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:22px;
  background:#1f0f14;
  color:#fff;
  text-decoration:none;
  aspect-ratio:16/9;
  box-shadow:0 14px 34px rgba(28,7,15,.18);
  isolation:isolate;
}
.rfm-laidos-promo-banner:hover,
.rfm-laidos-promo-banner:focus{text-decoration:none;}
.rfm-laidos-promo-banner:focus{outline:2px solid #e52d27;outline-offset:3px;}
.rfm-laidos-promo-banner .rfm-laida-media{position:absolute;inset:0;display:block;}
.rfm-laidos-promo-banner .rfm-laida-img{width:100%;height:100%;object-fit:cover;display:block;}
.rfm-laidos-promo-banner .rfm-laida-shade{position:absolute;inset:0;z-index:1;pointer-events:none;background:linear-gradient(180deg,rgba(0,0,0,.26),rgba(0,0,0,.06) 38%,rgba(0,0,0,.72));}
.rfm-laidos-promo-banner .rfm-laida-label,
.rfm-laidos-promo-banner .rfm-laida-title{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  max-width:100%;
  border-radius:12px;
  background:rgba(255,244,246,.96);
  color:#e43a3c;
  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.65);
  box-shadow:0 10px 24px rgba(28,7,15,.18),inset 0 1px 0 rgba(255,255,255,.65);
  text-shadow:none;
}
.rfm-laidos-promo-banner .rfm-laida-label::before,
.rfm-laidos-promo-banner .rfm-laida-title::before{content:'';width:8px;height:8px;border-radius:999px;background:#e43a3c;flex:0 0 8px;box-shadow:0 0 0 2px rgba(228,58,60,.08);}
.rfm-laidos-promo-banner .rfm-laida-label{position:absolute;top:18px;left:18px;z-index:2;}
.rfm-laidos-promo-content{position:absolute;left:18px;right:18px;bottom:18px;z-index:2;display:flex;flex-direction:column;align-items:flex-start;gap:7px;}
.rfm-laidos-promo-title{max-width:100%;white-space:normal;line-height:1.08;}
.rfm-laidos-promo-cta{display:inline-flex;width:max-content;max-width:100%;border-radius:999px;background:rgba(255,255,255,.92);color:#d2042b;font-size:14px;font-weight:800;line-height:1.1;padding:10px 14px;}
@media(max-width:640px){
  .rfm-laidos-promo-banner{border-radius:18px;}
  .rfm-laidos-promo-banner .rfm-laida-label,
  .rfm-laidos-promo-banner .rfm-laida-title{font-size:10px;padding:7px 10px;gap:6px;}
  .rfm-laidos-promo-banner .rfm-laida-label::before,
  .rfm-laidos-promo-banner .rfm-laida-title::before{width:6px;height:6px;flex-basis:6px;}
  .rfm-laidos-promo-banner .rfm-laida-label{top:12px;left:12px;}
  .rfm-laidos-promo-content{left:12px;right:12px;bottom:12px;gap:5px;}
  .rfm-laidos-promo-cta{font-size:12px;padding:8px 10px;}
}

/* v0.6.3: ended-show recording buttons on /laidu-tinklelis/ */
.rfm-laidos-slot-main{
  justify-content:space-between;
  width:100%;
}
.rfm-laidos-slot-actions{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap:7px;
  flex:0 0 auto;
  margin-left:auto;
}
.rfm-laidos-record-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#e52d27;
  color:#fff !important;
  font-size:10px;
  line-height:1;
  font-weight: 800;
  letter-spacing:.10em;
  text-transform:uppercase;
  text-decoration:none !important;
  padding:7px 9px;
  box-shadow:0 9px 20px rgba(229,45,39,.20);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.rfm-laidos-record-badge:hover,
.rfm-laidos-record-badge:focus{
  background:#c91f1a;
  color:#fff !important;
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(229,45,39,.26);
}
@media (max-width:760px){
  .rfm-laidos-slot-main{
    flex-wrap:nowrap !important;
    gap:8px;
  }
  .rfm-laidos-slot-title{
    min-width:0;
  }
  .rfm-laidos-slot-actions{
    margin-left:auto;
  }
  .rfm-laidos-record-badge,
  .rfm-laidos-now-badge{
    font-size:9px;
    padding:6px 8px;
  }
}

/* v0.7.0: Komanda page */
.rfm-team-page{width:min(1180px,calc(100% - 32px));margin:34px auto 96px;color:#261c1d;font-family:var(--rfm-font-main,inherit)}.rfm-team-head{margin:0 0 22px;display:flex;flex-direction:column;align-items:flex-start;gap:8px}.rfm-team-kicker{display:inline-flex;align-items:center;gap:7px;border-radius:999px;background:rgba(229,45,39,.10);color:#e52d27;font-size:12px;line-height:1;font-weight: 800;letter-spacing:.14em;text-transform:uppercase;padding:8px 12px}.rfm-team-kicker:before{content:'';width:7px;height:7px;border-radius:999px;background:#e52d27;box-shadow:0 0 0 4px rgba(229,45,39,.10)}.rfm-team-head h1{margin:0;font-size:clamp(34px,4.6vw,64px);line-height:.95;font-weight: 800;letter-spacing:-.055em;text-transform:uppercase;color:#261c1d}.rfm-team-head p{margin:0;max-width:620px;color:rgba(38,28,29,.66);font-size:17px;line-height:1.45;font-weight: 700}.rfm-team-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.rfm-team-card{border-radius:26px;background:linear-gradient(135deg,rgba(255,255,255,.82),rgba(255,255,255,.56));border:1px solid rgba(255,255,255,.72);box-shadow:0 16px 42px rgba(38,28,29,.09),inset 0 1px 0 rgba(255,255,255,.76);overflow:hidden}.rfm-team-media{position:relative;aspect-ratio:16/9;background:linear-gradient(135deg,#3b101d,#e52d27);overflow:hidden}.rfm-team-slides,.rfm-team-slide{position:absolute;inset:0}.rfm-team-slide{opacity:0;transform:scale(1.018);transition:opacity .24s ease,transform .24s ease}.rfm-team-slide.is-active{opacity:1;transform:scale(1)}.rfm-team-img{width:100%;height:100%;object-fit:cover;display:block}.rfm-team-fallback{position:absolute;inset:0;display:grid;place-items:center;color:#fff;font-size:22px;font-weight: 800;letter-spacing:.12em;text-transform:uppercase}.rfm-team-media:after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.06) 45%,rgba(0,0,0,.42));pointer-events:none}.rfm-team-arrow{position:absolute;top:50%;z-index:3;width:36px;height:36px;border:0;border-radius:999px;background:rgba(255,255,255,.86);color:#e52d27;font-size:25px;line-height:1;font-weight: 800;display:grid;place-items:center;transform:translateY(-50%);cursor:pointer;box-shadow:0 8px 24px rgba(38,28,29,.12)}.rfm-team-prev{left:12px}.rfm-team-next{right:12px}.rfm-team-socials{position:absolute;right:14px;bottom:14px;z-index:4;display:flex;flex-wrap:wrap;justify-content:flex-end;gap:7px;max-width:70%}.rfm-team-socials a{width:34px;height:34px;border-radius:999px;background:rgba(255,255,255,.88);color:#e52d27;text-decoration:none;display:grid;place-items:center;font-size:10px;font-weight: 800;letter-spacing:.02em;text-transform:uppercase;box-shadow:0 8px 22px rgba(38,28,29,.14);border:1px solid rgba(255,255,255,.7)}.rfm-team-info{padding:18px}.rfm-team-titleline{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}.rfm-team-titleline h2{margin:0;color:#261c1d;font-size:clamp(22px,2.4vw,32px);line-height:1.02;font-weight: 800;letter-spacing:-.035em}.rfm-team-titleline span{display:inline-flex;align-items:center;gap:6px;border-radius:999px;background:rgba(229,45,39,.10);color:#e52d27;font-size:11px;line-height:1;font-weight: 800;letter-spacing:.12em;text-transform:uppercase;padding:8px 10px;white-space:nowrap}.rfm-team-titleline span:before{content:'';width:6px;height:6px;border-radius:999px;background:#e52d27}.rfm-team-show{margin:9px 0 0;color:#e52d27;font-size:14px;font-weight: 800;text-transform:uppercase;letter-spacing:.08em}.rfm-team-bio{margin:10px 0 0;color:rgba(38,28,29,.70);font-size:15px;line-height:1.48;font-weight: 600}.rfm-team-listen{margin:16px 0 0;border-radius:18px;background:rgba(255,255,255,.62);border:1px solid rgba(38,28,29,.07);overflow:hidden}.rfm-team-listen summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:13px 15px;color:#e52d27;font-size:12px;line-height:1;font-weight: 800;letter-spacing:.12em;text-transform:uppercase}.rfm-team-listen summary::-webkit-details-marker{display:none}.rfm-team-listen summary:after{content:'+';width:24px;height:24px;border-radius:999px;background:#e52d27;color:#fff;display:grid;place-items:center;font-size:16px;line-height:1}.rfm-team-listen[open] summary:after{content:'−'}.rfm-team-listen ol{margin:0;padding:0 15px 15px 34px}.rfm-team-listen li{margin:8px 0;color:#e52d27;font-weight: 800}.rfm-team-listen a{color:#261c1d;text-decoration:none;font-size:15px;font-weight: 800}.rfm-team-listen a:hover{color:#e52d27}.rfm-team-empty{border-radius:22px;background:rgba(255,255,255,.72);border:1px solid rgba(38,28,29,.08);padding:24px;color:rgba(38,28,29,.70);font-weight: 800}@supports ((-webkit-backdrop-filter:blur(10px)) or (backdrop-filter:blur(10px))){.rfm-team-card,.rfm-team-listen{-webkit-backdrop-filter:blur(12px) saturate(150%);backdrop-filter:blur(12px) saturate(150%)}}@media(max-width:900px){.rfm-team-grid{grid-template-columns:1fr}.rfm-team-page{margin-top:24px}.rfm-team-head h1{font-size:clamp(34px,12vw,52px)}}@media(max-width:640px){.rfm-team-page{width:min(100% - 22px,1180px);margin-bottom:72px}.rfm-team-head p{font-size:15px}.rfm-team-card{border-radius:22px}.rfm-team-info{padding:15px}.rfm-team-titleline{display:block}.rfm-team-titleline h2{font-size:25px}.rfm-team-titleline span{margin-top:10px}.rfm-team-socials a{width:31px;height:31px}.rfm-team-arrow{width:32px;height:32px}.rfm-team-bio{font-size:14px}.rfm-team-listen summary{font-size:11px;padding:12px 13px}.rfm-team-listen a{font-size:14px}}

/* v0.7.1: PNG social icons for Komanda */
.rfm-team-socials a.rfm-team-social{font-size:0;line-height:1;overflow:hidden}
.rfm-team-social-icon{width:18px;height:18px;display:block;object-fit:contain;filter:none}
.rfm-team-social-text{font-size:10px;font-weight: 800;letter-spacing:.02em;text-transform:uppercase;color:inherit}
.rfm-team-socials a.rfm-team-social-facebook .rfm-team-social-icon{width:15px;height:19px}
.rfm-team-socials a.rfm-team-social-instagram .rfm-team-social-icon{width:18px;height:18px}
.rfm-team-socials a.rfm-team-social:hover .rfm-team-social-icon{filter:brightness(0) invert(1)}
@media(max-width:640px){.rfm-team-social-icon{width:17px;height:17px}.rfm-team-socials a.rfm-team-social-facebook .rfm-team-social-icon{width:14px;height:18px}}


/* v0.7.2: multiple show badges in Komanda */
.rfm-team-shows{display:flex;flex-wrap:wrap;gap:7px;margin:10px 0 0}.rfm-team-show-pill{display:inline-flex;align-items:center;gap:6px;border-radius:999px;background:rgba(229,45,39,.10);color:#e52d27;font-size:12px;line-height:1;font-weight: 800;letter-spacing:.08em;text-transform:uppercase;padding:7px 10px}.rfm-team-show-pill:before{content:'';width:6px;height:6px;border-radius:999px;background:#e52d27}.rfm-team-show{margin:10px 0 0}


/* v0.7.4: Komanda page top spacing and intro copy polish */
body.page-komanda .entry-title,
body.page-komanda .page-title{
  display:none;
}
.rfm-team-page{
  margin-top:clamp(142px,9vw,168px) !important;
  scroll-margin-top:150px;
}
.rfm-team-head{
  margin-bottom:26px;
}
.rfm-team-head h1{
  font-size:clamp(30px,3.4vw,46px) !important;
  line-height:1.02 !important;
  letter-spacing:-.035em !important;
}
.rfm-team-head p{
  max-width:720px;
  font-size:clamp(16px,1.35vw,19px) !important;
  line-height:1.5 !important;
  color:rgba(38,28,29,.72) !important;
}
@media(max-width:900px){
  .rfm-team-page{
    margin-top:clamp(112px,16vw,138px) !important;
    scroll-margin-top:118px;
  }
  .rfm-team-head{
    margin-bottom:22px;
  }
  .rfm-team-head h1{
    font-size:clamp(29px,9vw,42px) !important;
  }
}
@media(max-width:640px){
  .rfm-team-page{
    margin-top:118px !important;
  }
  .rfm-team-head p{
    font-size:16px !important;
  }
}

/* v0.7.6: clickable team show pills */
.rfm-team-show-pill,
.rfm-team-show-pill:visited{
    text-decoration:none;
}
.rfm-team-show-pill:hover,
.rfm-team-show-pill:focus-visible{
    background:#e52d27;
    color:#fff;
    outline:none;
}
.rfm-team-show-pill:hover:before,
.rfm-team-show-pill:focus-visible:before{
    background:#fff;
}

/* v0.8.6: homepage banner can open Relax FM Messages popup */
.rfm-laidos-promo-banner.rfm-laidos-message-trigger{border:0;padding:0;font:inherit;text-align:left;cursor:pointer;width:100%;}
.rfm-laidos-promo-banner.rfm-laidos-message-trigger::-moz-focus-inner{border:0;padding:0;}
