/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
/* ---- RESETS ---- */
html {
  font-size: 62.5% !important;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  -webkit-text-size-adjust: 100%;
}

:root {
  font-size: 1.6rem;
}

* {
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  font-family: "franklin-gothic-std", sans-serif;
}
body.no-scroll {
  overflow: hidden;
}

.wysiwyg p {
  margin: 0 0 3rem;
}
.wysiwyg p:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
  .wysiwyg p {
    margin: 0 0 2rem;
  }
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: "franklin-gothic-std", sans-serif;
}

.h1, h1 {
  font-size: 8rem;
  line-height: 9.8rem;
  font-weight: 700;
}

.h1-small {
  font-size: 6rem;
  line-height: 7.4rem;
}

.h2, h2 {
  font-size: 5rem;
  line-height: 6.2rem;
}

.h3, h3 {
  font-size: 4rem;
  line-height: 4.9rem;
}

.h4, h4 {
  font-size: 3rem;
  line-height: 3.7rem;
}

h2, .h2, h3, .h3, h4, .h4 {
  font-family: "franklin-gothic-std", sans-serif;
  font-weight: 500;
}

@media (max-width: 768px) {
  .h1, h1 {
    font-size: 3.5rem;
    line-height: 4.3rem;
  }
  .h1-small {
    font-size: 3.5rem;
    line-height: 4.3rem;
  }
  .h2, h2 {
    font-size: 3rem;
    line-height: 3.7rem;
  }
  .h3, h3 {
    font-size: 2.5rem;
    line-height: 3.1rem;
  }
  .h4, h4 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
a {
  color: #C57D4E;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #C57D4E;
}

.in-view.fade-up-element {
  animation: fade-up 0.3s forwards;
}

.fade-up-element {
  transform: translateY(50px);
  opacity: 0;
}

@media (prefers-reduced-motion) {
  .fade-up-element {
    transform: none;
    opacity: 1;
  }
  .in-view.fade-up-element {
    animation: none;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 48px !important;
}

.pt-2 {
  padding-top: 96px !important;
}

.pt-3 {
  padding-top: 144px !important;
}

.pt-4 {
  padding-top: 192px !important;
}

.pt-5 {
  padding-top: 240px !important;
}

.pt-6 {
  padding-top: 288px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 48px !important;
}

.pb-2 {
  padding-bottom: 96px !important;
}

.pb-3 {
  padding-bottom: 144px !important;
}

.pb-4 {
  padding-bottom: 192px !important;
}

.pb-5 {
  padding-bottom: 240px !important;
}

.pb-6 {
  padding-bottom: 288px !important;
}

@media (max-width: 768px) {
  .pt-0 {
    padding-top: 0 !important;
  }
  .pt-1 {
    padding-top: 20px !important;
  }
  .pt-2 {
    padding-top: 40px !important;
  }
  .pt-3 {
    padding-top: 60px !important;
  }
  .pt-4 {
    padding-top: 80px !important;
  }
  .pt-5 {
    padding-top: 100px !important;
  }
  .pt-6 {
    padding-top: 120px !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pb-1 {
    padding-bottom: 20px !important;
  }
  .pb-2 {
    padding-bottom: 40px !important;
  }
  .pb-3 {
    padding-bottom: 60px !important;
  }
  .pb-4 {
    padding-bottom: 80px !important;
  }
  .pb-5 {
    padding-bottom: 100px !important;
  }
  .pb-6 {
    padding-bottom: 120px !important;
  }
}
.content-grid {
  --padding-inline: 2.5rem;
  --content-max-width: 1440px;
  --breakout-max-width: 1820px;
  --breakout-size: calc(
      (var(--breakout-max-width) - var(--content-max-width)) / 2
  );
  display: grid;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-size)) [content-start] min(100% - var(--padding-inline) * 2, var(--content-max-width)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}
.content-grid > :not(.breakout, .full-width) {
  grid-column: content;
}
.content-grid > .breakout {
  grid-column: breakout;
}
.content-grid > .full-width {
  grid-column: full-width;
  display: grid;
  grid-template-columns: inherit;
}

.full-width > :not(.breakout, .full-width) {
  grid-column: content;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove border from iframes */
iframe {
  border: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.button {
  font-size: 1.6rem;
  padding: 0.5rem 1rem;
  border-radius: 0.2rem;
  border: 2px solid transparent;
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.button-blue {
  background-color: transparent;
  color: #000;
  border-color: #000;
}
.button-blue:hover {
  background-color: #7A939C;
  color: #fff;
  border-color: #7A939C;
}
.button-white {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.button-white:hover {
  background-color: #fff;
  color: #000;
}
.button-brown {
  border-color: #000;
  background-color: transparent;
  color: #000;
}
.button-brown:hover {
  background-color: #C57D4E;
  color: #fff;
  border-color: #C57D4E;
}

@media (max-width: 768px) {
  .button {
    font-size: 1.5rem;
  }
}
.has-block-badge {
  position: relative;
  border-top: 1px dashed #010101;
  border-bottom: 1px dashed #010101;
}

.block-name-badge {
  position: absolute;
  bottom: 0;
  left: 0;
}
.block-name-badge div {
  background-color: #010101;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
#navbar.is-scrolled, #navbar.is-open {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#navbar.is-scrolled .menu-container.menu-white a, #navbar.is-open .menu-container.menu-white a {
  color: #000;
}
#navbar.is-scrolled .menu-container.menu-white .logo-dark, #navbar.is-open .menu-container.menu-white .logo-dark {
  display: block;
}
#navbar.is-scrolled .menu-container.menu-white .logo-white, #navbar.is-open .menu-container.menu-white .logo-white {
  display: none;
}
#navbar.is-scrolled .menu-container.menu-white svg, #navbar.is-open .menu-container.menu-white svg {
  fill: #000;
}
#navbar .logo {
  max-width: 18rem;
}
#navbar .logo img {
  width: 18rem;
}
#navbar .mobile-menu-toggle {
  display: none;
}
#navbar .menu-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding: 3.5rem 0 2.5rem;
}
#navbar .menu-container.menu-white a {
  color: #fff;
}
#navbar .menu-container.menu-white .logo-dark {
  display: none;
}
#navbar .menu-container.menu-white svg {
  fill: #fff;
}
#navbar .menu-container.menu-black a {
  color: #000;
}
#navbar .menu-container.menu-black .logo-white {
  display: none;
}
#navbar .menu-container.menu-black svg {
  fill: #000;
}
#navbar .main-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 2.4rem;
}
#navbar .main-menu > li {
  padding: 0 0 1rem;
}
#navbar .menu-item-has-children {
  position: relative;
}
#navbar .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#navbar .menu-item-has-children:hover svg {
  rotate: 180deg;
}
#navbar .sub-menu {
  position: absolute;
  top: 100%;
  left: -10rem;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 30rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
  pointer-events: none;
}
#navbar .sub-menu a {
  color: #000 !important;
  padding: 0.6rem 1.5rem;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.4rem;
  letter-spacing: -0.3px;
  display: block;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
#navbar .sub-menu a:hover {
  background-color: #7A939C;
  color: #fff !important;
}
#navbar a {
  font-size: 1.7rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}
#navbar .menu-icon {
  background: none;
  border: none;
}

@media (max-width: 768px) {
  #navbar.is-scrolled .menu-container.menu-white rect {
    fill: #000 !important;
  }
  #navbar.is-open .mobile-menu-toggle .close {
    display: flex;
  }
  #navbar.is-open .mobile-menu-toggle .open {
    display: none;
  }
  #navbar .logo {
    max-width: 13rem;
    display: flex;
    align-items: center;
  }
  #navbar .logo img {
    width: 13rem;
  }
  #navbar .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
  #navbar .mobile-menu-toggle button {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
  }
  #navbar .mobile-menu-toggle button:hover {
    cursor: pointer;
  }
  #navbar .mobile-menu-toggle .close {
    display: none;
  }
  #navbar .mobile-menu-toggle .open {
    display: flex;
  }
  #navbar .menu-container {
    padding: 2rem 0;
  }
  #navbar .menu-container.menu-white rect {
    fill: #fff !important;
  }
  #navbar .menu-container.menu-white .close rect {
    fill: #000 !important;
  }
  #navbar .menu-container.menu-black rect {
    fill: #000 !important;
  }
  #navbar .main-menu {
    display: none;
  }
}
.post-item:hover img {
  opacity: 0.8;
}
.post-item a {
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.post-item .content {
  margin: 0 0 2.5rem;
}
.post-item .title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 1.5rem;
}
.post-item img {
  width: 100%;
  transition: opacity 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .post-item .content {
    margin: 0 0 2rem;
  }
}
.site-footer {
  background-color: #7A939C;
  padding: 6.3rem 0 2.3rem;
  color: #fff;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.site-footer .menu-col {
  display: flex;
  justify-content: flex-end;
}
.site-footer .main-col {
  max-width: 44rem;
}
.site-footer .footer-logo {
  display: block;
  margin: 0 0 2.2rem;
}
.site-footer .footer-logo img {
  max-width: 14rem;
}
.site-footer .footer-text {
  margin: 0 0 3rem;
}
.site-footer .footer-email,
.site-footer .footer-phone {
  margin: 0 0 1.4rem;
}
.site-footer .footer-email a,
.site-footer .footer-phone a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
.site-footer .footer-socials {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0 0;
}
.site-footer .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 18rem;
}
.site-footer .footer-nav a {
  color: #fff;
  font-size: 2.5rem;
  line-height: 4.9rem;
  font-weight: 500;
}
.site-footer .footer-menu-heading {
  font-weight: 700;
  margin: 0 0 1.7rem;
  font-size: 2.5rem;
  line-height: 4.9rem;
  font-weight: 500;
}
.site-footer .footer-service-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 33rem;
}
.site-footer .footer-service-nav a {
  color: #fff;
  font-size: 1.3rem;
  line-height: 2.7rem;
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3.5rem 0 0;
}
.site-footer .footer-bottom p {
  opacity: 0.5;
  font-size: 1.4rem;
}
.site-footer .footer-bottom a {
  font-size: 1.4rem;
  color: #fff;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 5rem 0 3rem;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
  .site-footer .menu-col {
    display: block;
  }
  .site-footer .main-col {
    max-width: 44rem;
    grid-column: span 2;
  }
  .site-footer .footer-text {
    margin: 0 0 1.1rem;
  }
  .site-footer .footer-email,
  .site-footer .footer-phone {
    margin: 0 0 1.1rem;
  }
  .site-footer .footer-email a,
  .site-footer .footer-phone a {
    gap: 1rem;
  }
  .site-footer .footer-socials img {
    max-width: 2.4rem;
  }
  .site-footer .footer-nav a {
    font-size: 1.8rem;
    line-height: 3.4rem;
  }
  .site-footer .footer-menu-heading {
    margin: 0 0 1.6rem;
    font-size: 1.8rem;
    line-height: 3.4rem;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin: 3.2rem 0 0;
  }
  .site-footer .footer-bottom p {
    font-size: 1.2rem;
  }
  .site-footer .footer-bottom a {
    font-size: 1.2rem;
  }
}
.form .gfield_required {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form .gform_wrapper.gravity-theme .gform_validation_errors {
  padding: 0;
  margin: 0 0 2rem;
  background-color: transparent;
  border: none;
  text-align: center;
  box-shadow: none;
}
.form .gform_wrapper.gravity-theme .gform_validation_errors > h2 {
  font-family: "franklin-gothic-std", sans-serif;
  font-size: 1.6rem;
}
.form .gform_wrapper.gravity-theme .gfield_description.validation_message {
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
}
.form .gform_validation_errors {
  display: none !important;
}

.form input,
.form textarea {
  padding: 1.3rem 2rem !important;
  border: 1.5px solid #374A45 !important;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  box-shadow: none;
}
.form .gform-footer {
  justify-content: flex-end;
}
.form #gform_2 .gform-footer {
  margin-top: -6rem !important;
}
.form .ginput_container_fileupload .gform_fileupload_multifile {
  display: none;
}
.form .gfield--type-fileupload {
  display: flex;
  padding-left: 14rem;
}
.form .gfield--type-fileupload input[type=file] {
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}
.form .gfield--type-fileupload label {
  border: 1px solid #000;
  height: 3rem;
  line-height: 3rem;
  padding: 0 2.5rem !important;
  display: inline-block;
  border-radius: 50px;
  position: relative;
  white-space: nowrap;
}
.form .gfield--type-fileupload label::before {
  content: "Ladda upp";
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  left: -9rem;
  transform: translateY(-50%);
}
.form .gfield--type-fileupload label::after {
  content: url("../../assets/icons/file-upload.svg");
  position: absolute;
  top: calc(50% + 0.5rem);
  left: -14rem;
  transform: translateY(-50%);
}
.form .gform_fileupload_rules {
  display: none !important;
}

@media (max-width: 768px) {
  .form input,
  .form textarea {
    padding: 1.1rem 1.8rem !important;
    border: 1px solid #374A45 !important;
  }
  .form #gform_2 .gform-footer {
    margin-top: 0 !important;
  }
  .form .gform-footer {
    justify-content: flex-start;
  }
  .form .gform-footer .button {
    min-width: 15rem;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal.is-active {
  display: block;
}
.modal .modal-content {
  background-color: #C57D4E;
  color: #fff;
  margin: 17.5rem auto 10rem;
  padding: 14rem 6.6rem;
  border: 1px solid #fff;
  border-radius: 1rem;
  width: 80%;
  max-width: 94rem;
  position: relative;
  text-align: center;
}
.modal .modal-content .heading {
  margin: 0 0 2rem;
}
.modal .modal-content .text {
  font-size: 2.2rem;
  line-height: 3.3rem;
}
.modal .modal-content .button-container {
  margin: 4rem 0 0;
}
.modal .close {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 4rem;
  right: 4rem;
  transition: color 0.3s ease;
}
.modal .close:hover,
.modal .close:focus {
  color: #fafafa;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .modal .modal-content {
    margin: 10.5rem auto 6rem;
    padding: 7rem 2.5rem;
    width: calc(100% - 2rem);
  }
  .modal .modal-content .heading {
    margin: 0 0 2rem;
  }
  .modal .modal-content .text {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
  .modal .modal-content .button-container {
    margin: 2rem 0 0;
  }
  .modal .close {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    transition: color 0.3s ease;
  }
  .modal .close:hover,
  .modal .close:focus {
    color: #fafafa;
    text-decoration: none;
    cursor: pointer;
  }
}
#mobileMenu {
  position: fixed;
  top: 6.1rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
#mobileMenu.is-active {
  transform: translateY(0);
}
#mobileMenu .mobile-menu-content {
  padding: 6.9rem 2.5rem;
}
#mobileMenu .main-menu-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mobileMenu .main-menu-mobile .menu-icon {
  background: none;
  border: none;
  padding: 0;
}
#mobileMenu .main-menu-mobile .menu-icon.is-active {
  rotate: 180deg;
}
#mobileMenu .main-menu-mobile a {
  font-size: 2.1rem;
  line-height: 2.7rem;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.42px;
  padding: 0.6rem 0;
  display: block;
}
#mobileMenu .main-menu-mobile .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#mobileMenu .main-menu-mobile .sub-menu {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
#mobileMenu .main-menu-mobile .sub-menu li:first-child {
  margin-top: 1rem;
}
#mobileMenu .main-menu-mobile .sub-menu li:last-child {
  margin-bottom: 1rem;
}
#mobileMenu .main-menu-mobile .sub-menu a {
  font-size: 1.5rem;
  line-height: 2.2rem;
  letter-spacing: 0.3px;
  font-weight: 400;
}

.info-page {
  padding: 21rem 0 0;
}
.info-page .info-grid {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 10rem;
}
.info-page .main-content {
  max-width: 75rem;
  margin: 0 0 0 auto;
}
.info-page .sidebar {
  position: sticky;
  top: 14rem;
  height: fit-content;
  padding: 0 0 10rem;
}
.info-page .sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-page .sidebar li {
  margin: 0 0 2rem;
}
.info-page .sidebar a {
  color: #000;
  text-decoration: none;
  font-size: 2rem;
  line-height: 2.7rem;
}
.info-page .sidebar a:hover {
  cursor: pointer;
  text-decoration: underline;
}
.info-page .sidebar a.is-in-view {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .info-page {
    padding: 10rem 0 0;
  }
  .info-page .info-grid {
    grid-template-columns: 100%;
    gap: 0rem;
    padding-top: 2rem;
  }
  .info-page .main-content {
    order: 1;
  }
  .info-page .sidebar {
    padding: 0 0 8rem;
    order: 2;
  }
}
.blog-page {
  padding: 0 0 14rem;
}
.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12rem 6rem;
  padding: 14rem 0 0;
}
.blog-page .blog-post-load-more {
  text-align: center;
  margin: 4rem 0 0;
}

@media (max-width: 1200px) {
  .blog-page .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-page {
    padding: 0 0 6rem;
  }
  .blog-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8rem 4rem;
    padding: 6rem 0 0;
  }
  .blog-page .blog-post-load-more {
    text-align: center;
    margin: 3rem 0 0;
  }
}
.single-page {
  padding: 14rem 0;
}
.single-page .blog-hero {
  margin: 0 0 5rem;
  max-width: 100rem;
}
.single-page .blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 10rem;
}
.single-page .sidebar {
  position: sticky;
  top: 12rem;
  height: fit-content;
  padding: 0 0 10rem;
}
.single-page .sidebar .sidebar-heading {
  font-size: 3rem;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 3.5rem;
}
.single-page .author-small {
  margin: 0 0 5rem;
}
.single-page .author-small-mobile {
  display: none;
}
.single-page .toc-mobile {
  display: none;
}
.single-page .toc a {
  font-size: 2rem;
  line-height: 3.7rem;
  color: #000;
}
.single-page .toc a:hover {
  color: #C57D4E;
}
.single-page .main-content {
  max-width: 75rem;
  margin: 0 0 0 auto;
}
.single-page .related-news {
  margin: 14rem 0 0;
}

@media (max-width: 768px) {
  .single-page {
    padding: 10rem 0 6rem;
  }
  .single-page .blog-hero {
    margin: 0 0 3rem;
  }
  .single-page .blog-hero h1 {
    font-size: 3rem;
    line-height: 3.7rem;
  }
  .single-page .text-block h2 {
    font-size: 2.7rem;
  }
  .single-page .blog-page-grid {
    grid-template-columns: 100%;
    gap: 0rem;
    padding-top: 2rem;
  }
  .single-page .main-content {
    order: 1;
  }
  .single-page .sidebar {
    display: none;
  }
  .single-page .author-small-mobile {
    display: block;
    margin: 0 0 1rem;
  }
  .single-page .toc-mobile {
    display: block;
    margin: 5rem 0 0;
  }
  .single-page .toc-mobile .sidebar-heading {
    margin: 0 0 2rem;
    font-size: 2rem;
    font-weight: 500;
  }
  .single-page .toc a {
    font-size: 1.7rem;
    line-height: 3.4rem;
  }
  .single-page .related-news {
    margin: 6rem 0 0;
  }
}
.error-404 {
  background-color: #2B3935;
}
.error-404 .content {
  color: #fff;
  max-width: 75rem;
  margin: 0 auto;
  padding: 30rem 0 27rem;
  text-align: center;
}
.error-404 .error-heading {
  margin: 0 0 4.9rem;
}
.error-404 .button-container {
  margin: 4rem 0 0;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .error-404 .content {
    padding: 15rem 0 8rem;
  }
  .error-404 .error-heading {
    margin: 0 0 3.2rem;
  }
  .error-404 .button-container {
    margin: 3rem 0 0;
  }
}