.wea-bg-content {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.wea-bg-content__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.wea-bg-content__container {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.wea-bg-content__title {
  color: #fefefe !important;
}

.wea-bg-content__description {
  color: #fefefe !important;
}

.wea-bg-content__description {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .wea-bg-content {
    min-height: auto;
    padding: 8px 0;
  }

  .wea-bg-content__container {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .wea-bg-content__content {
    text-align: center;
  }
}
