.page--blog-banca28-live {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8; /* Light background */
}

.page--blog-banca28-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page--blog-banca28-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #1a2a47; /* Darker background for hero */
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  color: #ffffff;
}

.page--blog-banca28-live__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page--blog-banca28-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page--blog-banca28-live__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page--blog-banca28-live__main-title {
  font-size: clamp(2em, 5vw, 2.8em); /* Responsive font size */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page--blog-banca28-live__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page--blog-banca28-live__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page--blog-banca28-live__btn-primary,
.page--blog-banca28-live__btn-secondary,
.page--blog-banca28-live__btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page--blog-banca28-live__btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  border: 2px solid #2563eb;
}

.page--blog-banca28-live__btn-primary:hover {
  background-color: #1a4ed8;
  border-color: #1a4ed8;
  transform: translateY(-2px);
}

.page--blog-banca28-live__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page--blog-banca28-live__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}