/* Hero section background */
.amp-hero-container {
  background-size: cover;
  background-position: center center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  position: relative;
  margin-bottom: 30px;
}

/* Hero content container */
.amp-hero-content {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

/* Content box background */
.content-box-background {
  background-color: rgba(255, 255, 255, 0.93);
  border-radius: 4px;
  padding: 20px;
}

/* Centre logo */
.amp-hero-section_image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Stretch buttons equally across banner */
.amp-hero-section_call-to-action {
  display: flex;
  width: 100%;
  text-align: center;
}

.amp-hero-section_call-to-action > * {
  margin-right: 20px;
}

.amp-hero-section_call-to-action > *:last-child {
  margin-right: 0;
}

.amp-hero-section_call-to-action .btn {
  max-width: none;
}

.amp-hero-section_call-to-action-column {
  flex: 1;
}

/* Mobile edits */
@media screen and (max-width: 767px) {
  .amp-hero-section_call-to-action {
    flex-direction: column;
    gap: 8px;
  }

  .amp-hero-section_call-to-action > * {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .amp-hero-section_call-to-action > *:last-child {
    margin-bottom: 0;
  }
}