#hero {
  margin-top: 12px;
  background-image: url('../../../images/2024/news/hero-bg.png');
  background-image: image-set(url('../../../images/2024/news/hero-bg.png') 1x,
      url('../../../images/2024/news/hero-bg@2x.png') 2x);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 37px 0 33px 0px;
  margin-bottom: 5px;
}

#hero .title {
  font-size: 38px;
  overflow: hidden;
}

#hero .title span {
  position: relative;
}

#hero .title span::before {
  content: '';
  position: absolute;
  background-color: var(--yellow);
  height: 2px;
  top: 17px;
  left: -140px;
  width: 123px;
}

#hero .title span::after {
  content: '';
  position: absolute;
  background-color: var(--yellow);
  height: 2px;
  top: 17px;
  right: -140px;
  width: 123px;
}

@media screen and (max-width: 567px) {
  #hero {
    margin-top: 22px;
    margin-bottom: 0;
  }

  #hero .title {
    font-size: 31px;
    line-height: 0.9;
  }

  #hero .title span::before,
  #hero .title span::after {
    top: 12px;
  }
}