.top-bar p, 
.top-bar p > a {
  margin: 0;
  color: var(--text-inverse);
  line-height: var(--line-height-120);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.top-bar-left > p {
  display: flex;
  gap: 0.5rem;
}


.top-bar-right p > a {
  text-decoration: none;
}

.top-bar-left > a:hover,
.top-bar p > a:hover {
  text-decoration: underline;
}

.top-bar-right p > a:hover {
  text-decoration: underline;
}

.top-bar-right div:nth-last-child(1) > p > a {
  font-weight: var(--text-light);
}

.top-bar {
  display: flex;
  flex-direction: column-reverse;
}

.top-bar-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: start;
  border-top: 0.0625rem solid var(--border-subtle-selected);
  padding-top: 1.5rem;

}

.top-bar-left .icon,
.top-bar-left .icon img {
  width: 1.5rem;
  height: 1.5rem;
}

.top-bar-left .icon-phone,
.top-bar-left .icon-phone img {
  width: 1.2rem;
  height: 1.5rem;
}

.top-bar-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: start;
  margin-top: 2.06rem;
  margin-bottom: 1.5rem;
}

.top-bar-right div:nth-last-child(1) > p > a > strong {
  font-weight: var(--text-regular);
  margin-right: 0.375rem;
}

.top-bar-right div:nth-last-child(2) > p {
  font-weight: var(--text-regular);
}

/* stylelint-disable media-feature-range-notation */
@media only screen and (min-width: 1270px) {
  .top-bar-right .top-bar-links > p > a {
    text-decoration: none;
    cursor: pointer;
  }

  .top-bar-right div:nth-last-child(1) > p > a {
    font-weight: var(--text-light);
    text-decoration: underline;
  }

  .top-bar-left div:nth-child(2) > p > a { 
    text-decoration: none;
  }

  .top-bar-right .top-bar-links > p > a:hover {
    text-decoration: underline;
  }

  .top-bar-left div:nth-child(2) > p > a:hover { 
    text-decoration: underline;
  }

  .top-bar-wrapper {
    width: 100%;
    margin: 1rem 4.44rem;
  }
  
  .top-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
  }

  .top-bar-left, .top-bar-right {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    border-top: none;
    padding-top: 0;
    margin: 0;
    height: 1.5rem;
  }

  .top-bar-right {
    align-items: center;
  }
  
  .top-bar-left div:nth-child(2) > p {
    padding-left: 1.5rem;
    border-left: 0.0625rem solid var(--border-sky);
  }

  /* stylelint-disable no-descending-specificity */
  .top-bar-right .top-bar-links:nth-child(3) > p > a {
    font-weight: var(--text-medium);
    text-decoration: none;
  }

  .top-bar-right div:nth-last-child(1) > p,
  .top-bar-right div:nth-last-child(2) > p,
  .top-bar-right div:nth-last-child(3) > p {
    padding-left: 1.5rem;
    border-left: 0.0625rem solid var(--border-sky);
  }

  .top-bar-right div:nth-last-child(1) > p > a > strong {
    font-weight: var(--text-medium);
    text-decoration: none;
  }
}