.post_content {
  width: 95%;
  max-width: 1010px;
  margin: 0 auto;
  box-sizing: border-box;
}

.post_data_container {
  margin: auto;
  max-width: 800px;
}

.post_title h1 {
  font-family: Anton;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
}

.post_text p {
  font-family: "Glacial Indifference";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.post_date {
  display: flex;
  justify-content: flex-end;
  border-bottom: 2px solid var(--Hittarp-red1);
  font-family: "Oswald";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin-top: 20px;
  padding-bottom: 10px;
}

.post_image {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.post_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Styles */
.post-navigation {
  max-width: 1010px;
  margin: 45px auto 20px;
  padding: 0;
}

.post-navigation-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.nav-button {
  background-color: transparent;
  color: var(--Hittarp-svart);
  text-decoration: none;
  font-family: Oswald;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.7px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.next-button:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11" fill="none"><path d="M1 1L5 5.5L1 10" stroke="%23FFFFFF"/><path d="M6 1L10 5.5L6 10" stroke="%23FFFFFF"/></svg>');
}

.prev-button:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11" fill="none"><path d="M10 1L6 5.5L10 10" stroke="%23FFFFFF"/><path d="M5 1L1 5.5L5 10" stroke="%23FFFFFF"/></svg>');
}

.nav-button.disabled,
.nav-button.disabled::after,
.nav-button.disabled::before {
  display: none;
}

.back-button {
  display: block;
  background-color: transparent;
  border: none;
  margin-bottom: 100px;
  padding: 0;
}

.back-button:after {
  display: block;
  content: "";
  border-bottom: solid 3px var(--Hittarp-red1);
  transform: scaleX(0.35);
  transition: transform 250ms ease-in-out;
  transform-origin: 0% 100%;
}

.back-button:hover:after {
  transform: scaleX(1);
}

.back-button a {
  color: var(--Hittarp-svart);
  font-family: Oswald;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.08px;
  text-decoration: none;
  text-transform: uppercase;
}

.back-button a:visited {
  color: var(--Hittarp-svart);
  text-decoration: none;
}

@media (max-width: 768px) {
  .post-navigation-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-button {
    text-align: center;
    justify-content: center;
  }
}