/* Link contenitore */
.webinar-banner-link {
  text-decoration: none;
  display: flex;
  justify-content: center; /* centro orizzontale */
}

/* Banner principale */
.webinar-banner {
  position: relative;
  /* width: 970px; */
  width: 768px;
  /* height: 250px; */
  /*height: 90px; */
  height: 130px;
  /* font-family: 'Arial', sans-serif; */
  font-family: 'Exo 2', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Immagine in foreground */
.webinar-banner .banner-image {
  position: absolute;
  top: 0;
  left: 0;
 /* width: 100%; */
 /* height: 100%; */
  object-fit: cover; /* mantiene proporzioni */
  z-index: 1;
}

/* Contenuto testo e bottone */
.webinar-banner .banner-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0,0,0,0.4); /* overlay per leggibilità/
  padding: 15px;
  color: white;
}

/* Titolo e sottotitolo */
.banner-title {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: bold;
}

.banner-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Bottone */
.banner-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.banner-btn:hover {
  transform: translateY(-2px);
}

/* Responsive Mobile (<576px) */
@media (max-width: 575.98px) {
  .webinar-banner {
   width: 320px;
   height: 100px;
  }

  .banner-title {
    font-size: 18px;
  }

  .banner-subtitle {
    font-size: 12px;
  }

  .banner-btn {
    padding: 6px 15px;
    font-size: 12px;
  }
}
