.lt-hero-unit__title {
  text-align: center;
  color: white;
  margin-block-end: 1rem;
  font-size: var(--H4-font-size);
  font-weight: var(--semibold);
  line-height: var(--H4-line-weight);

  @media (min-width: 768px) {
    margin-block-end: 1.5rem;
    font-size: var(--H3-font-size);
    line-height: var(--H3-line-weight);
  }
}

.lt-popular-searches {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: white;
  font-weight: var(--regular);

  @media (min-width: 768px) {
    flex-direction: row;
  }
}

.lt-popular-searches__label {
  font-size: var(--Small-Body-font-size);
  font-weight: var(--regular);
  font-stretch: normal;
  font-style: normal;
  line-height: var(--Small-Body-line-weight);
  letter-spacing: normal;

  @media (min-width: 768px) {
    font-size: var(--Body-font-size);
    line-height: var(--Body-line-weight);
  }
}

.lt-popular-searches__container {
  display: flex;
  height: 2rem;
  gap: 0.5rem;

  @media (max-width: 768px) {
    width: 100%;
    justify-content: center;
  }
}

.lt-popular-searches__item {
  color: white;
  font-size: var(--Small-Body-font-size);
  font-weight: var(--medium);
  font-stretch: normal;
  font-style: normal;
  line-height: var(--Small-Body-line-weight);
  letter-spacing: normal;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 4px 1rem;
  border-radius: 100px;

  @media (max-width: 768px) {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    font-size: var(--Captions-font-size);
    line-height: var(--Captions-line-weight);
    align-content: center;
    justify-items: center;
  }
}

.lt-popular-searches__item:focus {
  color: white;
}

.lt-popular-searches__item:hover {
  background-color: white;

  .lt-popular-search__label {
    background-image: var(--font-brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.lt-home-container {
  margin-top: 1.5rem;

  @media (min-width: 768px) {
    margin-top: 2rem;
  }

  @media (min-width: 992px) {
    margin-top: 2.625rem;
  }

}

.product-guides {
  padding-bottom: 1.5rem;

  @media (min-width: 768px) {
    padding-bottom: 2rem;
  }

  @media (min-width: 992px) {
    padding-bottom: 2.625rem;
  }
}

.product-guides-title {
  font-size: var(--Paragraph-font-size);
  font-stretch: normal;
  font-style: normal;
  line-height: var(--Paragraph-line-weight);
  letter-spacing: normal;
  font-weight: var(--semibold);
  margin-bottom: 1rem;

  @media (min-width: 768px) {
    font-size: var(--H5-font-size);
    line-height: var(--H5-line-weight);
  }

  @media (min-width: 992px) {
    font-size: var(--H4-font-size);
    line-height: var(--H4-line-weight);
  }
}

.product-card {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
}

.product-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-block-end: 1rem;
  list-style-type: none;
  padding: 0;

  @media (min-width: 768px) {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  }

  @media (min-width: 992px)  {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.product-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  gap: 0.75rem;
  padding: 1rem;
  color: var(--stonegrey-1200-p);
  border-radius: 0.5rem;
  height: 180px;

  @media (min-width: 768px) {
    padding: 1.5rem;
  }

  p {
    font-size: var(--Body-font-size);
    font-weight: var(--semibold);
    line-height: var(--Body-line-weight);
    letter-spacing: normal;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  span {
    font-size: var(--Small-Body-font-size);
    font-weight: var(--regular);
    line-height: var(--Small-Body-line-weight);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}

.product-tile:focus,
.product-tile:active,
.product-tile:hover {
  outline: solid 1px var(--stonegrey-1100-p);
  box-shadow: 0 8px 30px 0 rgba(74, 88, 120, 0.3);

  p {
    color: var(--blueberry-1000);
  }

  span {
    color: black;
  }
}

.promoted-articles-title {
  font-size: var(--Paragraph-font-size);
  font-weight: var(--semibold);
  font-stretch: normal;
  font-style: normal;
  line-height: var(--Paragraph-line-weight);
  letter-spacing: normal;
  margin-bottom: 1rem;

  @media (min-width: 768px) {
    font-size: var(--H5-font-size);
    line-height: var(--H5-line-weight);
  }

  @media (min-width: 992px) {
    font-size: var(--H4-font-size);
    line-height: var(--H4-line-weight);
  }
}

.lt-articles-accordion {
  padding-bottom: 1.5rem;

  @media (min-width: 768px) {
    padding-bottom: 2rem;
  }

  @media (min-width: 992px) {
    padding-bottom: 2.625rem;
  }
}

.submit-request-container {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 1rem 1.5rem;
  gap: 0.75rem;
  box-shadow: 0 8px 30px 0 rgba(74, 88, 120, 0.3);
  border-radius: 0.75rem;

  @media (min-width: 768px) {
    padding: 1.5rem;
    flex-direction: row;
    justify-content: space-between;
  }

  @media (min-width: 992px) {
    padding: 2.625rem;
  }

  .submit-request-btn {
    padding: var(--comps-button-small-padding);
  height: var(--comps-button-small-height);
  border-radius: var(--comps-button-small-border-radius);
  font-size: var(--comps-button-label-small-font-size);
  line-height: var(--comps-button-small-line-height);

  @media (min-width: 992px)  {
    padding: var(--comps-button-medium-padding);
  height: var(--comps-button-medium-height);
  border-radius: var(--comps-button-medium-border-radius);
  font-size: var(--comps-button-label-medium-font-size);
  line-height: var(--comps-button-medium-line-height);
  }
  }
}

.section-text-container {
  background-image: var(--font-brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-text {
  margin: 0;
  font-size: var(--Paragraph-font-size);
  font-weight: var(--bold);
  line-height: var(--Paragraph-line-weight);

  @media (min-width: 768px) {
    font-size: var(--Paragraph-font-size);
    line-height: var(--H5-line-weight);
  }

  @media (min-width: 992px) {
    font-size: var(--H4-font-size);
    line-height: var(--H4-line-weight);
  }

  @media (min-width: 1200px) {
    font-size: var(--H3-font-size);
    line-height: var(--H3-line-weight);
  }
}

