@layer components {
  .home-depot-banner {
    display: flex;
    align-items: flex-start;
    column-gap: 0.5rem;
    background: transparent;
    padding: 0;
  }
  .home-depot-banner__image {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
  }
  .home-depot-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .home-depot-banner__content {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    row-gap: 0.25rem;
    min-width: 0;
    color: var(--theme-text-primary);
  }
  .home-depot-banner__content p {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    margin-block: 0;
  }
  .home-depot-banner__content :is(p, ul, ol) + :is(p, ul, ol) {
    margin-top: 0;
  }
  .home-depot-banner__content a,
  .home-depot-banner__content a.button {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    transition: background-size 0.45s cubic-bezier(0.5, 0, 0, 1), background-position 0.45s cubic-bezier(0.5, 0, 0, 1);
    display: inline;
    padding: 0;
    border: none;
    border-radius: 0;
    min-height: auto;
    color: var(--theme-text-primary);
    text-decoration: none;
    background-image: linear-gradient(currentcolor, currentcolor);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100% 0.09375rem;
  }
  .home-depot-banner__content a.hover, .home-depot-banner__content a:hover,
  .home-depot-banner__content a.button.hover,
  .home-depot-banner__content a.button:hover {
    background-size: 0% 0.09375rem;
  }
  .home-depot-banner__content a.focus, .home-depot-banner__content a:focus-visible,
  .home-depot-banner__content a.button.focus,
  .home-depot-banner__content a.button:focus-visible {
    outline: 0.125rem solid var(--theme-focus-primary);
    outline-offset: 0.25rem;
    border-radius: 6rem;
  }
  @media (prefers-reduced-motion: reduce) {
    .home-depot-banner__content a,
    .home-depot-banner__content a.button {
      transition: none;
    }
  }
  .home-depot-banner__content a .button-content,
  .home-depot-banner__content a.button .button-content {
    display: inline;
    -webkit-text-stroke-width: 0;
  }
  .home-depot-banner__content a .button-content::before, .home-depot-banner__content a .button-content::after,
  .home-depot-banner__content a.button .button-content::before,
  .home-depot-banner__content a.button .button-content::after {
    content: none;
  }
}