/*!***********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/webcast-live/style.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* =====================================================================
   VARIABLES
===================================================================== */
/* =====================================================================
   LAYOUT — 2 colonnes sticky (player gauche, schedule droite)
===================================================================== */
.webcast-live-block .wc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.webcast-live-block .wc-player-col {
  position: sticky;
  top: 100px;
  align-self: start;
}
.webcast-live-block .wc-right {
  min-width: 0;
}
@media (max-width: 900px) {
  .webcast-live-block .wc-layout {
    grid-template-columns: 1fr;
  }
  .webcast-live-block .wc-player-col {
    position: static;
  }
}

/* =====================================================================
   PLACEHOLDER
===================================================================== */
.webcast-live-block .wc-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #003f6b 0%, #005f94 60%, #0076a1 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.webcast-live-block .wc-placeholder::before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.webcast-live-block .wc-placeholder::after {
  content: "";
  position: absolute;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.webcast-live-block .wc-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.webcast-live-block .wc-placeholder-logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.webcast-live-block .wc-placeholder-logo .wc-placeholder-logo-itu {
  color: #ffffff;
}
.webcast-live-block .wc-placeholder-logo .wc-placeholder-logo-webcast {
  color: #009cd6;
}
.webcast-live-block .wc-placeholder-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #009cd6;
  display: none !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(0, 156, 214, 0.2);
  flex-shrink: 0;
}
.webcast-live-block .wc-placeholder-hint {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  max-width: 260px;
  line-height: 1.5;
  margin: 0;
}
.webcast-live-block .wc-placeholder.wc-placeholder-hidden {
  display: none;
}

/* =====================================================================
   INLINE PLAYER (global)
===================================================================== */
.webcast-live-block .wc-inline-player {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.webcast-live-block .wc-inline-player.wc-inline-hidden {
  display: none;
}
.webcast-live-block .wc-inline-player.wc-inline-visible {
  display: block;
}
.webcast-live-block .wc-inline-player .wc-inline-video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: #000;
}

/* =====================================================================
   SIDE TITLE
===================================================================== */
.webcast-live-block .wc-side-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #003f6b;
  margin: 0 0 16px;
}

/* =====================================================================
   DISCLAIMER
===================================================================== */
.webcast-live-block .wc-disclaimer {
  margin-top: 2rem;
}
.webcast-live-block .wc-disclaimer-toggle {
  display: inline-block;
  border: 2px solid #0076a1;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  width: auto;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 500;
  color: #0076a1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.webcast-live-block .wc-disclaimer-toggle.open {
  background: #009cd6;
  color: #fff;
}
.webcast-live-block .wc-disclaimer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.webcast-live-block .wc-disclaimer-content p {
  font-size: 0.9rem;
  color: #3a3a3a;
  margin: 1rem 0;
}

/* =====================================================================
   CARD GRID + CARDS (classic style for live)
===================================================================== */
.webcast-live-block .wc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}
.webcast-live-block .wc-card {
  background-color: #fff;
  padding: 16px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border-left: 3px solid transparent;
}
.webcast-live-block .wc-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateX(2px);
  border-left-color: #009cd6;
}
.webcast-live-block .wc-card-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.webcast-live-block .wc-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.webcast-live-block .wc-card-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
  color: #111;
}
.webcast-live-block .wc-room {
  font-size: 0.82rem;
  color: #009cd6;
  font-weight: 500;
}
.webcast-live-block .wc-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.webcast-live-block .wc-languages .lang-tag {
  background: #e5f5fb;
  padding: 3px 9px;
  border-radius: 3px;
  font-size: 0.76rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #333;
  border-bottom: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.webcast-live-block .wc-languages .lang-tag:hover {
  color: #009cd6;
  border-bottom-color: #009cd6;
}
.webcast-live-block .wc-languages .lang-tag:hover .lang-play {
  color: #009cd6;
  opacity: 1;
}
.webcast-live-block .wc-languages .lang-tag.active {
  background: #009cd6;
  color: #fff;
  border-bottom-color: #009cd6;
}
.webcast-live-block .wc-languages .lang-tag.active .lang-play {
  color: #fff;
  opacity: 1;
}
.webcast-live-block .wc-languages .lang-play {
  font-size: 0.65rem;
  line-height: 1;
  color: #000;
  opacity: 0.7;
  padding-right: 3px;
  transition: color 0.15s, opacity 0.15s;
}
.webcast-live-block .wc-date {
  font-size: 0.8rem;
  color: #888;
}
.webcast-live-block .wc-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: #8D9AAB;
  font-size: 0.9rem;
}

/* =====================================================================
   FILTER BAR
===================================================================== */
.webcast-live-block .wc-search-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}
.webcast-live-block .wc-search-input {
  width: 100%;
  padding: 9px 18px 9px 40px;
  border-radius: 30px;
  border: 1px solid #dce3ec;
  font-size: 0.9rem;
  box-sizing: border-box;
}
.webcast-live-block .wc-search-input:focus {
  border-color: #009cd6;
  box-shadow: 0 0 0 2px rgba(0, 153, 214, 0.15);
  outline: none;
}
.webcast-live-block .wc-search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
}
.webcast-live-block .wc-days-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #d0d7e2;
  padding-bottom: 4px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.webcast-live-block .wc-day-tab {
  background: transparent;
  border: none;
  padding: 7px 10px;
  cursor: pointer;
  color: #666;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  border-radius: 4px 4px 0 0;
  transition: 0.2s;
}
.webcast-live-block .wc-day-tab.active {
  color: #000;
  background: #e8f5ff;
  border-bottom-color: #009cd6;
}
.webcast-live-block .wc-day-tab:hover {
  color: #009cd6;
  border-bottom-color: #009cd6;
}
.webcast-live-block .wc-filter-room-inline select,
.webcast-live-block .wc-filter-session-inline select {
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid #d0d7e2;
  background: #fff;
  font-size: 0.82rem;
}
.webcast-live-block .wc-filter-room-inline {
  margin-left: auto;
}
.webcast-live-block .wc-filter-session-inline {
  margin-left: 6px;
}

/* =====================================================================
   DARK THEME
===================================================================== */
.webcast-live-block.theme-dark .wc-side-title {
  color: #e4e9f0;
}
.webcast-live-block.theme-dark .wc-card {
  background: #1a2332;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.webcast-live-block.theme-dark .wc-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.webcast-live-block.theme-dark .wc-card-title {
  color: #e4e9f0;
}
.webcast-live-block.theme-dark .wc-room {
  color: rgb(10, 188.5981308411, 255);
}
.webcast-live-block.theme-dark .wc-date {
  color: #6b7a8d;
}
.webcast-live-block.theme-dark .wc-languages .lang-tag {
  background: rgba(0, 156, 214, 0.12);
  color: #a0aab8;
}
.webcast-live-block.theme-dark .wc-languages .lang-tag:hover {
  color: #009cd6;
}
.webcast-live-block.theme-dark .wc-languages .lang-tag.active {
  background: #009cd6;
  color: #fff;
}
.webcast-live-block.theme-dark .wc-search-input {
  background: #1a2332;
  border-color: #2d3a4a;
  color: #e4e9f0;
}
.webcast-live-block.theme-dark .wc-search-input::-moz-placeholder {
  color: #6b7a8d;
}
.webcast-live-block.theme-dark .wc-search-input::placeholder {
  color: #6b7a8d;
}
.webcast-live-block.theme-dark .wc-days-tabs {
  border-bottom-color: #2d3a4a;
}
.webcast-live-block.theme-dark .wc-day-tab {
  color: #8D9AAB;
}
.webcast-live-block.theme-dark .wc-day-tab.active {
  color: #e4e9f0;
  background: rgba(0, 156, 214, 0.12);
}
.webcast-live-block.theme-dark .wc-filter-room-inline select,
.webcast-live-block.theme-dark .wc-filter-session-inline select {
  background: #1a2332;
  border-color: #2d3a4a;
  color: #e4e9f0;
}
.webcast-live-block.theme-dark .wc-disclaimer-toggle {
  border-color: rgb(0, 174.5887850467, 239.5);
  color: rgb(10, 188.5981308411, 255);
}
.webcast-live-block.theme-dark .wc-disclaimer-toggle.open {
  background: #009cd6;
  color: #fff;
}
.webcast-live-block.theme-dark .wc-disclaimer-content p {
  color: #c0c8d4;
}

/* =====================================================================
   MOBILE
===================================================================== */
@media (max-width: 768px) {
  .webcast-live-block .wc-days-tabs {
    display: none !important;
  }
  .webcast-live-block .wc-mobile-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }
  .webcast-live-block .wc-mobile-filters > * {
    flex: 1 1 0;
  }
  .webcast-live-block .wc-mobile-filters select {
    width: 100%;
    padding: 9px 12px;
    border-radius: 8px;
    background: #fff;
    font-size: 0.9rem;
  }
  .webcast-live-block .wc-grid {
    grid-template-columns: 1fr;
  }
}
.webcast-live-block .wc-days-select-wrap {
  display: none;
}

@media (max-width: 768px) {
  .webcast-live-block .wc-days-select-wrap {
    display: block;
    margin-bottom: 10px;
  }
  .webcast-live-block .wc-days-select {
    width: 100%;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid #d0d7e2;
    background: #fff;
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=style-index.css.map*/