@font-face {
    font-family: 'FSMe';
    src: url("../font/FSMeW05-Regular.woff2") format('woff2'), /* Für >97% der modernen Browser (2025) */
         url("../font/FSMeW05-Regular.woff") format('woff');  /* Abwärtskompatibilität */
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'FSMe'; src: url("../font/FSMeW05-Bold.woff2") format('woff2'), /* Für >97% der modernen Browser (2025) */
         url("../font/FSMeW05-Bold.woff") format('woff');  /* Abwärtskompatibilität */
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'hwt-artz';
    src: url("../font/HWT-Artz-W00-Regular.woff2") format('woff2'), /* Für >97% der modernen Browser (2025) */
         url("../font/HWT-Artz-W00-Regular.woff") format('woff');  /* Abwärtskompatibilität */
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

/* Typography
-------------------------------------------------------------------------------------- */
html, body {
	font-family: "FSMe";
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;

  color: #2950AC;
}
h1 {
  font-size: 3.57rem;
  font-family: 'hwt-artz';
  letter-spacing: 0.18rem;
  margin: 0;
  font-weight: 400;
}
h2 {
  font-size: 1.43rem; /* 20px */
  line-height: 1.86rem; /* 40px */
  margin: 0;
}
@media (min-width: 1024px) {
  html, body {
    font-size: 20px;
    line-height: 26px;
  }
  h1 {
    font-size: 4rem;
    line-height: 3.6rem;
    letter-spacing: 0.2rem;
  }
  h2 {
    font-size: 1.5rem; /* 30px */
    line-height: 2rem; /* 40px */
  }
}

/* Structural Layout and Basics
-------------------------------------------------------------------------------------- */
html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;

  --theme-color: transparent;
}
html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  min-height: 100vh;
  background-color: #E2F7FA;
}
.fsm__stage {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}
/* Fullscreen (preferably non-scroll) Layout */
.fsm__stage.fullscreen-layout {
  height: 100vh;
}
.fsm__stage.fullscreen-layout .fullscreen-frame {
  height: 100%;
}
.fsm__stage.fullscreen-layout .fullscreen-frame__inner {
  min-height: 100%;
  box-sizing: border-box;
}
.frame {
  box-sizing: border-box;
  text-align: center;
}
.frame__inner {
  position: relative;
  display: inline-block;
  text-align: left;
  width: 100%;
}
/* Paddings and Limits */
.cp {
  padding: 30px 30px 0px 30px;
}
.cp-h {
  padding-left: 30px;
  padding-right: 30px;
}
.cp-v {
  padding-top: 30px;
  padding-bottom: 30px;
}
.limit {
  max-width: 1360px;
}
/* Responsive Layout Utilities */
.horizontal-flex,
.vertical-flex {
  position: relative;
  flex-grow: 1;
  display: inline-flex;
}
.horizontal-flex {
  flex-direction: row;
}
.vertical-flex {
  flex-direction: column;
}
.frame.vertical-flex {
  align-items: center;
}
.v-spacer {
  /* Set min-height and max-height to specify the spacer */
  content: "";
  flex-grow: 1;
  display: block;
  height: 100%;
}
.filler {
  flex-grow: 1;
}

@media (min-width: 1024px) { /* 768 Tablet , 1200 Desktop */
  .cp {
    padding: 30px 60px 120px 60px;
  }
  .fsm__stage.fullscreen-layout .cp {
    padding: 40px 60px 15px 120px !important;
  }
}

/* Layout Elements
-------------------------------------------------------------------------------------- */
/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header .button {
  margin-top: 2px;
  margin-left: 2px;
}
/* Logo */
.logo {
  display: inline-block;
  width: 154px;
  height: auto;
}
/* View title */
.v-spacer.title-s-t {
  min-height: 4rem;
  max-height: 87px;
}
.title {
  position: relative;
  text-transform: uppercase;
  transform: rotate(354deg);
  transform-origin: bottom left;
  line-height: 0.8125em;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
}
.title__small {
  font-size: 0.7em;
  letter-spacing: 0.05em;
}
.title__big {
  margin-left: 0.5em;
  display: block;
}
.title-1 {
  color: var(--theme-color);
}
.title-2 {
  margin-left: 0.4em;
}
/* Imprint Link */
a.imprint-link:visited,
a.imprint-link:active,
a.imprint-link:hover,
a.imprint-link {
  cursor: pointer;
  z-index: 20;
  text-decoration: underline;
  font-size: 14px;
  font-family: "FSMe";
  font-weight: bold;
  color: #2950ac;

  margin-left: 30px;
  margin-bottom: 15px;
}
/* Button Menu */
.v-spacer.menu-s-t {
  min-height: 1rem;
  max-height: 62px;
}
.button-menu {
  padding-left: 8px;
  padding-right: 5px;
  font-size: 1.5rem;

  max-width: 1190px;
  min-height: 100%;
}
.button-menu .menu-button-s.medium,
.button-menu .menu-button-s.big {
  min-height: 20px;
  max-height: 42px;
}
/* Buttons */
/* Remove button outline */
button:focus:not(:focus-visible), /* Old Browser fix */
button:focus {
  outline: none;
}
/* Show button outline on keyboard selection */
button:focus-visible {
    outline: 2px solid #2950AC;
    outline-offset: 2px;
}
.button {
  background-color: #2950ac;
  color: white;
  border: none;
  font-size: 1.0rem;
  line-height: 1.45rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  border-radius: 20px;
  padding: 9px 22px;
}
/* Fullwidth Buttons */
.button.fw {
  font-size: 1.4rem;
  width: 100%;
  text-align: center;
  border-radius: 57px;
}
.button.fw.small {
  padding: 22px 23px 25px 24px;
}
.button.fw.medium {
  padding: 37px 20px 34px 20px;
}
.button.fw.big {
  padding: 50px 20px 50px 20px;
}
/* Arc */
.arc-wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.arc-wrapper.cp {
  padding-bottom: 0;
}
.frame.arc-wrapper .frame__inner {
  text-align: right;
}
.arc {
    position: relative;
    display: inline-block;
    z-index: -1;
    width: 95%;
    max-width: 735px;
    min-width: 420px;
}
.arc svg {
  transform: translate(36%, 2.0vw);
  width: 100%;
  height: 100%;
}
#arc-path {
  fill: #2950AC;
  fill: var(--theme-color);
}
@media (min-width: 1024px) {
  /* Header */
  .header .button {
    margin-top: 23px;
    margin-left: -10px;
    font-size: 1rem;
    padding: 4px 27px;
  }
  /* Logo */
  .logo {
    width: 254px;
  }
  /* Title */
  .v-spacer.title-s-t {
    max-height: 43px;
    min-height: 25px;
  }
  .title {
    line-height: 0.8375em;
    margin-left: 5px;
  }
  .title__small {
    font-size: 0.8125em;
  }
  /* Button Menu */
  .v-spacer.menu-s-t {
    max-height: 85px;
  }
  .button-menu {
    padding: 0;
  }
  .button-menu .menu-button-s.medium {
    min-height: 20px;
    max-height: 36px;
  }
  .button-menu .menu-button-s.big {
    min-height: 30px;
    max-height: 60px;
  }
  /* Buttons */
  .button.fw.small {
    padding: 22px 24px 27px 24px;
  }
  .button.fw.medium {
    padding: 37px 20px 40px 20px;
  }
  .button.fw.big {
    padding: 49px 20px 54px 20px;
  }
}

/* Imprint
-------------------------------------------------------------------------------------- */
.template_imprint .v-spacer.steps-s-b {
  display: none;
}
.template_imprint .imprint-link,
.template_imprint a.imprint-link:visited,
.template_imprint a.imprint-link:active,
.template_imprint a.imprint-link:hover,
.template_imprint a.imprint-link {
  margin-left: 0;
}
.template_imprint .imprint_text {
  max-width: 600px;
}
@media (max-width: 500px) {
  .template_imprint .title__small {
    display: none;
  }
  .template_imprint .title__big {
    margin-left: 0;
  }
  .template_imprint .title {
    font-size: 10vw;
    margin-top: 10vw;
    display: block;
  }
}
@media (max-width: 1023px) {
  .template_imprint.cp {
    padding-bottom: 30px;
  }
}

/* View -> Home (static/js/fsm/home.js)
-------------------------------------------------------------------------------------- */
/* Header */
.context__home .header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
  display: block;
  text-align: right;
}
/* Title */
.context__home .v-spacer.title-s-t {
  max-height: 113px;
}
.context__home .title {
  margin-left: 5px;
}
/* Info */
.context__home .v-spacer.title-s-b {
  max-height: 45px;
  min-height: 1rem;
}
.context__home .info {
	background-image: url('../img/asterisk.svg');
  background-repeat: no-repeat;
  background-position: 0 3px;
  padding-left: 80px;
  max-width: 420px;
  font-size: 1rem;
  min-height: 80px;
  font-weight: bold;
  line-height: 1.3em;
}
/* Button Menu */
.context__home .v-spacer.menu-s-t {
  min-height: 1rem;
  max-height: 38px;
}
.context__home .button-menu {
  padding-left: 8px;
  padding-right: 0;
}
.context__home .button-menu .button {
  color: #2950AC;
  font-size: 1.42rem;
  letter-spacing: 0.005em;
}
.context__home .button-menu .v-spacer.menu-button-s {
  min-height: 20px;
  max-height: 25px;
}
.context__home .menu__herkunft-und-praegung {
  background-color: #9c89c5;
}
.context__home .menu__aufbau-der-demokratie {
  background-color: #62b881;
}
.context__home .menu__wirtschaft-und-gesellschaft {
  background-color: #ffa333;
}
.context__home .menu__einheit-nur-in-freiheit {
  background-color: #5bd1e3;
}
.context__home .menu__annaeherung-und-aussoehnung {
  background-color: #fe7396;;
}
.context__home .v-spacer.menu-s-b {
  max-height: 0;
}
@media (min-width: 1024px) {
  /* Title */
  .context__home .v-spacer.title-s-t {
    min-height: 85px;
    max-height: 105px;
  }
  .context__home .v-spacer.title-s-b {
    max-height: 30px;
  }
  /* Info */
  .context__home .info {
    background-size: 74px 97px;
    padding-left: 95px;
    min-height: 97px;
    background-position: 0 -5px;
    margin-left: -5px;
  }
  /* Button Menu */
  .context__home .v-spacer.menu-s-t {
    max-height: 70px;
  }
  .context__home .button-menu {
    padding-left: 0;
  }
  .context__home .button-menu .button {
    font-size: 1.1rem;
  }
  .context__home .button-menu .v-spacer.menu-button-s {
    min-height: 20px;
    max-height: 30px;
  }
  .context__home .v-spacer.menu-s-b {
    max-height: 120px;
    width: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  /* Title */
  .context__home .title {
    font-size: 5.5vw;
    line-height: 0.8728em;
  }
  .context__home .title__small {
    font-size: 0.7325em;
  }
}
@media (max-width: 1023px) {
  .context__home .v-spacer.title-s-t {
    min-height: 85px;
  }
  .context__home .title {
    font-size: 8vw;
    line-height: 0.785em;
  }
  .context__home .title--small {
    font-size: 4.8vw !important;
  }
}
@media (max-width: 500px) {
  .context__home .v-spacer.title-s-t {
    min-height: 75px;
  }
}

/* View -> Menu Template (static/js/fsm/template_menu.js)
-------------------------------------------------------------------------------------- */
.template_menu .title {
  margin-left: 10px;
}
.context__herkunft-und-praegung .template_menu .title {
  margin-left: 17px;
}
.context__einheit-nur-in-freiheit .template_menu .title-2 {
  margin-left: 1.0em;
}
@media (min-width: 1024px) {
  .context__herkunft-und-praegung .template_menu .title {
    margin-left: 5px;
  }
  .context__herkunft-und-praegung .template_menu .title-2 {
    margin-left: 1.25em;
  }
  .context__einheit-nur-in-freiheit .template_menu .title-2 {
    margin-left: 1.75em;
  }
  .context__annaeherung-und-aussoehnung .template_menu .title-2 {
    margin-left: 1em;
  }
}

/* View -> Content Page Template (static/js/fsm/template_page.js)
-------------------------------------------------------------------------------------- */
/* Utilities */
.template_page div.mobile-only {
  display: block;
}
.template_page .desktop-only {
  display: none;
}
/* Header */
.template_page .back-to-menu-arrow {
  background-color: transparent;
  background-image: url(../img/menu-back.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 42px;
  height: 42px;
  margin-top: -2px;
  cursor: pointer;
  border: none;
}
/* Title */
.template_page .category-title {
  margin-top: 2rem;
  margin-left: 3px;
}
.template_page .v-spacer.title-s-t {
  min-height: 0;
  max-height: none;
  height: 40px;
}
.template_page .title {
  font-size: 2.85rem;
  line-height: 2.6rem;
}
.template_page .title-1 {
  font-size: 0.877em;
  margin-left: 0.2em;
}
.template_page .v-spacer.title-s-b {
  min-height: 0;
  max-height: none;
  height: 55px;
}
/* Content */
.template_page .content {
  padding-bottom: 15px;
}
.template_page .content.cp-h {
  padding-left: 0;
  padding-right: 0;
}
.template_page .content-item__image {
  position: relative;
}
.template_page .content-type-tag {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 26px;
  z-index: 10;
  padding: 5px 13px 3px 13px;
}
/* Content Subtext */
.template_page .content-item__source,
.template_page .content-item__text {
  padding-left: 30px;
  padding-right: 30px;
}
.template_page .content-item__image__sub {
  font-size: 0.75rem;
  padding-top: 0.4rem;
}
.template_page .content-item__text {
  padding-bottom: 30px;
  margin-top: 0.25em;
  font-size: 1rem;
  min-height: 3rem;
}
.template_page .content-item--slider .content-item__text {
  min-height: 4rem;
}
@media (min-width: 1024px) {
  .template_page .limit {
    max-width: 1365px;
  }
  /* Utilities */
  .template_page .mobile-only {
    display: none;
  }
  .template_page .desktop-only {
    display: block;
  }
  /* Header */
  .template_page .logo {
    margin-top: 10px;
  }
  .template_page .back-to-menu-arrow {
    height: 50px;
    margin-top: 21px;

    width: 100%;
    min-width: 50px;
    max-width: 180px;
  }
  /* Title */
  .template_page .v-spacer.title-s-t {
    height: 50px;
  }
  .template_page .category-title {
    margin-top: 25px;
  }
  .template_page .title {
    line-height: 1.1em;
    /*font-size: 4rem;*/
    font-size: 2.85rem
  }
  .template_page .title-1 {
    margin-left: 5px;
    font-size: 1.140em;
  }
  .template_page .title-2 {
    margin-left: 2.3rem;
    letter-spacing: 0.05em;
    font-size: 1.404em;
  }
  .template_page .v-spacer.title-s-b {
    height: 38px;
  }
  /* Content */
  .template_page .content.cp-h {
    padding-left: 30px;
    padding-right: 30px;
  }
  .template_page .content-type-tag {
    top: 30px;
    right: 25px;
    padding: 3px 25px 0px 25px;
  }
  .template_page .content-item {
    display: flex;
  }
  .template_page .content-item__image {
    width: 53.7%;
  }
  /* Content Subtext */
  .template_page .content-item__image__sub {
    padding-top: 0.5rem;
    font-size: 0.7rem;
    padding-bottom: 35px;
  }
  .template_page .content-item__text {
    margin-top: 0;
    padding: 25px 40px;
    box-sizing: border-box;
    font-size: 1rem;
    /* max-width: 550px;*/
    width: 580px;
    flex-shrink: 0;
  }
}
@media (max-width: 430px) {
  .template_page .title {
    font-size: 9.1vw;
    line-height: 0.9em;
  }
}
@media (max-width: 375px) {
  .template_page .content-item__text br {
    display: none;
  }
}
/* View -> Content Page Template -> General exceptions
-------------------------------------------------------------------------------------- */
@media (min-width: 1024px) and (max-width: 1279px) {
  .template_page .content-item__text {
    font-size: 0.85em;
  }
  .template_page .content-item__text {
    width: 500px;
  }
}
/* View -> Content Page Template -> Page specific exceptions
-------------------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .context__wiedergutmachung-mit-israel .template_page .v-spacer.title-s-t {
    height: 75px;
  }
}
