.hero-masterclass {
  width: 100%;
  margin-bottom:20px;
  border-bottom: 10px solid #212529;
  background: #ffffff;
  color: #222;
}

.unamas-digital.view-registration .container-component {
    padding-top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXTO */
.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}

.highlight {
  color: #f5b400;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.event-info {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #333;
}

.speaker-box {
  position: relative;
  background:  #212529;
  color: #fff;
  padding: 25px;
  margin-top: 20px;
  border-left: 6px solid #f5b400;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.badge {
  display: inline-block;
  background: #f5b400;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.speaker-box h3 {
  margin: 8px 0;
  font-size: 1.3rem;
}

.speaker-box p {
  font-size: 0.95rem;
  color: #ddd;
}


/* IMAGEN */
.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .speaker-box {
    clip-path: none;
    border-left: none;
    border-top: 6px solid #f5b400;
  }

  .hero-masterclass {
    margin-top:20px;
  border-bottom: 0;
}

}