.single-post-hero::before {
  content: "";
  background: transparent;
  z-index: -4;
}

.page-content-wrapper .general-post-tag {
  color: #00154a;
  background: #e8ebef;
  font-weight: 600;
  border-radius: 999px;
  padding: 4px 8px;
  text-decoration: none;
}

.page-content-wrapper .dashicons {
  opacity: 0.4;
}

.hero-image-wrapper {
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.hero-image-wrapper .hero-image-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-image-wrapper .hero-image {
    display: none;
  }
  .hero-image-wrapper .hero-image-mobile {
    display: block;
  }
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.alt-image-container {
  position: relative;
  display: flex;
  aspect-ratio: 1/1;
  height: 100%;
  width: 100%;
}

.alt-image-container img {
  width: 100%;
  height: 100%;
  object-position: center;
  filter: blur(12.5px);
}

.alt-image-container h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-feature-settings: "ss04" on, "ss01" on;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.breadcrumbs {
  margin-bottom: 50px;
  max-width: 1200px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li a {
  color: #7e919c;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.breadcrumbs li a:hover {
  color: #00154a;
}

.breadcrumbs li:last-child a {
  color: #ee7149;
  font-weight: 500;
}

.breadcrumbs li:last-child a:hover {
  color: #ee7149;
}

.breadcrumbs .separator {
  display: flex;
  align-items: center;
  margin: 0 4px;
}

.breadcrumbs .separator svg {
  width: 16px;
  height: 16px;
  fill: #99a1b7;
}

.page-content-and-side-list {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  column-gap: 110px;
  padding-top: 24px;
  justify-content: space-between;
  box-sizing: border-box;
}

.post-title-and-date {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.post-title-and-date .page-title {
  color: #00154a;
  font-feature-settings: "ss04" on, "ss01" on;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  font-size: 72px;
}

.post-title-and-date .post_date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 8px;
  margin: 16px 0;
}

.post-title-and-date .post_date span:not(.dashicons) {
  color: #00154a;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.post-title-and-date .post-tags {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 12px;
  row-gap: 8px;
  column-gap: 8px;
}

.page-content-and-side-list .page-content a {
  color: #32baf6;
  font-weight: 600;
}

.page-content-and-side-list .page-content,
.page-content-and-side-list .page-content p {
  color: var(--Body-Blue, #4b5b80);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  max-width: 793px;
  margin-bottom: 48px;
}

.page-content-and-side-list .page-content p {
  margin-bottom: 16px;
}

.page-content-and-side-list .page-content img {
  max-width: 100%;
}

.page-content-and-side-list .page-content h1,
.page-content-and-side-list .page-content h2,
.page-content-and-side-list .page-content h3 {
  color: var(--Birthright-Israel-Navy, #00154a);
  margin: 16px 0;
  font-weight: 400;
}

.page-content-and-side-list .page-content > div:first-child > :first-child {
  margin-top: 0;
}

.page-content-and-side-list .page-content h1 {
  font-size: 40px;
}

.page-content-and-side-list .page-content h2 {
  font-size: 32px;
}

.page-content-and-side-list .page-content h3 {
  font-size: 24px;
}

@media (max-width: 1366px) {
  .breadcrumbs,
  .post-title-and-date,
  .page-content-and-side-list {
    max-width: 1054px;
  }
}

@media (max-width: 1280px) {
  .breadcrumbs,
  .post-title-and-date,
  .page-content-and-side-list {
    max-width: 968px;
  }
}

@media (max-width: 1200px) and (min-width: 992px) {
  .breadcrumbs {
    background: unset;
  }

  .breadcrumbs li a {
    color: #7e919c;
  }

  .breadcrumbs li:last-child a {
    color: #ee7149;
  }
}

@media (max-width: 1024px) {
  .breadcrumbs,
  .post-title-and-date,
  .page-content-and-side-list {
    max-width: 904px;
  }
}

@media (max-width: 992px) {
  section.single-post-hero {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
    margin: 0;
  }

  .page-content-and-side-list {
    flex-direction: column;
    column-gap: 0;
  }

  .breadcrumbs {
    max-width: 100%;
    width: 100%;
    padding: 1.5rem;
    margin: 0 !important;
    background-color: #00154a;
  }

  .breadcrumbs li a {
    color: #fff;
  }

  .breadcrumbs li:last-child a {
    color: #fff;
  }

  .breadcrumbs .separator svg {
    fill: #fff;
  }

  .page-content-wrapper {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .post-title-and-date .page-title {
    color: #00154a;
    font-feature-settings: "ss04" on, "ss01" on;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  }

  .page-content-and-side-list .page-content h1 {
    font-size: 32px;
  }

  .page-content-and-side-list .page-content h2 {
    font-size: 24px;
  }

  .page-content-and-side-list .page-content h3 {
    font-size: 20px;
  }

  .post-title-and-date .post-tags {
    padding-bottom: 20px;
  }

  .page-content-and-side-list {
    padding-top: 0;
  }

  .page-content-and-side-list .page-content {
    margin-bottom: 0;
  }
}
