
.conference-logo-wrapper,
.upcoming-conference-wrapper {
  width: 180px;
  height: 100px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.conference-logo,
.upcoming-conference {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.upcoming-conference-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}


.conference-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.conference-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 70%;
}

.conference-info img {
  object-fit: contain;
  background-color: black /* opcional si el fondo es negro */
    padding: 0.25rem; /* opcional para darles aire */
}

.conference-info span {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: Lausanne, Arial, sans-serif;
}

.conference-status {
  font-size: 1.875rem;;
  font-weight: 400;
  font-family: Lausanne, Arial, sans-serif;
  text-align: left;
  width: 30%;
}

.conference-announcement {
  background-color: black;
  color: white;
  padding: 2.5rem 1.25rem 0; /* 40px 20px */
  text-align: center;
}

.conference-announcement h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
  font-family: 'Lausanne';
  margin-top: 2.813rem;
}

.conference-announcement h2 em {
  font-style: italic;
}

.conference-content-column, .upcoming-conferences-column {
  display: flex;
  flex-direction: column;
}

.conference-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}


.conference-details {
  display: flex;
  width: 50%;
  align-items: baseline;
  flex-direction: column;
  padding-left:20%;
}

.speaker-profile-column {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  width:50%;
  text-align: left;
}

.speaker-profile {
  width: 100%;
  text-align: left;
}


.conference-date {
  font-size: 1.1rem;
  color: #a1a1aa;
  margin-bottom: 1.25rem; /* 20px */
}

.conference-description {
  font-size: 1.25rem;
  font-weight: 200;
  font-family: Lausanne;
}

.meet-button {
  color: black;
  background: linear-gradient(180.78deg, #48B0FF 0.33%, #2BA3FF 98.99%);
  width: 11.25rem; /* 180px */
  padding: 0.6875rem 1.25rem 0.75rem 1.5rem; /* 11px 20px 12px 24px */
  border-radius: 0 1.875rem 1.875rem 1.875rem; /* 0 30px 30px 30px */
  box-shadow: 0 0.25rem 0.25rem rgba(8, 25, 60, 0.2);
  opacity: 1;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Lausanne, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 450;
}

.meet-button:hover {
  background: linear-gradient(180.78deg, #7AC6FF 0.33%, #48B0FF 98.99%);
  color: white;
  border: none;
}

.meet-button:active {
  color: white;
  background: #0063AE;
  border: 0.125rem solid #2BA3FF; /* 2px */
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.speaker-profile {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
}

.speaker-photo {
  border: 0.1875rem solid #2ea3f2; /* 3px */
  border-radius: 50%;
  width: 9.375rem; /* 150px */
  height: 9.375rem; /* 150px */
  object-fit: cover;
}

.speaker-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.speaker-info h3 {
  font-size: 1.875rem;
  font-weight: 450;
  font-family: Lausanne;
  line-height: 1.2;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.3125rem; /* 5px */
  margin: 0;
}

.linkedin-icon img {
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  max-width: none;
}

.speaker-title {
  font-size: 1.25rem;
  font-weight: 200;
  color: #ccc;
  font-family: Lausanne;
  margin: 0;
}

.conference-separator, .conference-separator-future {
  border: none;
  border-top: 1px solid #6b7280; /* Light gray line */
  width: 90%;
  max-width: 1200px;
  margin: 4rem auto 1rem; /* Center horizontally + space vertically */
  opacity: 0.6;
}

.conference-separator-future {
  margin: 1rem auto 1rem; 
}



@media screen and (max-width: 768px) {
  .upcoming-conference-wrapper {
    width: 300px;
  }
  .conference-row {
    flex-direction: column;
  }

  .conference-info {
    text-align: center;
    justify-content: center;
  }
  .conference-status {
    margin-top: 1rem;
    margin-top: 1rem;
    width: 80%;
    font-size: 1.25rem;
    text-align: center;
    justify-content: center;
  }

  .conference-content {
    flex-direction: column;
  }

  .speaker-profile {
    text-align: center;
  }

  .speaker-profile-column {
    text-align: center;
    row-gap: 3rem;
  }

  .conference-details {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding-left:0%;
  }

  .speaker-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .speaker-info {
    align-items: center;
  }

  .conference-logo {
    max-width: 80%;
  }

  .speaker-photo {
    width: 7.5rem; /* 120px */
    height: 7.5rem; /* 120px */
  }

  .speaker-info h3 {
    font-size: 1.75rem;
  }

  .speaker-title {
    font-size: 1.125rem;
  }

  .meet-button {
    width: 100%;
    max-width: 18.75rem; /* 300px */
  }
}
