/*-- -------------------------- -->
<---       banner       -->
<--- -------------------------- -*/

#banner-1400 .pixel-perfect-top {
  display: block;
}
#banner-1400 .pixel-perfect-top img {
  filter: brightness(0) invert(1); /* Ensures it's always white */
}

@media only screen and (max-width: 767px) {
  /* Banner made smaller on mobile */
  #banner-1400 {
    padding-top: clamp(7.875rem, 18vw, 11.75rem);
    padding-bottom: 3.5rem;
  }
}
#banner-1400 .cs-post-breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content-page-852 {
    padding: var(--sectionPadding);
    background-color: #fff;
    /* clips the wave background from causing overflow issues when it goes off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #content-page-852 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #content-page-852 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 46.125rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #content-page-852 .cs-title {
    font-size: clamp(1.8375rem, 3.6vw, 2.9625rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }

  /* POST META */

  #content-page-852 .post-meta {
    font-size: 0.9rem;
    color: #666;
  }

  #content-page-852 .post-share-label {
    font-size: 0.9rem;
    color: #666;
    margin-right: 0.3rem;
    padding-top: 0.4rem;
  }

  /* SOCIAL ICONS */

  #content-page-852 .post-share {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  #content-page-852 .post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
  }
  #content-page-852 .post-share a:hover {
    transform: translateY(-2px);
  }

  #content-page-852 .post-share #fb-color {
    background: #1877f2;
  }
  #content-page-852 .post-share #x-color {
    background: black;
  }
  #content-page-852 .post-share #ln-color {
    background: #0077b5;
  }
  #content-page-852 .post-share a img {
    width: 15px;
    height: 15px;
  }
  #content-page-852 .post-share #x-color img {
    width: 12px;
    height: 12px;
  }
  #content-page-852 .post-share #x-color img {
    width: 12px;
    height: 12px;
  }

  /* Author Section */
  #content-page-852 .post-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  #content-page-852 .post-author img {
    width: 45px; /* Small circular image */
    height: 45px;
    border-radius: 50%;
  }

  #content-page-852 .post-author-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    text-align: left;
  }

  /* AUDIO */

  #content-page-852 .custom-play-btn {
    margin-top: 1.5rem;
    background-color: #095db0;
    color: white;
    border: none;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex; /* Enables flexbox */
    align-items: center; /* Centers icon & text vertically */
    gap: 0.6rem; /* Space between icon & text */
    width: 180px;
    transition: background-color 0.2s ease-in-out;
  }

  #content-page-852 .custom-play-btn:hover {
    background-color: #064a8e; /* Darker shade of blue */
  }

  #content-page-852 .custom-play-btn img {
    width: 14px;
    height: 14px;
    display: inline-block; /* Ensures it stays in line */
  }

  #content-page-852 h2,
  #content-page-852 h3,
  #content-page-852 h4,
  #content-page-852 h5,
  #content-page-852 h6 {
    font-weight: 700;
    text-align: inherit;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }
  #content-page-852 h2 {
    font-size: 1.5rem;
    color: var(--primary);
  }
  #content-page-852 h3 {
    font-size: 2rem;
    margin-top: 2rem;
  }
  #content-page-852 h4,
  #content-page-852 h5,
  #content-page-852 h6 {
    font-size: 1.25rem;
  }
  #content-page-852 .cs-button-solid {
    margin-bottom: 2rem;
  }
  #content-page-852 .cs-no-margin {
    margin: 0;
  }
  #content-page-852 .cs-color {
    color: var(--primary);
  }
  #content-page-852 p {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColor);
  }
  #content-page-852 p:first-of-type {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  #content-page-852 p:last-of-type {
    margin-bottom: 2rem;
  }
  #content-page-852 p a {
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    color: var(--primary);
  }
  #content-page-852 ol,
  #content-page-852 ul {
    padding-left: 1.5rem;
    margin: 0 0 2rem 0;
    color: var(--bodyTextColor);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #content-page-852 ul li {
    list-style: none;
    color: inherit;
    position: relative;
  }
  #content-page-852 ul li:before {
    /* custom list bullet */
    content: "";
    width: 3px;
    height: 3px;
    background: currentColor;
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 0.625rem;
    left: -0.75rem;
  }
  #content-page-852 img {
    width: 100%;
    height: auto;
    display: block;
  }
  #content-page-852 .cs-image-group {
    width: 50%;
    max-width: 27.0625rem;
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
  }
  #content-page-852 .cs-image-group:after {
    /* colored box */
    content: "";
    width: 100%;
    /* 177px - 258px */
    height: clamp(11.0625rem, 19vw, 16.125rem);
    background: var(--primary);
    border-radius: 6.25rem 0 6.25rem;
    opacity: 0.15;
    display: block;
  }
  #content-page-852 .cs-picture {
    width: 100%;
    /* 300px - 520px */
    height: clamp(18.75rem, 40vw, 32.5rem);
    box-shadow: 0px 3.3478px 50.2169px rgba(0, 0, 0, 0.16);
    /* 125px - 200px */
    border-radius: 0 clamp(7.8125rem, 15vw, 12.5rem) 0
      clamp(7.8125rem, 15vw, 12.5rem);
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    /* clips img tag corners */
    overflow: hidden;
    display: block;
    position: relative;
  }
  #content-page-852 .cs-picture img {
    width: 100%;
    height: 100%;
    /* makes it act like a background image */
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #content-page-852 .cs-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  #content-page-852 .cs-content {
    flex: none;
    width: 60%;
    /* sens it to the right in the 2nd position */
    order: 2;
  }
  #content-page-852 .cs-image-group {
    display: flex;
  }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #content-page-852 {
    background-color: var(--dark);
  }
  body.dark-mode #content-page-852 .cs-title,
  body.dark-mode #content-page-852 .cs-text,
  body.dark-mode #content-page-852 h2,
  body.dark-mode #content-page-852 h3,
  body.dark-mode #content-page-852 h4,
  body.dark-mode #content-page-852 h5,
  body.dark-mode #content-page-852 h6,
  body.dark-mode #content-page-852 li,
  body.dark-mode #content-page-852 p {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #content-page-852 h3 {
    color: #6fb2f6;
  }
  body.dark-mode #content-page-852 .cs-color,
  body.dark-mode #content-page-852 a {
    color: var(--darkmodeTopper);
  }
  body.dark-mode #content-page-852 p,
  body.dark-mode #content-page-852 li {
    color: #ebebeb;
  }
  body.dark-mode #content-page-852 .cs-picture {
    border-color: var(--dark);
    background-color: var(--dark);
  }
  body.dark-mode #content-page-852 .post-meta {
    color: #cdcdcd;
  }

  body.dark-mode #content-page-852 .post-share-label {
    color: #cdcdcd;
  }
  body.dark-mode #content-page-852 .post-author-text {
    color: rgb(228, 228, 228);
  }
  body.dark-mode #content-page-852 .cs-topper {
    color: var(--darkmodeTopper);
  }
  body.dark-mode #content-page-852 .pixel-perfect-bottom img {
    filter: brightness(0) invert(1);
  }
}

/* DOT REMOVAL from color page */

#content-page-852 .no-dot {
  list-style: none; /* Removes default bullets */
  padding-left: 0; /* Removes left padding */
}

#content-page-852 .no-dot li:before {
  content: none !important; /* Removes the custom bullet */
}

.seo-p-2 {
  display: block; /* Makes it behave like a paragraph */
  margin-top: 1rem; /* Adjusts spacing between the sentences */
}

#smaller {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem) !important;
}

/* PRINT FRIENDLY */

@media print {
  /* Hide unnecessary elements */
  nav,
  header,
  footer,
  .cs-nav-button,
  .post-share,
  #theme-toggle,
  .cs-container > img,
  .cs-social,
  .cs-sidebar,
  .cs-comments-section,
  .cs-image-group,
  #contact-1392,
  img {
    display: none !important;
  }

  /* Ensure full width for content */
  #content-page-852 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: #fff !important;
  }

  /* Adjust body text for readability */
  body {
    font-size: 13px;
    line-height: 1.2;
    color: #000;
    background: #fff !important;
  }

  /* Improve heading spacing */
  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* Ensure links are visible */
  a {
    color: #000;
    text-decoration: underline;
  }
  a:after {
    content: " (" attr(href) ") ";
    font-size: 12px;
  }

  /* Remove extra margins */
  p {
    margin-bottom: 1rem;
  }
}

/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-1400 {
    padding: var(--sectionPadding);
    /* 190px - 268px - edited to less padding - WB */
    padding-top: clamp(8.875rem, 22vw, 12.75rem);
    padding-bottom: 5.25rem;
    /* clips the line from causing overflow issues for going off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #banner-1400 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    /* 8px - 12px */
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }
  #banner-1400 .cs-int-title {
    /* 39px - 61px */
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #banner-1400 .cs-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-1400 .cs-link {
    font-size: 1rem;
    line-height: 1.2em;
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-1400 .cs-link:last-of-type {
    /* remove the chevron on the last list item */
  }
  #banner-1400 .cs-link:last-of-type::after {
    display: none;
  }
  #banner-1400 .cs-link:after {
    /* chevron */
    content: "";
    width: 0.4375rem;
    height: 0.75rem;
    margin: 0 1rem;
    background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Icons/white-chev.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
  }
  #banner-1400 .cs-link.cs-active {
    text-decoration: underline;
  }
  #banner-1400 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #banner-1400 .cs-background:before {
    /* gradient overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-1400 .cs-background:after {
    /* gradient overlay */
    content: "";
    width: 100%;
    height: 40%;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#000000),
      to(rgba(0, 0, 0, 0))
    );
    background: -o-linear-gradient(top, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #banner-1400 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #banner-1400 .cs-background:before {
    width: 50%;
    height: 100%;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#000000),
      to(rgba(0, 0, 0, 0))
    );
    background: -o-linear-gradient(left, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 1;
  }
}

/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-1072 {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    position: relative;
    z-index: 1;
  }
  #cta-1072 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-1072 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-1072 .cs-flex {
    max-width: 39.375rem;
  }

  #cta-1072 .cs-title {
    margin: 0;

    color: var(--bodyTextColorWhite);
  }
  #cta-1072 .cs-button-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  #cta-1072 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #cta-1072 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #ffffff;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cta-1072 .cs-button-solid:hover {
    color: black;
  }
  #cta-1072 .cs-button-solid:hover:before {
    width: 100%;
  }
  #cta-1072 .cs-button-transparent {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color 0.3s;
  }
  #cta-1072 .cs-button-transparent:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #fff;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cta-1072 .cs-button-transparent:after {
    /* border */
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: transparent;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    border: 1px solid #fff;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
    pointer-events: none;
  }
  #cta-1072 .cs-button-transparent:hover {
    color: black;
  }
  #cta-1072 .cs-button-transparent:hover:before {
    width: 100%;
  }
  #cta-1072 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta-1072 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #1a1a1a;
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cta-1072 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}

/* VIDEO BANNER CODE */
/* Make background VIDEO behave like the old background IMG */
#cta-1072 .cs-background {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0; /* shorthand for top/left/right/bottom:0 */
  z-index: -1;
  display: block;
}

/* Apply the same "cover" rules to video */
#cta-1072 .cs-background video,
#cta-1072 video.cs-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay should still sit above the media */
#cta-1072 .cs-background:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  opacity: 0.5;
  z-index: 1;
}

/* PRAKTIKPERIOD CSS NEDAN */

/* Mobile - 360px */
#quote-828 {
  /* 15px - 17px */
  font-size: clamp(0.9375rem, 5vw, 1.0625rem);
  line-height: 1.5em;
  width: 100%;
  max-width: 39.375rem;
  margin: 0 auto 2rem 0;
  padding: 0.75rem 0 0.75rem 1.5rem;
  color: var(--headerColor);
  /* Prevents padding from affecting height & width */
  box-sizing: border-box;
  position: relative;
}
#quote-828:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 0.3125rem;
  background: var(--primaryLight);
  opacity: 1;
  top: 0;
  left: 0;
}
#quote-828 .cs-name {
  font-size: 1.0625rem;
  line-height: 1.2em;
  font-weight: 700;
  margin: 0.75rem 0 0;
  display: block;
  color: var(--headerColor);
}
/* Dark Mode, copy and paste only the styles inside the #list-828 brackets into your section's dark mode media query */
body.dark-mode #quote-828 {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #quote-828 .cs-name {
  color: var(--bodyTextColorWhite);
}

/* Bildjusteringar */

#content-page-852 .bildcontainer {
  max-width: 700px;
  padding-bottom: 35px;
}

#m-bildcontainer {
  max-width: 700px;
  padding: 10px 0 30px 0;
}

@media only screen and (min-width: 48rem) {
  #m-bildcontainer {
    display: none;
  }
}
/* H3 specialare, padding-top efter citat */
.padding-top {
  padding-top: 25px;
}

.youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

#content-page-852 .p-bottom {
  margin-bottom: 2rem;
}

#content-page-852 #smaller-h3 {
  font-size: 1.4rem;
}
