.listing {
  margin-top: 5rem;
}

@media (max-width: 1024px) {
  .listing {
    width: 90%;
    margin: 5rem auto 0;
  }
}

.listing .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.listing-left {
  flex-basis: 30%;
}

@media (max-width: 1024px) {
  .listing-left {
    flex-basis: 100%;
  }
}

.blog-nav {
  background-color: #fff;
  padding: 3rem;
  box-shadow: 0 0 3rem 0 rgba(35, 51, 73, 0.2);
  border-radius: 0.5rem;
}

.blog-nav-li {
  display: block;
  width: 100%;
}

.blog-nav-li > a {
  width: 100%;
  font-size: 1em;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.3rem 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: all 0.3s ease;
}

.blog-nav-li a span {
  display: none;
}

.blog-nav-li.menu-active > a,
.blog-nav-sub-li.menu-active > a {
  color: #000 !important;
  font-weight: 700;
}

.blog-nav-li-accordion a span {
  display: block;
}

.blog-nav-li a:hover {
  color: #333;
}

.blog-nav-sub {
  display: none;
  width: 100%;
  padding-left: 1rem;
}

.blog-nav-sub-li {
  display: block;
  width: 100%;
}

.blog-nav-sub-li > a {
  display: block;
  width: 100%;
  padding: 0.3rem 0;
  font-size: 1em;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.blog-nav-sub-li > a:hover {
  color: #333;
}

.blog-nav-li.open .blog-nav-sub {
  display: block;
}

.blog-nav-li.open span img {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.listing-right {
  flex-basis: 67%;
}

@media (max-width: 1024px) {
  .listing-right {
    flex-basis: 100%;
    margin-top: 4rem;
  }
}

.listing-search-restult {
  margin-bottom: 3rem;
}

.listing-search-restult h1 {
  font-size: 2.6rem;
  color: #292c39;
  font-weight: 400;
}

.listing-search-restult h1 strong {
  color: #0078e7;
  text-transform: uppercase;
}

.listing-item {
  margin-bottom: 3rem;
  border-bottom: 0.4rem solid #0083c8;
  padding-bottom: 3rem;
}

.listing-cover {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.listing-cover img {
  min-width: 100%;
  height: 44rem;
  object-fit: cover;
}

.listing-item-header {
  margin-top: 2rem;
}

.listing-item-header h1 {
  font-size: 2.6rem;
  line-height: 2.8rem;
  color: #292c39;
  font-weight: 700;
}

.listing-item:hover .listing-item-header h1 {
  text-decoration: underline;
}

.highcontrast .listing-item-header h1 {
  color: #fff;
}

.listing-item-header p {
  font-size: 1.6rem;
  color: #292c39;
  font-weight: 500;
  margin-top: 2rem;
  display: block;
}

.highcontrast .listing-item-header p {
  color: #fff;
}

.listing-item-header p i {
  color: #0083c8;
  margin-right: 0.5rem;
}

.highcontrast .listing-item-header p i {
  color: #ffc506;
}
