/* ====== HERO ====== */
.hero-single-edition{
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  color: #fff;
  align-items: flex-start;
  flex-direction: column;
  justify-content: end;
}

.hero__content-single {
  height: 100%; 
  color: #fff; 
  display: flex; 
  flex-direction: column; 
  align-items: flex-start; 
  justify-content: center; 
  margin: 5% 7.5%; 
  gap: 20px; 
  max-width: 55%;
}

.hero__content-single h1 {
    font-size: 2.8rem;
    font-weight: 600;
}

.hero__content-single p {
    font-size: 20px;
    line-height: 1.4;
}

.hero__button {
    background: #004860;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.hero__button:hover {
    background: #00334a;
}

/* ====== TABS ====== */
.tabs-nav {
    display: flex;
    gap: 20px;
    margin: 5% 7.5% 30px;
    border-bottom: 2px solid #ccc;
}

.tabs-nav button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.tabs-nav button.active {
    border-color: #004860;
    color: #004860;
    font-weight: bold;
}

.tab-content {
    display: none;
    margin: 5% 7.5%;
}

.tab-content.active {
    display: block;
}

/* ====== VIDEO GRID ====== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-block video,
.video-block img {
    width: 100%;
    border-radius: 6px;
}

.video-meta {
    margin-top: 10px;
}

.video-meta span {
    color: #666;
}

/* ====== ACCESS WARNING ====== */
.no-access-warning {
    text-align: center;
    padding: 40px 20px;
}

.no-access-warning img {
    width: 100px;
    margin-bottom: 20px;
}

.no-access-warning h2 {
    color: #d9534f;
}

.no-access-warning ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    font-size: 17px;
    line-height: 160%;
}

.no-access-warning .hero__button {
    margin-right: 10px;
}

.connect-access{
  display: inline-flex; 
  gap: 20px; 
  margin-top: 20px; 
  align-items: center; 
  flex-wrap: wrap; 
  justify-content: center;
}

/* ====== SPEAKERS ====== */
.speaker-card {
    cursor: pointer;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
}

.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    max-width: 600px;
    position: relative;
}

.modal .close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    font-size: 22px;
}

@media screen and (max-width: 1280px) {

    .hero__content-single {
        max-width: 75%;
    }
    
    .hero__content-single h1 {
        font-size: 2.3rem;
        font-weight: 600;
    }
}

@media screen and (max-width: 768px) {
    .hero-single-edition{
      height: 100dvh;
      padding-bottom: unset;
      background-size: unset;
      background-repeat: no-repeat;
      background-size: auto;
      background-color: #6a6dcd;
      background-image: none !important;
    }

    .hero__content-single {
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
        margin: 0% 7.5%;
    }

    .tabs-nav {
        flex-direction: column;
        align-items: center;
    }

    .hero__button {
        width: max-content;
        text-align: center;
    }

    .hero-single-edition h1{
      font-size: 1.5rem;
    }

    .hero-single-edition p{
      font-size: 16px;
    }


}
