@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

.bg-lives {
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 48px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F2F4F7 100%);
  border-bottom: 1px solid #D1D5DB
}

#live-container {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 10px 25px;
}

/* Destaque do primeiro vídeo (grande) */
#live-container .live-card:first-child {
  grid-row: span 3;
  display: flex;
  justify-content: center;
}

/* Estilo base */
.live-card {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


.iframe-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.live-card p {
  font-family: Roboto Condensed;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #4B5563;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

}


/* Informações de texto */
.live-card .live-info {
  margin-bottom: 10px;
  padding: 10px;
}

.live-card .badge {
  background: black;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 10px;
}

.live-card h3 {
  font-family: Roboto Condensed;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

}

.live-card .status {
  font-family: Roboto Condensed;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
}
.status.live-now {
  color: #047857;
  padding: 15px 0;
}

.status.live-ended {
  color: #4B5563;
  padding: 15px 0;
}


/* Vídeo container */
.iframe-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Tamanho fixo do vídeo principal */
.live-card:first-child .iframe-wrapper img {
  width: 100%;
  height: 384px;
  border-radius: 20px;
  object-fit: cover;
}

/* Estilo horizontal para os da lateral */
.live-card:not(:first-child) {
  flex-direction: row;
  align-items: center;
}

.live-card:not(:first-child) .live-info {
  padding-right: 20px;
  max-width: 220px;
}

.live-card:not(:first-child) .iframe-wrapper img {
  width: 370px;
  height: 195px;
  border-radius: 20px;
  object-fit: cover;
}



@media (min-width: 769px) {
  #live-container {
    position: relative;
  }

  #live-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #ccc;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #live-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .live-card:not(:first-child) {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .live-card:first-child .iframe-wrapper img {
    width: 100%;
    height: 268px;
    border-radius: 20px;
    object-fit: cover;
  }

  .live-card:not(:first-child) .iframe-wrapper img {
    width: 163px;
    height: 170px;
    border-radius: 20px;
    object-fit: cover;
  }

  .live-card h3 {
    font-size: 18px;
  }

  .live-card p {
    font-size: 13px;
  }
}