/* Style pour la popup vidéo Broadpeak */
.hero-section {
  position: relative;
}
.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  transition: background 0.2s;
  z-index: 2;
  background-color: white;
  height: 60px;
  width: 60px;
}
.hero-play-btn:hover {
  background: #f6fbf9;
}

.tab-menu-item, .status-badge-title {
	font-family: "PP Object Sans";
}

.hero-overlay {
  background: rgb(0 0 0 / 30%);
}

#videoPopup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}
#videoPopup > div {
  position: relative;
  width: 90vw;
  max-width: 800px;
}
#videoPopup button[aria-label="Fermer"] {
  position: absolute;
  top: -32px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
#videoPopup video {
  border-radius: 16px;
  background: #000;
  width: 100%;
  height: 450px;
}

.tab-menu {
  display: flex;
  gap: 24px;
  background: #f6fbf9;
  padding: 24px 32px 0 32px;
  border-radius: 0 0 18px 18px;
  align-items: center;
}
.tab-menu-item {
  color: #1a2b27;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 24px;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.tab-menu-item.active {
  background: #12211c;
  color: #fff;
}
.mediumTitle {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}