/* Coding.Waterkant Landing Page Styles */

/* ============================================
   Custom Properties (Design Tokens)
   ============================================ */

:root {
  --cw-black: #000000;
  --cw-blue: #7295FF;
  --cw-lime: #E9FCA3;
  --cw-white: #FFFFFF;

  --cw-font: 'OCR-A BT', 'OCR A Extended', 'Courier New', monospace;

  --cw-grid-columns-desktop: 12;
  --cw-grid-gutter-desktop: 24px;
  --cw-grid-margin-desktop: 60px;
  --cw-grid-columns-tablet: 8;
  --cw-grid-gutter-tablet: 16px;
  --cw-grid-margin-tablet: 75px;
  --cw-grid-columns-mobile: 5;
  --cw-grid-gutter-mobile: 16px;
  --cw-grid-margin-mobile: 8px;
}

/* ============================================
   Font Face Declaration
   ============================================ */

/* OCR-A BT font - Tsukurimashou OCRA.ttf (MIT) as fallback until OCR-A BT is available */
@font-face {
  font-family: 'OCR-A BT';
  src: url('../fonts/OCRA.ttf') format('truetype'),
       local('OCR A Extended'),
       local('Courier New');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   Base Styles
   ============================================ */

.cw-landing {
  font-family: var(--cw-font);
  color: var(--cw-black);
  overflow-x: hidden;
}

/* Ensure body doesn't add white background over our sections */
.cw-landing-page .site {
  background: transparent;
}

/* Remove default site wrapper constraints for landing page */
.cw-landing-page .cw-site-content {
  max-width: none;
  padding: 0;
  background: transparent; /* Allow section backgrounds (blue, lime, black) to show */
}

/* Hide Ghost-injected white footer bar (Impressum, Datenschutz) on custom landing layout */
.cw-landing-page .site-footer,
.cw-landing-page .gh-foot {
  display: none !important;
}

/* ============================================
   Navigation Bar
   ============================================ */

.cw-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background-color: var(--cw-black);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--cw-grid-margin-desktop);
  transition: transform 0.3s ease-in-out;
}

.cw-nav--hidden {
  transform: translateY(-100%);
}

.cw-nav__logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cw-nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cw-nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Ghost {{navigation}} outputs nav > ul.nav > li > a */
.cw-nav__menu ul,
.cw-nav__menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cw-nav__menu ul {
  flex-wrap: wrap;
}

.cw-nav__menu a,
.cw-nav__menu-item {
  font-size: 14px;
  line-height: 15.367px;
  color: var(--cw-white);
  text-decoration: none;
  font-family: var(--cw-font);
  letter-spacing: 0;
  transition: opacity 0.2s ease;
}

.cw-nav__menu a:hover,
.cw-nav__menu-item:hover {
  opacity: 0.8;
}

.cw-nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--cw-white);
  cursor: pointer;
  padding: 8px;
}

/* ============================================
   Hero Section
   ============================================ */

.cw-hero {
  position: relative;
  width: 100%;
  height: 800px;
  background-color: var(--cw-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 72px; /* Account for fixed nav */
  overflow: hidden;
}

.cw-hero__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.cw-hero__logo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cw-hero__content {
  position: absolute;
  left: var(--cw-grid-margin-desktop);
  bottom: 100px;
  z-index: 2;
  max-width: calc(100% - (var(--cw-grid-margin-desktop) * 2));
}

.cw-hero__tagline {
  font-size: 90px;
  line-height: 98.8px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 40px 0;
  text-align: left;
}

.cw-hero__cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   Button Component
   ============================================ */

.cw-button {
  display: inline-block;
  padding: 12px 36px;
  min-width: 180px; /* Figma: 180x38px pill */
  min-height: 38px;
  box-sizing: border-box;
  background-color: var(--cw-black);
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-size: 14px;
  line-height: 15.367px;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  letter-spacing: 0;
}

.cw-button:hover {
  background-color: transparent;
  color: var(--cw-black);
  border-color: var(--cw-black);
  transform: translateY(-1px);
}

.cw-button:active {
  transform: translateY(0);
}

/* ============================================
   Image Section (with parallax)
   ============================================ */

.cw-image {
  position: relative;
  width: 100%;
  height: 800px;
  background-color: var(--cw-blue);
  overflow: hidden;
}

.cw-image__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cw-image__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* Parallax effect: blue background + image at 60% opacity (gradient overlay in inline style) */
.cw-image--parallax {
  background-color: var(--cw-blue);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cw-image--parallax .cw-image__wrapper {
  display: none;
}

/* ============================================
   What's Next Section
   ============================================ */

.cw-whats-next {
  width: 100%;
  min-height: 803px;
  background-color: var(--cw-black);
  padding: 71px var(--cw-grid-margin-desktop) 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cw-whats-next__heading {
  font-size: 70px;
  line-height: 76.8px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 60px 0;
}

.cw-whats-next__widget {
  width: 100%;
  max-width: 1225px;
  margin: 0 auto;
}

.cw-whats-next__widget iframe {
  width: 100%;
  height: 450px;
  border: none;
  background: transparent;
}

/* ============================================
   Newsletter Section
   ============================================ */

.cw-newsletter {
  width: 100%;
  min-height: 480px;
  background-color: var(--cw-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px var(--cw-grid-margin-desktop);
}

.cw-newsletter__heading {
  font-size: 70px;
  line-height: 76.8px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 24px 0;
}

.cw-newsletter__text {
  font-size: 16px;
  line-height: 22px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 40px 0;
  max-width: 500px;
}

.cw-newsletter__button {
  margin-top: 0;
}

/* ============================================
   Footer
   ============================================ */

.cw-footer {
  width: 100%;
  min-height: 241px;
  background-color: var(--cw-black);
  padding: 61px var(--cw-grid-margin-desktop) 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.cw-footer__column {
  display: flex;
  flex-direction: column;
}

.cw-footer__heading {
  font-size: 14px;
  line-height: 15.367px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.cw-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Ghost {{navigation type="secondary"}} may output different structure */
.cw-footer__links li {
  margin: 0;
  padding: 0;
}

.cw-footer__links a {
  font-size: 14px;
  line-height: 20px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  margin-bottom: 0;
  transition: opacity 0.2s ease;
}

.cw-footer__links a:hover {
  opacity: 0.8;
}

.cw-footer__link {
  font-size: 14px;
  line-height: 20px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  margin-bottom: 0;
  transition: opacity 0.2s ease;
}

.cw-footer__link:hover {
  opacity: 0.8;
}

.cw-footer__link--email {
  margin-bottom: 20px;
}

.cw-footer__logos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cw-footer__logo-link {
  display: inline-flex;
  width: fit-content;
}

.cw-footer__logo {
  display: block;
  max-width: 180px;
  height: auto;
}

.cw-footer__logo--waterkant {
  max-width: 95px;
}

/* Degree footer: 4 columns including Funded by, black background with white text */
.cw-footer--degree {
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--cw-black);
  color: var(--cw-white);
}

.cw-footer__logo--dlc {
  max-width: 180px;
}

.cw-footer__logo--foerder {
  max-width: 280px;
}

/* Grey background for Funded By logos */
.cw-footer--degree .cw-footer__column:nth-child(3) .cw-footer__logos {
  background-color: #e6e6e6;
  padding: 12px;
  border-radius: 4px;
  gap: 12px;
}

/* ============================================
   Responsive Styles - Tablet (800-1399px)
   ============================================ */

@media (min-width: 800px) and (max-width: 1439px) {
  .cw-nav {
    padding: 0 var(--cw-grid-margin-tablet);
  }

  .cw-hero {
    height: 545px;
  }

  .cw-hero__tagline {
    font-size: 60px;
    line-height: 66px;
  }

  .cw-hero__content {
    left: var(--cw-grid-margin-tablet);
    bottom: 60px;
    max-width: calc(100% - (var(--cw-grid-margin-tablet) * 2));
  }

  .cw-image {
    height: 544px;
  }

  .cw-whats-next {
    min-height: 544px;
    padding: 50px var(--cw-grid-margin-tablet) 40px;
  }

  .cw-whats-next__heading {
    font-size: 50px;
    line-height: 55px;
  }

  .cw-newsletter {
    min-height: 360px;
    padding: 50px var(--cw-grid-margin-tablet);
  }

  .cw-newsletter__heading {
    font-size: 50px;
    line-height: 55px;
  }

  .cw-newsletter__text {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 32px;
  }

  .cw-image--parallax {
    background-attachment: scroll; /* iOS doesn't support fixed */
  }

  .cw-degree-hero__image {
    background-attachment: scroll;
  }
}

/* ============================================
   Responsive Styles - Mobile (0-799px)
   ============================================ */

@media (max-width: 799px) {
  .cw-nav {
    padding: 0 var(--cw-grid-margin-mobile);
  }

  .cw-nav__menu {
    display: none;
  }

  .cw-nav__burger {
    display: block;
  }

  .cw-hero {
    height: 525px;
  }

  .cw-hero__logo {
    /* Full-bleed, inherits from base */
  }

  .cw-hero__content {
    left: var(--cw-grid-margin-mobile);
    bottom: 40px;
    max-width: calc(100% - (var(--cw-grid-margin-mobile) * 2));
  }

  .cw-hero__tagline {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 30px;
  }

  .cw-hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cw-button {
    text-align: center;
  }

  .cw-image {
    height: 394px;
  }

  .cw-whats-next {
    min-height: 497px;
    padding: 40px var(--cw-grid-margin-mobile) 30px;
  }

  .cw-whats-next__heading {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .cw-newsletter {
    min-height: 280px;
    padding: 40px var(--cw-grid-margin-mobile);
  }

  .cw-newsletter__heading {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .cw-newsletter__text {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 32px;
  }

  .cw-footer {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px var(--cw-grid-margin-mobile) 30px;
    min-height: auto;
  }

  .cw-image--parallax {
    background-attachment: scroll; /* Mobile doesn't support fixed */
  }

  .cw-degree-hero__image {
    background-attachment: scroll;
  }
}

/* ============================================
   Utility Classes
   ============================================ */

.cw-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--cw-grid-margin-desktop);
}

@media (min-width: 800px) and (max-width: 1439px) {
  .cw-container {
    padding: 0 var(--cw-grid-margin-tablet);
  }
}

@media (max-width: 799px) {
  .cw-container {
    padding: 0 var(--cw-grid-margin-mobile);
  }
}

/* ============================================
   Camp Page Styles
   ============================================ */

.cw-camp {
  font-family: var(--cw-font);
  color: var(--cw-black);
  overflow-x: hidden;
}

.cw-camp-page .site {
  background: transparent;
}

.cw-camp-page .cw-site-content {
  max-width: none;
  padding: 0;
  background: transparent;
}

.cw-camp-page .site-footer {
  display: none !important;
}

/* Hero crossfade keyframes - 6 images, 4s each = 24s cycle */
@keyframes cwHeroFade1 { 0%, 16.67% { opacity: 1; } 20%, 100% { opacity: 0; } }
@keyframes cwHeroFade2 { 0%, 16.66% { opacity: 0; } 16.67%, 33.33% { opacity: 1; } 37%, 100% { opacity: 0; } }
@keyframes cwHeroFade3 { 0%, 33.32% { opacity: 0; } 33.33%, 50% { opacity: 1; } 54%, 100% { opacity: 0; } }
@keyframes cwHeroFade4 { 0%, 49.99% { opacity: 0; } 50%, 66.67% { opacity: 1; } 71%, 100% { opacity: 0; } }
@keyframes cwHeroFade5 { 0%, 66.66% { opacity: 0; } 66.67%, 83.33% { opacity: 1; } 88%, 100% { opacity: 0; } }
@keyframes cwHeroFade6 { 0%, 83.32% { opacity: 0; } 83.33%, 100% { opacity: 1; } }

.cw-camp-hero__slide:nth-child(1) { animation: cwHeroFade1 24s infinite; }
.cw-camp-hero__slide:nth-child(2) { animation: cwHeroFade2 24s infinite; }
.cw-camp-hero__slide:nth-child(3) { animation: cwHeroFade3 24s infinite; }
.cw-camp-hero__slide:nth-child(4) { animation: cwHeroFade4 24s infinite; }
.cw-camp-hero__slide:nth-child(5) { animation: cwHeroFade5 24s infinite; }
.cw-camp-hero__slide:nth-child(6) { animation: cwHeroFade6 24s infinite; }

/* Festival Hero */
.cw-camp-hero {
  position: relative;
  width: 100%;
  height: 800px;
  background-color: var(--cw-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-top: 72px;
  overflow: hidden;
}

.cw-camp-hero__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cw-camp-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}

.cw-camp-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.cw-camp-hero__content {
  position: relative;
  z-index: 2;
  left: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--cw-grid-margin-desktop) 100px;
  box-sizing: border-box;
}

.cw-camp-hero__title {
  font-size: 90px;
  line-height: 99px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 40px 0;
}

.cw-camp-hero__cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cw-camp-hero__btn {
  display: inline-block;
  padding: 12px 36px;
  min-height: 38px;
  box-sizing: border-box;
  background-color: var(--cw-blue);
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-size: 14px;
  line-height: 15.367px;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cw-camp-hero__btn:hover {
  background-color: var(--cw-white);
  color: var(--cw-blue);
  border-color: transparent;
}

/* Festival About */
.cw-camp-about {
  width: 100%;
  min-height: 1089px;
  background: linear-gradient(180deg, rgba(15, 18, 28, 1) 0%, var(--cw-black) 20%);
  padding: 71px var(--cw-grid-margin-desktop) 60px;
}

.cw-camp-about__headline {
  font-size: 70px;
  line-height: 1.15;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 60px 0;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--cw-grid-margin-desktop);
}

.cw-camp-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--cw-grid-margin-desktop);
}

.cw-camp-about__body {
  font-size: 20px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.85);
  font-family: Helvetica, Arial, sans-serif;
  margin: 0 0 40px 0;
}

.cw-camp-about__body p {
  margin: 0 0 16px 0;
}

.cw-camp-about__body p:last-child {
  margin-bottom: 0;
}

.cw-camp-about__cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cw-camp-about__subhead {
  font-size: 30px;
  line-height: 33px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 16px 0;
}

.cw-camp-about__intro {
  font-size: 20px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.85);
  font-family: Helvetica, Arial, sans-serif;
  margin: 0 0 32px 0;
}

.cw-camp-about__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cw-camp-about__list li {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.cw-camp-about__bullet {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cw-camp-about__bullet img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cw-camp-about__item-title {
  display: block;
  font-size: 30px;
  line-height: 36px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  text-transform: uppercase;
}

.cw-camp-about__item-desc {
  display: block;
  font-size: 20px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.85);
  font-family: Helvetica, Arial, sans-serif;
}

/* Festival Program */
.cw-camp-program {
  width: 100%;
  min-height: 803px;
  background-color: var(--cw-lime);
  padding: 71px var(--cw-grid-margin-desktop) 60px;
}

.cw-camp-program__heading {
  font-size: 70px;
  line-height: 77px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 40px 0;
}

.cw-camp-program__slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.cw-camp-program__nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.cw-camp-program__arrow {
  width: 60px;
  height: 15px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cw-black);
}

.cw-camp-program__arrow svg {
  width: 60px;
  height: 15px;
}

.cw-camp-program__arrow:hover {
  opacity: 0.7;
}

.cw-camp-program__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  line-height: 16px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  text-align: center;
}

.cw-camp-program__nav-item {
  cursor: pointer;
}

.cw-camp-program__nav-item.cw-camp-program__nav-item--active {
  text-decoration: underline;
}

.cw-camp-program__nav-sep {
  color: var(--cw-black);
}

/* Hide scrollbar for program slider */
.cw-camp-program__slider-wrapper .tns-ovh,
.cw-camp-program__slider-wrapper .tns-outer {
  overflow: hidden;
}

.cw-camp-program__slider-wrapper .tns-ovh::-webkit-scrollbar,
.cw-camp-program__slider-wrapper .tns-outer::-webkit-scrollbar {
  display: none;
}

.cw-camp-program__slider-wrapper .tns-ovh,
.cw-camp-program__slider-wrapper .tns-outer {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Program day structure (from Ghost page HTML) */
.cw-camp-program__slider {
  width: 100%;
  overflow: hidden;
}

.cw-program-days {
  display: flex;
  gap: 24px;
  overflow: hidden;
  padding: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cw-program-days::-webkit-scrollbar {
  display: none;
}

.cw-program-day {
  flex: 0 0 423px;
  min-width: min(423px, calc(100vw - 2 * var(--cw-grid-margin-desktop) - 120px));
  max-width: 100%;
  box-sizing: border-box;
  background: transparent;
  padding: 24px;
  border-radius: 8px;
}

.cw-program-day h3 {
  font-size: 30px;
  line-height: 33px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  text-align: center;
  margin: 0 0 4px 0;
}

.cw-program-day__date {
  font-size: 16px;
  line-height: 22px;
  color: var(--cw-black);
  font-family: Helvetica, Arial, sans-serif;
  text-align: center;
  margin: 0 0 20px 0;
}

.cw-program-row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cw-black);
  font-family: Helvetica, Arial, sans-serif;
}

.cw-program-row:last-child {
  border-bottom: none;
}

.cw-time {
  flex-shrink: 0;
  font-size: 15px;
  line-height: 16px;
  color: var(--cw-black);
  font-family: var(--cw-font);
}

.cw-event {
  font-size: 15px;
  line-height: 17px;
  color: var(--cw-black);
}

.cw-event u {
  text-decoration: underline;
}

/* Festival Projects */
.cw-camp-projects {
  width: 100%;
  min-height: 805px;
  background-color: var(--cw-black);
  padding: 71px var(--cw-grid-margin-desktop) 60px;
}

.cw-camp-projects__heading {
  font-size: 70px;
  line-height: 77px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}

/* Festival FAQ */
.cw-camp-faq {
  width: 100%;
  min-height: 805px;
  background-color: var(--cw-black);
  padding: 71px var(--cw-grid-margin-desktop) 60px;
}

.cw-camp-faq__heading {
  font-size: 70px;
  line-height: 76.8359px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 74px 0;
}

.cw-camp-faq__items {
  width: 100%;
  max-width: 1096px;
  margin: 0 auto;
}

.cw-camp-faq__entry {
  margin: 0;
}

.cw-camp-faq__item {
  width: 100%;
  min-height: 37px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--cw-white);
  background: transparent;
  text-align: left;
  padding: 0 0 11px;
  margin-bottom: 9px;
  color: var(--cw-white);
  text-decoration: none;
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 26px;
}

.cw-camp-faq__entry:last-child .cw-camp-faq__item {
  margin-bottom: 0;
}

.cw-camp-faq__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  margin-left: 20px;
}

.cw-camp-faq__icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--cw-white);
  border-bottom: 1px solid var(--cw-white);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.cw-camp-faq__note {
  margin: 106px auto 13px auto;
  max-width: 530px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-size: 30px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
}

.cw-camp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.cw-camp-faq__answer-inner {
  color: rgba(255, 255, 255, 0.9);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  padding: 10px 0 22px;
}

.cw-camp-faq__answer-inner a {
  color: var(--cw-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cw-camp-faq__answer-inner a:hover {
  color: var(--cw-blue);
}

.cw-camp-faq__answer-inner p {
  margin: 0 0 12px;
}

.cw-camp-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

.cw-camp-faq__entry.is-open .cw-camp-faq__icon::before {
  transform: rotate(-135deg);
}

.cw-camp-faq__button {
  display: block;
  width: 130px;
  margin: 0 auto;
  white-space: nowrap;
}

/* FAQ Page (full /faq/ page with sections) – Figma: white center, centered section titles */
.cw-faq-page {
  width: 100%;
  min-height: 100vh;
  background-color: var(--cw-black);
  padding: 120px var(--cw-grid-margin-desktop) 80px;
}

.cw-faq-page__title {
  font-size: 70px;
  line-height: 77px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 60px 0;
}

.cw-faq-page__section {
  max-width: 1096px;
  margin: 0 auto 60px auto;
}

.cw-faq-page__section:last-of-type {
  margin-bottom: 0;
}

.cw-faq-page__section-title {
  font-size: 30px;
  line-height: 33px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  margin: 0 0 24px 0;
  text-align: center;
}

.cw-faq-page__content-wrapper {
  background-color: var(--cw-white);
  padding: 60px var(--cw-grid-margin-desktop) 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.cw-faq-page__items {
  width: 100%;
  max-width: 1096px;
  margin: 0 auto;
}

.cw-faq-page__entry {
  margin: 0;
}

.cw-faq-page__item {
  width: 100%;
  min-height: 37px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border: none;
  background: transparent;
  text-align: left;
  padding: 0 0 11px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--cw-black);
  color: var(--cw-black);
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 26px;
}

.cw-faq-page__entry:last-child .cw-faq-page__item {
  margin-bottom: 0;
}

.cw-faq-page__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  margin-left: 20px;
}

.cw-faq-page__icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--cw-black);
  border-bottom: 1px solid var(--cw-black);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.cw-faq-page__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.cw-faq-page__answer-inner {
  color: var(--cw-black);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  padding: 10px 0 22px;
}

.cw-faq-page__answer-inner p {
  margin: 0 0 12px;
}

.cw-faq-page__answer-inner p:last-child {
  margin-bottom: 0;
}

.cw-faq-page__answer-inner a {
  color: var(--cw-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cw-faq-page__answer-inner a:hover {
  opacity: 0.85;
}

.cw-faq-page__entry.is-open .cw-faq-page__icon::before {
  transform: rotate(-135deg);
}

.cw-faq-page__back {
  margin-top: 80px;
  text-align: center;
}

.cw-faq-page__back-link {
  color: var(--cw-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cw-faq-page__back-link:hover {
  opacity: 0.85;
}

.cw-camp-projects__slider-wrapper {
  position: relative;
  max-width: none;
  margin: 0 auto;
  width: 100%;
}

.cw-camp-projects__nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.cw-camp-projects__arrow {
  width: 60px;
  height: 15px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cw-white);
}

.cw-camp-projects__arrow svg {
  width: 60px;
  height: 15px;
}

.cw-camp-projects__arrow:hover {
  opacity: 0.8;
}

.cw-camp-projects__slider {
  display: flex;
  gap: 24px;
  padding: 0;
  overflow: hidden;
}

.cw-camp-projects__slider-wrapper .tns-ovh,
.cw-camp-projects__slider-wrapper .tns-outer {
  overflow: hidden;
}

.cw-camp-projects__slider-wrapper .tns-ovh::-webkit-scrollbar,
.cw-camp-projects__slider-wrapper .tns-outer::-webkit-scrollbar {
  display: none;
}

.cw-camp-projects__card {
  position: relative;
  flex: 0 0 538px;
  min-width: 538px;
  height: 460px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: background-color 0.2s ease;
}

.cw-camp-projects__card:hover {
  background: var(--cw-white);
}

.cw-camp-projects__slider .tns-slide-active .cw-camp-projects__card,
.cw-camp-projects__card.cw-camp-projects__card--center {
  background: var(--cw-white);
}

.cw-camp-projects__card-image {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.cw-camp-projects__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-camp-projects__card-title {
  font-size: 30px;
  line-height: 33px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.cw-camp-projects__card-subtitle {
  font-size: 20px;
  line-height: 26px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  text-align: center;
  margin: 0 0 12px 0;
}

.cw-camp-projects__card-desc {
  font-size: 20px;
  line-height: 26px;
  color: var(--cw-black);
  font-family: Helvetica, Arial, sans-serif;
  flex: 1;
  margin-top: auto;
  overflow: hidden;
}

.cw-camp-projects__card-desc-inner {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cw-camp-projects__card-desc-inner img,
.cw-camp-projects__card-desc-inner figure {
  display: none;
}

/* Project page (single project view) */
.cw-project {
  width: 100%;
  min-height: 100vh;
  background-color: var(--cw-black);
  padding: 120px var(--cw-grid-margin-desktop) 80px;
}

.cw-project__article {
  max-width: 920px;
  margin: 0 auto;
}

.cw-project__header {
  margin-bottom: 40px;
}

.cw-project__title {
  font-size: 50px;
  line-height: 1.2;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  margin: 0 0 16px 0;
}

.cw-project__subtitle {
  font-size: 20px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.85);
  font-family: Helvetica, Arial, sans-serif;
  margin: 0 0 24px 0;
}

.cw-project__media {
  margin: 0 0 32px 0;
}

.cw-project__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.cw-project__media figcaption {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.cw-project__content {
  font-size: 20px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Helvetica, Arial, sans-serif;
}

.cw-project__content p {
  margin: 0 0 16px 0;
}

.cw-project__content a {
  color: var(--cw-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cw-project__back {
  margin-top: 48px;
}

.cw-project__back-link {
  color: var(--cw-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cw-project__back-link:hover {
  opacity: 0.85;
}

.cw-camp-projects__card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cw-camp-projects__card-link::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 24px;
  height: 24px;
  border: 4px solid var(--cw-blue);
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
}

/* Festival Sponsors */
.cw-camp-sponsors {
  width: 100%;
  min-height: 567px;
  background-color: var(--cw-white);
  padding: 71px var(--cw-grid-margin-desktop) 60px;
}

.cw-camp-sponsors__heading {
  font-size: 70px;
  line-height: 77px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 40px 0;
}

.cw-camp-sponsors__grid {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cw-camp-sponsors__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  background-color: transparent;
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
}

.cw-camp-sponsors__slot img {
  display: block;
  max-width: 300px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Festival video */
.cw-camp-video {
  width: 100%;
  min-height: 70vh;
  background: var(--cw-blue);
  padding: 71px var(--cw-grid-margin-desktop);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cw-camp-video__inner {
  width: 100%;
  max-width: 1263px;
  margin: 0 auto;
}

.cw-camp-video__inner iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* ============================================
   Degree Page Styles (Machine Learning Degree)
   ============================================ */

.cw-degree {
  font-family: var(--cw-font);
  color: var(--cw-black);
  overflow-x: hidden;
}

.cw-degree-page .site {
  background: transparent;
}

.cw-degree-page .cw-site-content {
  max-width: none;
  padding: 0;
  background: transparent;
}

.cw-degree-page .site-footer {
  display: none !important;
}

/* Degree Hero */
.cw-degree-hero {
  position: relative;
  width: 100%;
  height: 800px;
  background-color: var(--cw-lime);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 72px;
  overflow: hidden;
}

.cw-degree-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.6;
}

.cw-degree-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(233, 252, 163, 0.3), rgba(233, 252, 163, 0.7));
  z-index: 1;
}

.cw-degree-hero__content {
  position: relative;
  z-index: 2;
  left: 0;
  width: 100%;
  max-width: calc(1440px + (var(--cw-grid-margin-desktop) * 2));
  margin: 0 auto;
  padding: 0 var(--cw-grid-margin-desktop) 100px;
}

.cw-degree-hero__title {
  font-size: 90px;
  line-height: 99px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}

.cw-degree-hero__cta-group {
  display: flex;
  gap: 20px;
}

.cw-degree-hero__btn {
  display: inline-block;
  padding: 12px 36px;
  background-color: var(--cw-black);
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-size: 14px;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cw-degree-hero__btn:hover {
  background-color: var(--cw-white);
  color: var(--cw-black);
}

.cw-degree-hero__teaser {
  margin: 24px 0 0 0;
  font-family: var(--cw-font);
  font-size: 18px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}

/* Degree Why It Matters */
.cw-degree-why {
  width: 100%;
  min-height: 705px;
  background-color: var(--cw-black);
  padding: 71px var(--cw-grid-margin-desktop) 80px;
}

.cw-degree-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.cw-degree-why__subhead {
  font-size: 30px;
  line-height: 36px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 30px 0;
}

.cw-degree-why__body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: var(--cw-white);
}

.cw-degree-why__body p {
  margin: 0 0 20px 0;
}

.cw-degree-why__body p:last-child {
  margin-bottom: 0;
}

.cw-degree-why__link {
  color: var(--cw-white);
  text-decoration: underline;
}

.cw-degree-why__link:hover {
  opacity: 0.85;
}

.cw-degree-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cw-degree-why__list li {
  margin-bottom: 40px;
}

.cw-degree-why__list li:last-child {
  margin-bottom: 0;
}

.cw-degree-why__item-title {
  display: block;
  font-size: 30px;
  line-height: 36px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cw-degree-why__item-desc {
  display: block;
  font-size: 20px;
  line-height: 26px;
  color: var(--cw-white);
  font-family: Helvetica, Arial, sans-serif;
}

/* Degree Image */
.cw-degree-image {
  background-color: var(--cw-lime);
}

.cw-degree-image.cw-image--parallax {
  background-color: var(--cw-lime);
}

/* Degree What to Expect */
.cw-degree-expect {
  width: 100%;
  min-height: 705px;
  background-color: var(--cw-black);
  padding: 71px var(--cw-grid-margin-desktop) 80px;
}

.cw-degree-expect__intro {
  font-size: 30px;
  line-height: 36px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 30px 0;
}

.cw-degree-expect__heading {
  font-size: 70px;
  line-height: 77px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 60px 0;
}

.cw-degree-expect__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.cw-degree-expect__item {
  text-align: center;
}

.cw-degree-expect__num {
  display: block;
  font-size: 70px;
  line-height: 77px;
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-weight: 400;
  margin-bottom: 20px;
}

.cw-degree-expect__text {
  font-size: 20px;
  line-height: 26px;
  color: var(--cw-white);
  font-family: Helvetica, Arial, sans-serif;
  margin: 0;
}

/* Degree How to Join */
.cw-degree-join {
  width: 100%;
  min-height: 705px;
  background-color: var(--cw-lime);
  padding: 71px var(--cw-grid-margin-desktop) 80px;
}

.cw-degree-join__heading {
  font-size: 70px;
  line-height: 77px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 60px 0;
}

.cw-degree-join__text {
  font-size: 30px;
  line-height: 36px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px auto;
}

.cw-degree-join__btn {
  display: block;
  width: 262px;
  padding: 12px 36px;
  background-color: var(--cw-black);
  color: var(--cw-white);
  font-family: var(--cw-font);
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  border-radius: 30px;
  border: 2px solid transparent;
  margin: 0 auto;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cw-degree-join__btn:hover {
  background-color: var(--cw-white);
  color: var(--cw-black);
}

/* Degree FAQ (white background, black text) */
.cw-degree-faq {
  width: 100%;
  min-height: 805px;
  background-color: var(--cw-white);
  padding: 71px var(--cw-grid-margin-desktop) 60px;
}

.cw-degree-faq__heading {
  font-size: 70px;
  line-height: 76.8359px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 74px 0;
}

.cw-degree-faq__items {
  width: 100%;
  max-width: 1096px;
  margin: 0 auto;
}

.cw-degree-faq__entry {
  margin: 0;
}

.cw-degree-faq__item {
  width: 100%;
  min-height: 37px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--cw-black);
  background: transparent;
  text-align: left;
  padding: 0 0 11px;
  margin-bottom: 9px;
  color: var(--cw-black);
  text-decoration: none;
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 26px;
}

.cw-degree-faq__entry:last-child .cw-degree-faq__item {
  margin-bottom: 0;
}

.cw-degree-faq__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  margin-left: 20px;
}

.cw-degree-faq__icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--cw-black);
  border-bottom: 1px solid var(--cw-black);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.cw-degree-faq__note {
  margin: 106px auto 13px auto;
  max-width: 530px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-size: 30px;
  line-height: 32px;
  text-align: center;
}

.cw-degree-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.cw-degree-faq__answer-inner {
  color: var(--cw-black);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  padding: 10px 0 22px;
}

.cw-degree-faq__answer-inner p {
  margin: 0 0 12px;
}

.cw-degree-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

.cw-degree-faq__answer-inner a {
  color: var(--cw-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cw-degree-faq__answer-inner a:hover {
  opacity: 0.85;
}

.cw-degree-faq__entry.is-open .cw-degree-faq__icon::before {
  transform: rotate(-135deg);
}

.cw-degree-faq__button {
  display: block;
  width: 130px;
  margin: 0 auto;
  background-color: var(--cw-black);
  color: var(--cw-white);
  border-radius: 30px;
  border: 2px solid transparent;
}

.cw-degree-faq__button:hover {
  background-color: var(--cw-white);
  color: var(--cw-black);
}

/* Degree Current Courses */
.cw-degree-courses {
  width: 100%;
  min-height: 803px;
  background-color: var(--cw-lime);
  padding: 71px var(--cw-grid-margin-desktop) 60px;
}

.cw-degree-courses__heading {
  font-size: 70px;
  line-height: 77px;
  color: var(--cw-black);
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 40px 0;
}

.cw-degree-courses__widget {
  width: 100%;
  max-width: 1225px;
  margin: 0 auto;
}

.cw-degree-courses__widget iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Degree responsive */
@media (min-width: 800px) and (max-width: 1439px) {
  .cw-degree-hero {
    height: 545px;
  }

  .cw-degree-hero__title {
    font-size: 60px;
    line-height: 66px;
  }

  .cw-degree-why,
  .cw-degree-expect,
  .cw-degree-join {
    min-height: auto;
    padding: 50px var(--cw-grid-margin-tablet) 40px;
  }

  .cw-degree-why__grid {
    gap: 50px;
  }

  .cw-degree-expect__grid {
    gap: 40px;
  }

  .cw-degree-expect__heading {
    font-size: 50px;
    line-height: 55px;
  }

  .cw-degree-faq {
    min-height: auto;
    padding: 50px var(--cw-grid-margin-tablet) 40px;
  }

  .cw-degree-faq__heading {
    font-size: 50px;
    line-height: 55px;
  }

  .cw-degree-courses {
    min-height: auto;
    padding: 50px var(--cw-grid-margin-tablet) 40px;
  }

  .cw-degree-courses__heading {
    font-size: 50px;
    line-height: 55px;
  }
}

@media (max-width: 799px) {
  .cw-degree-hero {
    height: 525px;
  }

  .cw-degree-hero__title {
    font-size: 32px;
    line-height: 35px;
  }

  .cw-degree-hero__cta-group {
    flex-direction: column;
  }

  .cw-degree-why__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cw-degree-why,
  .cw-degree-expect,
  .cw-degree-join {
    min-height: auto;
    padding: 40px var(--cw-grid-margin-mobile) 30px;
  }

  .cw-degree-expect__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cw-degree-expect__heading {
    font-size: 36px;
    line-height: 40px;
  }

  .cw-degree-expect__intro {
    font-size: 24px;
    line-height: 30px;
  }

  .cw-degree-join__heading {
    font-size: 36px;
    line-height: 40px;
  }

  .cw-degree-join__text {
    font-size: 20px;
    line-height: 26px;
  }

  .cw-degree-faq {
    min-height: auto;
    padding: 40px var(--cw-grid-margin-mobile) 30px;
  }

  .cw-degree-faq__heading {
    font-size: 36px;
    line-height: 40px;
  }

  .cw-degree-faq__item {
    font-size: 16px;
    line-height: 22px;
  }

  .cw-degree-faq__note {
    font-size: 22px;
    line-height: 28px;
  }

  .cw-degree-courses {
    min-height: auto;
    padding: 40px var(--cw-grid-margin-mobile) 30px;
  }

  .cw-degree-courses__heading {
    font-size: 36px;
    line-height: 40px;
  }
}

/* Festival responsive */
@media (min-width: 800px) and (max-width: 1439px) {
  .cw-camp-hero {
    height: 545px;
  }

  .cw-camp-hero__title {
    font-size: 60px;
    line-height: 66px;
  }

  .cw-camp-hero__content {
    padding-bottom: 60px;
  }

  .cw-camp-about {
    min-height: auto;
    padding: 50px var(--cw-grid-margin-tablet) 40px;
  }

  .cw-camp-about__headline {
    font-size: 50px;
    line-height: 55px;
  }

  .cw-camp-about__body,
  .cw-camp-about__intro,
  .cw-camp-about__item-desc {
    font-size: 18px;
    line-height: 24px;
  }

  .cw-camp-program {
    min-height: auto;
    padding: 50px var(--cw-grid-margin-tablet) 40px;
  }

  .cw-camp-program__heading {
    font-size: 50px;
    line-height: 55px;
  }

  .cw-program-day {
    flex: 0 0 420px;
    min-width: min(420px, calc(100vw - 2 * var(--cw-grid-margin-tablet) - 100px));
  }

  .cw-camp-faq {
    min-height: auto;
    padding: 50px var(--cw-grid-margin-tablet) 40px;
  }

  .cw-camp-faq__heading {
    font-size: 50px;
    line-height: 55px;
  }

  .cw-camp-faq__note {
    font-size: 26px;
    line-height: 32px;
  }

  .cw-faq-page {
    padding: 100px var(--cw-grid-margin-tablet) 60px;
  }

  .cw-faq-page__title {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 50px;
  }

  .cw-faq-page__section-title {
    font-size: 30px;
    line-height: 34px;
  }

  .cw-faq-page__item {
    font-size: 18px;
    line-height: 24px;
  }

  .cw-camp-video {
    padding: 50px var(--cw-grid-margin-tablet);
  }

  .cw-camp-projects {
    min-height: auto;
    padding: 50px var(--cw-grid-margin-tablet) 40px;
  }

  .cw-camp-projects__heading {
    font-size: 50px;
    line-height: 55px;
  }

  .cw-camp-projects__card {
    flex: 0 0 400px;
    min-width: 400px;
    height: 380px;
  }

  .cw-camp-sponsors {
    min-height: auto;
    padding: 50px var(--cw-grid-margin-tablet) 40px;
  }

  .cw-camp-sponsors__heading {
    font-size: 50px;
    line-height: 55px;
  }

  .cw-project {
    padding: 100px var(--cw-grid-margin-tablet) 60px;
  }

  .cw-project__title {
    font-size: 40px;
  }

  .cw-project__subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .cw-project__content {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 799px) {
  .cw-camp-hero {
    height: 525px;
  }

  .cw-camp-hero__title {
    font-size: 32px;
    line-height: 35px;
  }

  .cw-camp-hero__content {
    padding: 0 var(--cw-grid-margin-mobile) 40px;
  }

  .cw-camp-hero__cta-group {
    flex-direction: column;
  }

  .cw-camp-about {
    min-height: auto;
    padding: 40px var(--cw-grid-margin-mobile) 30px;
  }

  .cw-camp-about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cw-camp-about__headline {
    font-size: 36px;
    line-height: 40px;
  }

  .cw-camp-about__body,
  .cw-camp-about__intro,
  .cw-camp-about__item-desc {
    font-size: 16px;
    line-height: 22px;
  }

  .cw-camp-program {
    min-height: auto;
    padding: 40px var(--cw-grid-margin-mobile) 30px;
  }

  .cw-camp-program__heading {
    font-size: 36px;
    line-height: 40px;
  }

  .cw-program-days {
    padding: 0;
  }

  .cw-program-day {
    flex: 0 0 320px;
    min-width: min(320px, calc(100vw - 2 * var(--cw-grid-margin-mobile) - 80px));
  }

  .cw-camp-faq {
    min-height: auto;
    padding: 40px var(--cw-grid-margin-mobile) 30px;
  }

  .cw-camp-faq__heading {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .cw-camp-faq__item {
    font-size: 16px;
    line-height: 22px;
  }

  .cw-camp-faq__note {
    font-size: 22px;
    line-height: 28px;
    margin-top: 64px;
  }

  .cw-faq-page {
    padding: 90px var(--cw-grid-margin-mobile) 50px;
  }

  .cw-faq-page__title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .cw-faq-page__section {
    margin-bottom: 40px;
  }

  .cw-faq-page__section-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .cw-faq-page__item {
    font-size: 16px;
    line-height: 22px;
  }

  .cw-faq-page__back {
    margin-top: 60px;
  }

  .cw-camp-projects {
    min-height: auto;
    padding: 40px var(--cw-grid-margin-mobile) 30px;
  }

  .cw-camp-projects__heading {
    font-size: 36px;
    line-height: 40px;
  }

  .cw-camp-projects__slider {
    padding: 0;
  }

  .cw-camp-projects__card {
    flex: 0 0 300px;
    min-width: 300px;
    height: 360px;
    padding: 24px;
  }

  .cw-camp-sponsors {
    min-height: auto;
    padding: 40px var(--cw-grid-margin-mobile) 30px;
  }

  .cw-camp-sponsors__heading {
    font-size: 36px;
    line-height: 40px;
  }

  .cw-camp-video {
    padding: 40px var(--cw-grid-margin-mobile);
  }

  .cw-project {
    padding: 90px var(--cw-grid-margin-mobile) 50px;
  }

  .cw-project__title {
    font-size: 32px;
    line-height: 36px;
  }

  .cw-project__subtitle {
    font-size: 16px;
    line-height: 22px;
  }

  .cw-project__content {
    font-size: 16px;
    line-height: 22px;
  }

  .cw-camp-sponsors__slot {
    width: auto;
    height: auto;
  }

  .cw-camp-sponsors__slot img {
    max-width: 220px;
    max-height: 100px;
  }
}

/* ============================================
   About Page Styles
   ============================================ */

.cw-about {
  font-family: var(--cw-font);
  color: var(--cw-black);
  overflow-x: hidden;
}

.cw-about-page .site {
  background: transparent;
}

.cw-about-page .cw-site-content {
  max-width: none;
  padding: 0;
  background: transparent;
}

.cw-about-section {
  width: 100%;
  padding: 71px var(--cw-grid-margin-desktop) 80px;
}

.cw-about-section--dark {
  background-color: var(--cw-black);
}

.cw-about-section--light {
  background-color: var(--cw-lime);
}

.cw-about-section__heading {
  font-size: 70px;
  line-height: 77px;
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 60px 0;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--cw-grid-margin-desktop);
}

.cw-about-section--dark .cw-about-section__heading {
  color: var(--cw-white);
}

.cw-about-section--light .cw-about-section__heading {
  color: var(--cw-black);
}

.cw-about-section__title-block {
  max-width: 1440px;
  margin: 0 auto 60px;
  padding: 0 var(--cw-grid-margin-desktop);
}

.cw-about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--cw-grid-margin-desktop);
}

.cw-about-section__tagline {
  font-size: 30px;
  line-height: 36px;
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.cw-about-section__tagline:last-of-type {
  margin-bottom: 0;
}

.cw-about-section--dark .cw-about-section__tagline {
  color: var(--cw-white);
}

.cw-about-section__since {
  font-size: 20px;
  line-height: 26px;
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  margin: 16px 0 0 0;
}

.cw-about-section--dark .cw-about-section__since {
  color: var(--cw-white);
}

.cw-about-section__body {
  font-size: 20px;
  line-height: 28px;
  font-family: Helvetica, Arial, sans-serif;
}

.cw-about-section--dark .cw-about-section__body {
  color: var(--cw-white);
}

.cw-about-section--light .cw-about-section__body {
  color: var(--cw-black);
}

.cw-about-section__body p {
  margin: 0 0 20px 0;
}

.cw-about-section__body p:last-child {
  margin-bottom: 0;
}

/* Match FAQ link styling: underline, underline-offset 3px */
.cw-about-section--dark .cw-about-section__body a {
  color: var(--cw-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cw-about-section--dark .cw-about-section__body a:hover {
  color: var(--cw-blue);
}

.cw-about-section--light .cw-about-section__body a {
  color: var(--cw-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cw-about-section--light .cw-about-section__body a:hover {
  opacity: 0.85;
}

.cw-about-section__body strong {
  font-weight: 700;
}

/* About page responsive */
@media (min-width: 800px) and (max-width: 1439px) {
  .cw-about-section {
    padding: 50px var(--cw-grid-margin-tablet) 60px;
  }

  .cw-about-section__heading {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 40px;
  }

  .cw-about-section__title-block {
    margin-bottom: 40px;
  }

  .cw-about-section__grid {
    gap: 40px;
  }

  .cw-about-section__tagline {
    font-size: 26px;
    line-height: 32px;
  }

  .cw-about-section__body {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 799px) {
  .cw-about-section {
    padding: 40px var(--cw-grid-margin-mobile) 50px;
  }

  .cw-about-section__heading {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 32px;
  }

  .cw-about-section__title-block {
    margin-bottom: 32px;
  }

  .cw-about-section__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cw-about-section__tagline {
    font-size: 22px;
    line-height: 28px;
  }

  .cw-about-section__since {
    font-size: 18px;
    margin-top: 8px;
  }

  .cw-about-section__body {
    font-size: 16px;
    line-height: 24px;
  }

  .cw-about-section__body p {
    margin-bottom: 16px;
  }
}

/* ============================================
   Plain Page Template (Impressum, Datenschutz, etc.)
   ============================================ */

.cw-plain {
  font-family: var(--cw-font);
  color: var(--cw-white);
  overflow-x: hidden;
}

/* Override Ghost's default heading color (--color-darker-gray) for dark background */
.cw-plain h1,
.cw-plain h2,
.cw-plain h3,
.cw-plain h4,
.cw-plain h5,
.cw-plain h6 {
  color: #FFFFFF !important;
}

.cw-plain-page .site {
  background: transparent;
}

.cw-plain-page .cw-site-content {
  max-width: none;
  padding: 0;
  background: transparent;
}

.cw-plain-page .site-footer,
.cw-plain-page .gh-foot {
  display: none !important;
}

.cw-plain__article {
  width: 100%;
  background-color: var(--cw-black);
  padding: 71px var(--cw-grid-margin-desktop) 80px;
}

.cw-plain__header {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.cw-plain__title {
  font-size: 50px;
  line-height: 55px;
  font-family: var(--cw-font);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--cw-white);
  text-transform: uppercase;
  margin: 0;
}

.cw-plain__content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 26px;
  font-family: Helvetica, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

.cw-plain__content p {
  margin: 0 0 20px 0;
}

.cw-plain__content p:last-child {
  margin-bottom: 0;
}

.cw-plain__content h2,
.cw-plain__content h3,
.cw-plain__content h4,
.cw-plain__content h5,
.cw-plain__content h6,
.cw-plain__content .kg-card h2,
.cw-plain__content .kg-card h3,
.cw-plain__content .kg-card h4 {
  font-family: var(--cw-font);
  color: #FFFFFF !important;
  margin: 40px 0 16px 0;
}

.cw-plain__content h2,
.cw-plain__content .kg-card h2 { font-size: 30px; line-height: 36px; text-transform: uppercase; }
.cw-plain__content h3,
.cw-plain__content .kg-card h3 { font-size: 24px; line-height: 30px; }
.cw-plain__content h4,
.cw-plain__content .kg-card h4 { font-size: 20px; line-height: 26px; }

.cw-plain__content ul,
.cw-plain__content ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.cw-plain__content li {
  margin-bottom: 8px;
}

.cw-plain__content a {
  color: var(--cw-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cw-plain__content a:hover {
  opacity: 0.85;
}

.cw-plain__content strong {
  font-weight: 700;
}

.cw-plain__content code {
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-family: var(--cw-font);
  font-size: 0.9em;
}

.cw-theme-docs__content h2:first-of-type {
  margin-top: 0;
}

/* Plain page – arrival collapsibles (dark theme) */
.cw-plain__content .cw-arrival-note {
  padding: 16px 20px;
  margin: 0 0 24px 0;
  background: transparent;
  border-radius: 4px;
  border-left: 4px solid var(--cw-blue);
}

.cw-plain__content .cw-arrival-address {
  padding: 20px;
  margin: 0 0 20px 0;
  background: transparent;
  border-radius: 4px;
  text-align: center;
}

.cw-plain__content .cw-arrival-collapsible {
  padding: 16px 20px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 8px;
  background: transparent;
  color: var(--cw-white);
  cursor: pointer;
  text-align: left;
  font-family: var(--cw-font);
  font-size: 20px;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cw-plain__content .cw-arrival-collapsible:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cw-plain__content .cw-arrival-collapsible.is-open {
  background: transparent;
  border-color: var(--cw-blue);
}

.cw-plain__content .cw-arrival-collapsible .cw-arrival-icon {
  font-size: 0.8em;
  transition: transform 0.2s ease;
}

.cw-plain__content .cw-arrival-collapsible.is-open .cw-arrival-icon {
  transform: rotate(90deg);
}

.cw-plain__content .cw-arrival-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cw-plain__content .cw-arrival-content.is-open {
  max-height: 2000px;
}

.cw-plain__content .cw-arrival-content-inner {
  padding: 20px 0 8px 0;
}

.cw-plain__content .cw-arrival-content-inner h4 {
  margin-top: 20px;
  margin-bottom: 12px;
}

.cw-plain__content .cw-arrival-content-inner h4:first-child {
  margin-top: 0;
}

.cw-plain__content .cw-arrival-back {
  display: inline-block;
  margin-top: 40px;
  color: var(--cw-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cw-plain__content .cw-arrival-back:hover,
.cw-plain__content .cw-plain-back:hover {
  opacity: 0.85;
}

.cw-plain__content .cw-plain-back {
  display: inline-block;
  margin-top: 40px;
  color: var(--cw-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Plain page – accommodation (info box, packing list, gallery) */
.cw-plain__content .cw-plain-info {
  padding: 20px;
  margin: 0 0 24px 0;
  background: transparent;
  border-radius: 8px;
  border-left: 4px solid var(--cw-blue);
}

.cw-plain__content .cw-plain-packing {
  padding: 20px;
  margin: 24px 0;
  background: transparent;
  border-radius: 8px;
}

.cw-plain__content .cw-plain-packing h4 {
  margin-top: 16px;
  margin-bottom: 12px;
  font-family: var(--cw-font);
  color: var(--cw-blue);
}

.cw-plain__content .cw-plain-packing h4:first-child {
  margin-top: 0;
}

.cw-plain__content .cw-plain-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.cw-plain__content .cw-plain-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Plain page – educational leave (steps, download button, note) */
.cw-plain__content .cw-plain-steps {
  margin: 24px 0;
}

.cw-plain__content .cw-plain-step {
  margin-bottom: 20px;
  padding: 20px;
  background: transparent;
  border-radius: 8px;
  border-left: 4px solid var(--cw-blue);
}

.cw-plain__content .cw-plain-step-number {
  font-weight: bold;
  font-family: var(--cw-font);
  color: var(--cw-blue);
  margin-bottom: 10px;
}

.cw-plain__content .cw-plain-step-content {
  line-height: 1.6;
}

.cw-plain__content .cw-plain-download {
  display: inline-block;
  padding: 12px 24px;
  margin: 12px 0 0 0;
  background-color: var(--cw-blue);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}

.cw-plain__content .cw-plain-download:hover {
  opacity: 0.9;
}

.cw-plain__content .cw-plain-note {
  padding: 20px;
  margin: 24px 0;
  background: transparent;
  border-radius: 8px;
  font-style: italic;
}

.cw-plain__content .cw-plain-note a {
  color: var(--cw-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .cw-plain__content .cw-plain-gallery {
    grid-template-columns: 1fr;
  }

  .cw-plain__content .cw-plain-gallery img {
    height: 180px;
  }
}

/* Plain page responsive */
@media (min-width: 800px) and (max-width: 1439px) {
  .cw-plain__article {
    padding: 50px var(--cw-grid-margin-tablet) 60px;
  }

  .cw-plain__title {
    font-size: 40px;
    line-height: 44px;
  }

  .cw-plain__content {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 799px) {
  .cw-plain__article {
    padding: 40px var(--cw-grid-margin-mobile) 50px;
  }

  .cw-plain__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 32px;
  }

  .cw-plain__content {
    font-size: 16px;
    line-height: 22px;
  }

  .cw-plain__content p {
    margin-bottom: 16px;
  }

  .cw-plain__content h2,
  .cw-plain__content .kg-card h2 { font-size: 24px; line-height: 30px; }
  .cw-plain__content h3,
  .cw-plain__content .kg-card h3 { font-size: 20px; line-height: 26px; }
  .cw-plain__content h4,
  .cw-plain__content .kg-card h4 { font-size: 18px; line-height: 24px; }
}
