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

/* Mobile - 480px */
@media only screen and (min-width: 0rem) {
  #banner-712 {
    padding: clamp(8rem, 10vw, 10rem) 1rem 3rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(
      to top right,
      var(--secondary) 20%,
      var(--primary) 70%
    );
  }
  #banner-712 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
  }
  #banner-712 .cs-int-title {
    font-size: clamp(2.25rem, 6.4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #banner-712 .cs-breadcrumbs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
  }
  #banner-712 .cs-breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  #banner-712 .cs-breadcrumbs a:hover {
    opacity: 0.8;
  }
  #banner-712 .cs-current {
    opacity: 0.75;
  }
  #banner-712 .cs-separator {
    opacity: 0.6;
  }
  #banner-712 .cs-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: auto;
    opacity: 0.35;
    pointer-events: none;
  }
}

/*-- -------------------------- -->
<---           Inlägg           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  .blog-post {
    padding: clamp(3rem, 6vw, 5rem) 1rem;
    background: linear-gradient(
      to bottom,
      #ffffff,
      #f8f9fb
    );
  }
  .blog-text {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  }
  .blog-title {
    position: relative;
  }
  .blog-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin-top: 1rem;
    border-radius: 2px;
    background: var(--primary);
  }
  .blog-meta {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .meta-item {
    display: flex;
    align-items: center;
  }

  .blog-divider {
    margin: 0 0.5rem 0 0;
  }
  .blog-hero-wrapper {
    margin: 0 auto 2.5rem;
    width: 100%;
    max-width: 750px;
    overflow: hidden;
    background: #f5f5f5;
  }
  .blog-hero-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
  }
  .blog-content {
    font-size: 1.05rem;
    line-height: 1.75;
  }
  .blog-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  .blog-content p {
    margin-bottom: 1.2rem;
  }
}

@media only screen and (min-width: 48rem) {
  .blog-meta {
    display: flex;
    flex-direction: row;
  }
}

/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-697 {
    padding: var(--sectionPadding);
    background: linear-gradient(
      to top right,
      var(--secondary) 20%,
      var(--primary) 70%
    );
    position: relative;
    z-index: 1;
  }
  #cta-697 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-697 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-697 .cs-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  #cta-697 .cs-title {
    color: var(--bodyTextColorWhite);
    margin: 0;
  }
  #cta-697 .cs-text {
    margin: 0;
    max-width: 52ch;
    line-height: 1.6;
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
  #cta-697 .cs-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  #cta-697 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.25rem;
    padding: 0 2rem;
    border: 1px solid transparent;
    box-sizing: border-box;
    border-radius: 1.875rem;
    background: var(--bodyTextColorWhite);
    color: var(--secondary);
    text-decoration: none;
    display: inline-block;
  }
  #cta-697 .cs-button-solid {
    transition: background-color 0.25s, color 0.25s, border-color 0.25s;
    line-height: 3rem;
    padding: 0 1.2rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  #cta-697 .cs-button-solid:hover {
    background-color: var(--accentcolor);
    border-color: var(--accentcolor);
    color: var(--bodyTextColor);
  }
  #cta-697 .cs-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: auto;
    opacity: 0.35;
    pointer-events: none;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 65rem) {
  #cta-697 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }
  #cta-697 .cs-text-group {
    flex: 1;
    max-width: 60ch;
    align-items: flex-start;
  }
  #cta-697 .cs-actions {
    flex-shrink: 0;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
  }
  #cta-697 .cs-button-solid {
    font-size: 1rem;
    line-height: 3.75rem;
    padding: 0 2.25rem;
    font-weight: 700;
  }
} 