.single-post .single-nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.single-post .single-nav-wrapper a {
  text-decoration: none;
}

.single-nav a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.single-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.breadcrumbs {
  margin: 10px 0;
  font-size: 14px;
}

.breadcrumbs .separator {
  margin: 0 3px;
}

.single-thumbnail {
  width: 100%;
  height: 560px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
}

.single-thumbnail .meta {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 28px;
}

.related-posts-wrapper {
  margin-top: 48px;
  margin-bottom: 48px;
}

.related-posts-title {
  margin-bottom: 32px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* XXL Screens (1800px and up) */
@media (min-width: 1800px) {
}

/* XL Screens (1600px-1799px) */
@media (min-width: 1600px) and (max-width: 1799px) {
}

/* Large Screens (1400px-1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
}

/* Medium-Large Screens (1200px-1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
}

/* Small-Medium Screens (max-width: 1199px) */
@media (max-width: 1199px) {
}

/* Small Screens (max-width: 992px) */
@media (max-width: 992px) {
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
  .single-post .single-nav-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .single-content-wrapper {
    gap: 16px;
  }
  .single-thumbnail {
    height: 300px;
  }

  .single-thumbnail .meta {
    padding: 20px;
  }

  .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
