.hero {
  height: calc(100vh - 64px);
}

.hero-image {
  object-fit: cover;
  position: absolute;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #314f6d 100%);
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    #314f6d 100%
  );
  max-height: 100%;
}

.hero-text {
  padding-bottom: 5%;
}

.hero-text h1 {
  width: 60%;
  font-size: 3rem;
  font-weight: 700;
}

.blog-lung-cancer {
  background-color: #4A4F6A;
}

.bgc-lung-cancer {
  object-fit: cover;
  mask-image: linear-gradient(to top, #4a4f6a00 0%, #4a4f6a 100%);
  -webkit-mask-image: linear-gradient(
    to top,
    #4a4f6a00 0%,
    #4a4f6a 100%
  );
}

.blog-asthma {
  background-color: #3E4E50;
}

.bgc-asthma {
  object-fit: cover;
  mask-image: linear-gradient(to top, #3E4E5000 0%, #3E4E50 100%);
  -webkit-mask-image: linear-gradient(
    to top,
    #3E4E5000 0%,
    #3E4E50 100%
  );
}

.blog-copd {
  background-color: #314F6D;
}

.bgc-copd {
  object-fit: cover;
  mask-image: linear-gradient(to top, #3E4E5000 0%, #314F6D 100%);
  -webkit-mask-image: linear-gradient(
    to top,
    #314F6D00 0%,
    #314F6D 100%
  );
}

.author-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-link {
  text-decoration: none;
  color: inherit;
}

.blog-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.blog-intro-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 0.45rem;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 500;
}

.blog-intro-tag--lung-cancer {
  background: #DADBF8;
  color: #4A4F6A;
}

.blog-intro-tag--asthma {
  background: #ADEBB3;
  color: #3E4E50;
}

.blog-intro-tag--copd {
  background: #D7E4F0;
  color: #314F6D;
}

.lg-display {
  display: none !important;
}

.sm-display {
  display: block !important;
}

.store-image {
  height: 3rem;
}

.appstore-image {
  margin-right: 2rem;
}

@media screen and (max-width: 991px) {
  .hero-background {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
  }

  .hero-image {
    max-height: 75%;
  }

  .hero-text {
    height: 100%;
    justify-content: end;
    padding-bottom: 15%;
  }

  .hero-text h1 {
    width: 100%;
    font-size: 2.5rem;
    font-weight: 600;
  }

  .appstore-image {
    margin-right: 0.3rem;
  }

  .section-info {
    padding: 0;
  }
}

@media screen and (min-width: 992px) {
  .lg-display {
    display: block !important;
  }

  .sm-display {
    display: none !important;
  }
}
