/*
Theme Name: Youmocracy Theme
Author: Daniel Kirchhoff
Description: Ein Custom Theme für youmocracy.
Version: 1.1
*/

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&family=Bebas+Neue&display=swap');

:root {
  --color-primary-teal: #EBF9F8;
  --color-dark-teal: #226661;
  --color-rose: #C692C9;
  --color-light-teal: #EBF9F8;
  --color-accent-orange: #FBB559;
  --color-background-purple: #e1d5e7;
  --color-text-dark: #3C3C3C;
  --color-text-black: #000000;
  --color-text-light: #ffffff;
  --color-background-light: #f9f9f9;
  --font-primary: 'Mulish', Helvetica, Arial, sans-serif;
  --container-width: 1280px;
  --border-radius: 0px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.4;
  font-size: 20px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  hyphens: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 {
  font-size: 64px;
  font-weight: 900;
  word-break: break-word;
}

h2 {
  font-size: 45px;
  font-weight: 900;
  color: var(--color-dark-teal);
  word-break: break-word;
}

h3 {
  font-size: 1.5rem;
  word-break: break-word;
}

p {
  font-family: 'Open Sans', sans-serif !important;
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-dark-teal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 75px 0;
  margin-top: 0;
}

.flex {
  display: flex;
}

.container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

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

.btn {
  display: inline-block;
  background-color: var(--color-accent-orange);
  color: var(--color-text-dark);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  color: var(--color-text-black);
  text-decoration: underline;
}

/* UNUSED
.btn-light {
  background-color: var(--color-text-light);
  color: var(--color-text-dark);
  border-color: var(--color-text-light);
}

.btn-light:hover {
  background-color: transparent;
  color: var(--color-text-light);
}
*/

.btn-outline-teal {
  display: inline-block;
  background-color: transparent;
  color: var(--color-dark-teal);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid var(--color-dark-teal);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 1rem;
}

.btn-outline-teal:hover {
  background-color: var(--color-dark-teal);
  color: var(--color-text-light);
}

.grid {
  display: grid;
  gap: 20px;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-header .container .logo {
  width: 180px;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.main-navigation li {
  margin: 0 15px;
  color: var(--color-dark-teal);
}

.main-navigation .btn {
  font-weight: 900;
}

.nav-actions .btn {
  margin-left: 20px;
}

.main-navigation a {
  color: var(--color-text-dark);
  font-weight: bold;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 0;
  line-height: 1;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-dark-teal);
  margin: 6px 0;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-text-light);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active {
  transform: translateY(0);
}

.mobile-menu-content {
  padding: 80px 20px 20px;
}

.mobile-menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-content li {
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-content li:last-child {
  border-bottom: none;
}

.mobile-menu-content a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: var(--color-dark-teal);
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

.mobile-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-contact a {
  color: var(--color-dark-teal);
  font-size: 16px;
  font-weight: 600;
}

.mobile-contact a::after {
  display: none;
}

.mobile-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.mobile-social a {
  padding: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  color: #000;
}

.mobile-social a::after {
  display: none;
}

.mobile-social img {
  width: 28px;
  height: 28px;
}

.mobile-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.mobile-social:not([style*="display: none"]) {
  display: flex;
}

.mobile-menu-cta {
  margin-top: 25px;
}

.mobile-menu-cta .btn {
  text-align: center;
  padding: 15px 25px;
  font-size: 18px;
}

.page-overlay {
  display: none;
  position: fixed;
  top: 50vh;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-overlay.active {
  display: block;
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://picsum.photos/1200/800');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 65% 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-teal);
  clip-path: polygon(0 0, 55% 0, 70% 100%, 0% 100%);
  z-index: 2;
}

.hero .container {
  max-width: var(--container-width);
  width: 100%;
  margin-inline: auto;
  position: relative;
}

.hero-content {
  max-width: 80%;
  z-index: 100;
  color: var(--color-dark-teal);
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 80%;
}

/* UNUSED
.hero-image {
  display: none;
}
*/

.hero-content .btn {
  background-color: var(--color-rose);
  color: var(--color-text-light);
}

.intro-section .container {
  max-width: 800px;
}

/* UNUSED
.intro-section .wavy-divider {
  color: var(--color-accent-orange);
  font-weight: bold;
  font-size: 2rem;
  margin: 1rem 0;
}
*/

.features-section {
  background-color: var(--color-rose);
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 100%;
}

.feature-card-header {
  position: relative;
  line-height: 0;
}

.feature-card-header img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.feature-card-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%);
}

.feature-card-header h3 {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  margin: 0;
  color: var(--color-text-light);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  z-index: 2;
}

.feature-card-content {
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-card-content p {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-card-content .btn {
  align-self: flex-start;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding-top: 30px;
}

.stat-item .number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-dark-teal);
}

.stat-item .label {
  font-size: 1.1rem;
  font-weight: bold;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  background-color: var(--color-light-teal);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-card h3 {
  background-color: var(--color-light-teal);
  text-align: center;
  color: var(--color-dark-teal);
  font-weight: 900;
}

.step-card .icon {
  font-size: 3rem;
  color: var(--color-primary-teal);
  margin-bottom: 1.5rem;
}

.news-section {
  background-color: var(--color-background-light);
}

.splide__slide {
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.splide__slide.is-active {
  opacity: 1;
}

.news-card {
  background-color: var(--color-primary-teal);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-content h3 {
  color: var(--color-dark-teal);
  font-weight: 900;
  font-size: 1.5rem;
  margin-top: 0;
}

.news-card-content h3 a {
  color: var(--color-dark-teal);
  text-decoration: none;
}

.news-card-content h3 a:hover {
  color: var(--color-text-dark);
}

.news-card-content .news-subtitle {
  font-weight: bold;
  color: var(--color-text-dark);
  margin-top: 0;
  margin-bottom: 1rem;
}

.news-card-content p:not(.news-subtitle) {
  flex-grow: 1;
}

.splide__arrow {
  background-color: var(--color-dark-teal);
  opacity: 1;
  width: 44px;
  height: 44px;
}

.splide__arrow svg {
  fill: var(--color-text-light);
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover {
  background-color: #2a7e77;
  opacity: 1;
}

.splide__arrow:disabled {
  display: none;
}

.splide__pagination {
  bottom: -1.5em !important;
}

.splide__pagination__page.is-active {
  background-color: var(--color-dark-teal) !important;
}

.splide__pagination__page {
  background: #cccccc;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  opacity: 1;
}

.splide__pagination__page.is-active {
  background: var(--color-dark-teal);
  transform: scale(1.2);
}

.democracy-cta .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.democracy-cta-image img {
  border-radius: var(--border-radius);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.action-section {
  background-color: #3d807a;
  padding: 75px 0;
}

.action-section h2 {
  color: #fff;
  margin-bottom: 80px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 40px;
}

.action-box {
  position: relative;
  padding: 30px;
  border-radius: 35px;
  text-align: center;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.action-box:hover {
  transform: translateY(-5px);
}

.action-box::before {
  content: '';
  position: absolute;
  top: -49px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.action-box.team {
  background-color: #339991;
}

.action-box.team::before {
  background-image: url("data:image/svg+xml,%3Csvg width='82' height='50' viewBox='0 0 82 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M82 0L0 50H58.5L82 0Z' fill='%23339991'/%3E%3C/svg%3E");
  width: 82px;
  right: 26px;
}

.action-box.newsletter {
  background-color: #339991;
}

.action-box.newsletter::before {
  background-image: url("data:image/svg+xml,%3Csvg width='55' height='50' viewBox='0 0 55 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.917 0L55 50H0L24.917 0Z' fill='%23339991'/%3E%3C/svg%3E");
  width: 55px;
  left: 50%;
  transform: translateX(-50%);
}

.action-box.donate {
  background-color: #C692C9;
}

.action-box.donate::before {
  background-image: url("data:image/svg+xml,%3Csvg width='82' height='50' viewBox='0 0 82 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L82 50H23.5L0 0Z' fill='%23C692C9'/%3E%3C/svg%3E");
  width: 82px;
  left: 26px;
}

.action-box .icon {
  display: inline-block;
  margin-bottom: 1rem;
}

.action-box .icon svg {
  stroke: #fff;
  width: 48px;
  height: 48px;
}

.action-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.action-box a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-box a .arrow {
  transition: transform 0.2s ease-in-out;
  display: inline-block;
  margin-left: 5px;
}

.action-box a:hover .arrow {
  transform: translateX(5px);
}

.partners-section,
.awards-section {
  padding: 75px 0;
}

.partners-gallery {
  position: relative;
  margin-top: 1.5rem;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.partners-track {
  display: flex;
  animation: scroll-horizontal 30s linear infinite;
  gap: 4rem;
  width: calc(200% + 4rem);
}

.partner-item {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  position: relative;
}

.partner-logo {
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1rem;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(30%);
}

.partner-item:hover .partner-logo img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.partner-description {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  margin: 0;
}

.partner-item:hover .partner-description {
  opacity: 1;
  visibility: visible;
}

.partner-description-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-dark);
  text-align: center;
  max-height: 100%;
  overflow-y: auto;
}

.awards-gallery {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.awards-track {
  display: flex;
  animation: scroll-horizontal-reverse 35s linear infinite;
  gap: 4rem;
  width: calc(200% + 4rem);
}

.award-item {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.award-logo {
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: white;
}

.award-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.award-item:hover .award-logo img {
  transform: scale(1.05);
}

.award-title {
  font-weight: 700;
  color: var(--color-dark-teal);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  z-index: 2;
  position: relative;
  transition: opacity 0.3s ease;
}

.award-item:hover .award-title {
  opacity: 0;
}

.award-description {
  position: absolute;
  top: calc(1.5rem + 56px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 3rem);
  max-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.award-item:hover .award-description {
  opacity: 1;
  visibility: visible;
}

.award-description-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-dark);
  text-align: center;
  max-height: 100%;
  overflow-y: auto;
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-horizontal-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.partners-gallery:hover .partners-track,
.awards-gallery:hover .awards-track {
  animation-play-state: paused;
}

.site-footer {
  background-color: var(--color-dark-teal);
  color: var(--color-text-light);
  padding: 30px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo .logo {
  font-family: "Bebas Neue";
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact a {
  color: var(--color-text-light);
  text-decoration: underline;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.footer-contact a:hover {
  opacity: 0.8;
}

.footer-links {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-socials a {
  color: var(--color-text-light);
  transition: opacity 0.3s ease;
}

.footer-socials a:hover {
  opacity: 0.8;
}

.footer-socials svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.post-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--color-dark-teal);
  padding-top: 0;
  padding-inline: 20px;
}

.post-hero .container {
  position: relative;
  z-index: 2;
  text-align: left;
}

.post-hero .container img {
  max-width: 1063px;
  object-fit: cover;
  padding-top: 4rem;
}

.post-hero .post-meta {
  color: var(--color-text-dark);
  font-size: 16px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 1063px;
  display: flex;
  justify-content: space-between;
}

.post-hero .post-meta a {
  color: var(--color-text-dark);
  text-decoration: none;
}

.post-hero .post-title {
  font-size: 45px;
  font-weight: 800;
  color: var(--color-dark-teal);
  margin-bottom: 0;
}

.post-hero .post-subtitle {
  font-size: 45px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 0;
}

.post-hero-content svg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.post-hero .intro-text {
  color: var(--color-text-dark);
  margin-top: 30px;
  max-width: 75ch;
}

.post-hero .breadcrumbs {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 14px;
  color: var(--color-text-dark);
  font-weight: 600;
  z-index: 10;
}

.post-hero .breadcrumbs a {
  color: var(--color-text-dark);
  text-decoration: none;
}

.post-hero .breadcrumbs a:hover {
  text-decoration: underline;
}

.post-content-area {
  padding: 0;
  margin-top: 75px;
}

.post-content-body {
  max-width: 800px;
  margin: 0 auto 100px;
}

.post-content-body h2 {
  font-size: 36px;
  margin-bottom: 1rem;
  color: var(--color-dark-teal);
}

.post-content-body h3 {
  font-size: 28px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content-body p,
.post-content-body ul,
.post-content-body ol {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.post-content-body blockquote {
  font-size: 35px;
  font-weight: 800;
  color: var(--color-dark-teal);
  margin: 40px auto;
  max-width: 620px;
}

.post-content-body blockquote footer {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 75px;
  color: var(--color-text-dark);
}

.highlight-section {
  position: relative;
  color: var(--color-text-light);
  padding: 50px 0 50px 110px;
  overflow: hidden;
}

.highlight-section::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 0;
  left: calc((100% - 800px) / 2);
  right: 0;
  background-color: #6A446B;
  z-index: 0;
}

.highlight-section .container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.highlight-section h3 {
  font-size: 32px;
  text-align: left;
  margin-bottom: 2rem;
}

.highlight-section ul {
  list-style-type: none;
  padding-left: 0;
}

.highlight-section li {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.highlight-section svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}


.post-partners-section {
  padding: 60px 0 0 0;
  background: none;
}

.post-awards-section {
  padding: 60px 0 75px 0;
  background: none;
}


.pull-quotes-section {
  padding: 80px 0;
}

.pull-quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.pull-quotes-grid blockquote {
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.pull-quotes-grid blockquote::before {
  content: '"';
  font-size: 100px;
  font-weight: 900;
  color: var(--color-rose);
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.pull-quotes-grid blockquote p {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 20px;
}

.pull-quotes-grid blockquote footer {
  font-size: 18px;
  color: #555;
  margin-top: 1rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.post-main-image {
  margin-top: 40px;
}

/* UNUSED
.hero-schule {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--color-text-light);
  text-align: left;
}

.hero-schule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(34, 102, 97, 0.7);
  z-index: 1;
}

.hero-schule .hero-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.hero-schule h1 {
  font-size: 3rem;
  color: var(--color-text-light);
}
*/



.offerings-section {
  padding: 80px 0;
  background-color: #f7fdfc;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--color-primary-teal);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 25px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-dark-teal);
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(34, 102, 97, 0.05);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 30px;
  background-color: var(--color-primary-teal);
}

.accordion-content p {
  padding-bottom: 25px;
  color: var(--color-text-dark);
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  transition: max-height 0.3s ease-in;
}

.accordion-item.active .plus-icon {
  transform: rotate(45deg);
}

.plus-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-dark-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: var(--color-dark-teal);
  flex-shrink: 0;
  margin-left: 20px;
}

.gallery-section {
  padding: 80px 0;
}

.gallery-section .splide__slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.school-form-section {
  background-color: var(--color-dark-teal);
  padding: 80px 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-primary-teal);
  padding: 40px;
  border-radius: var(--border-radius);
}

.school-form-section h2 {
  color: var(--color-dark-teal);
  margin-bottom: 30px;
}

.school-form .form-group {
  margin-bottom: 20px;
}

.school-form .form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.school-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.school-form input[type="text"],
.school-form input[type="email"],
.school-form input[type="tel"],
.school-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-primary);
}

.form-group-radio .radio-options {
  display: flex;
  gap: 20px;
}

.form-group-radio label {
  font-weight: normal;
}

.form-group-checkbox label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group-checkbox input {
  width: auto;
}

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

.hero-overlay-shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 65%;
  background-color: var(--color-dark-teal);
  z-index: 2;
  clip-path: polygon(0 0,
      calc(100% - 135px) 0,
      100% 41.7%,
      calc(100% - 135px) 100%,
      0 100%);
}

.hero-section .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 25px 20px;
}

.hero-content {

  width: 55%;
  color: var(--color-text-light);
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--color-text-light);
}

.hero-content .subtext {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 35px;
  opacity: 0.9;
  color: var(--color-text-light);
}

/* UNUSED
.home .hero,
.home .hero::before,
.home .hero::after,
.home .hero-shape {
  display: none;
}
*/

@media (min-width: 769px) {

  .mobile-menu-overlay,
  .page-overlay {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-content {
    max-width: none;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .main-navigation {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }

  .hero::before {
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 55% 100%);
  }

  .hero::after {
    clip-path: polygon(0 0, 45% 0, 60% 100%, 0% 100%);
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  /* UNUSED
  .hero-image {
    height: 300px;
  }
*/

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .democracy-cta .container {
    grid-template-columns: 1fr;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  /* UNUSED
  .hero-schule .hero-content {
    max-width: 80%;
  }
*/

  .home .hero-overlay-shape {
    width: 80%;
  }

  .home .hero-content {
    width: 65%;
  }

  .home .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .site-header {
    position: relative;
    z-index: 1001;
  }

  .site-header .container {
    padding: 15px 20px;
  }

  .site-header .logo {
    width: 150px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    min-height: 80vh;
    padding: 80px 0;
  }

  .hero::before {
    width: 100%;
    clip-path: none;
    opacity: 0.3;
  }

  .hero::after {
    clip-path: none;
    background-color: rgba(0, 128, 128, 0.8);
  }

  .hero .container {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    color: var(--color-text-light);
  }

  .hero-content p {
    max-width: 100%;
    color: var(--color-text-light);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .post-hero {
    padding-top: 30px;
  }

  .post-hero .container {
    padding: 0 20px;
  }

  .post-hero .post-meta {
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-direction: column;
    gap: 10px;
  }

  .post-hero .post-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .post-hero .post-subtitle {
    font-size: 24px;
    line-height: 1.3;
  }

  .post-hero-content svg {
    width: 100vw;
    height: auto;
    right: -50px;
  }

  .post-hero .intro-text {
    font-size: 18px;
    margin-top: 20px;
  }

  .post-content-area {
    padding: 0;
  }

  .post-content-body {
    max-width: 100%;
    margin-bottom: 60px;
  }

  .post-content-body h2 {
    font-size: 28px;
    margin-top: 40px;
  }

  .post-content-body h3 {
    font-size: 22px;
  }

  .post-content-body p,
  .post-content-body ul,
  .post-content-body ol {
    font-size: 18px;
    line-height: 1.6;
  }

  .post-content-body blockquote {
    font-size: 24px;
    margin: 30px 0;
  }

  .post-content-body blockquote footer {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .post-content-body img {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .highlight-section {
    padding: 30px 20px;
  }

  .highlight-section::before {
    top: 20px;
    left: 0;
  }

  .highlight-section .container {
    padding: 0;
  }

  .highlight-section h3 {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }

  .highlight-section li {
    font-size: 18px;
  }

  .highlight-section svg {
    width: 300px;
    height: auto;
    top: -20px;
    left: -50px;
  }

  .post-gallery-section {
    padding: 40px 0;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    width: calc(100% - 40px);
    margin-inline: auto;
  }

  .gallery-item img {
    max-height: 300px;
    width: calc(100% - 40px);
    margin-inline: auto;
    object-fit: cover;
  }

  .pull-quotes-section {
    padding: 60px 20px;
  }

  .pull-quotes-grid {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .pull-quotes-grid blockquote::before {
    font-size: 80px;
    top: -40px;
  }

  .pull-quotes-grid blockquote p {
    font-size: 20px;
    line-height: 1.4;
  }

  .pull-quotes-grid blockquote footer {
    font-size: 16px;
  }

  .news-section {
    padding: 60px 20px;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .post-main-image {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
  }

  /* UNUSED
  .hero-schule .hero-content {
    max-width: 100%;
    text-align: center;
  }
*/

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .school-form .form-group-grid {
    grid-template-columns: 1fr;
  }

  .home .hero-section {
    min-height: 70vh;
  }

  .home .hero-overlay-shape {
    width: 100%;
    height: 65%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
  }

  .home .hero-content {
    width: 100%;
    text-align: center;
  }

  .home .hero-content h1 {
    font-size: 2.2rem;
  }

  .home .hero-content .subtext {
    font-size: 1.1rem;
  }

  .partner-item,
  .award-item {
    flex: 0 0 250px;
    padding: 1rem;
  }

  .partner-logo,
  .award-logo {
    width: 140px;
    height: 60px;
  }

  .partner-description,
  .award-description {
    padding: 1.5rem 1rem;
  }

  .post-hero .container img {
    max-height: 269px;
  }

  .post-hero {
    padding-inline: 0;
  }

  main {
    overflow-x: hidden;
  }

  .container {
    padding-inline: 20px;
  }

  .post-main-image {
    width: 100vw;
  }

  .post-hero .post-meta {
    margin-bottom: 50px;
  }

  .post-hero .post-title {
    font-size: 36px;
  }

  .post-hero .post-subtitle {
    font-size: 32px;
  }

  .post-hero-content svg {
    width: 100vw;
    height: auto;
  }

  .post-content-body h2 {
    font-size: 32px;
    margin-top: 60px;
  }

  .post-content-body h3 {
    font-size: 24px;
  }

  .post-content-body blockquote {
    margin: 30px auto;
  }

  .highlight-section {
    padding: 40px 30px;
  }

  .highlight-section::before {
    left: 0;
    right: 0;
  }

  .highlight-section h3 {
    font-size: 28px;
  }

  .highlight-section svg {
    width: 600px;
    height: auto;
  }

  .gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .pull-quotes-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .pull-quotes-grid blockquote p {
    font-size: 24px;
  }

  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-content {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-logo {
    order: 1;
  }

  .footer-contact {
    order: 2;
  }

  .footer-links {
    order: 3;
  }

  .footer-socials {
    order: 4;
  }
}

@media (max-width: 480px) {
  .post-hero .post-title {
    font-size: 24px;
  }

  .post-hero .post-subtitle {
    font-size: 20px;
  }

  .post-hero-content svg {
    width: 100vw;
    left: 0;
  }

  .post-content-body h2 {
    font-size: 24px;
  }

  .post-content-body h3 {
    font-size: 20px;
  }

  .post-content-body p,
  .post-content-body ul,
  .post-content-body ol {
    font-size: 16px;
  }

  .post-content-body blockquote {
    font-size: 20px;
  }

  .highlight-section h3 {
    font-size: 20px;
  }

  .highlight-section li {
    font-size: 16px;
  }

  .pull-quotes-grid blockquote p {
    font-size: 18px;
  }

  .home .hero-section {
    min-height: 60vh;
  }

  .home .hero-content h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
    max-width: 100%;
  }

  .intro-section p {
    font-size: 18px;
    line-height: 1.6;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-card-header h3 {
    font-size: 28px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .feature-card-content {
    padding: 20px 20px 20px 0;
  }

  .stat-item .number {
    font-size: 2.5rem;
  }

  .stat-item .label {
    font-size: 1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-card {
    padding: 25px;
  }

  .step-card h3 {
    font-size: 1.3rem;
    padding: 0;
  }

  .news-card-content {
    padding: 20px;
  }

  .news-card-content h3 {
    font-size: 1.3rem;
  }

  .democracy-cta .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .democracy-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .democracy-cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .democracy-cta-image {
    order: -1;
  }

  .democracy-cta-image img {
    height: 300px;
  }

  .action-section h2 {
    font-size: 1.8rem;
    margin-bottom: 60px;
    padding: 0 20px;
  }

  .action-grid {
    grid-template-columns: 1fr;
    gap: 80px;
    padding: 0 20px;
  }

  .action-box {
    min-height: 220px;
    padding: 25px 20px;
  }

  .action-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .action-box a {
    font-size: 1rem;
  }

  .action-box::before {
    top: -49px;
  }

  .action-box.team::before {
    right: 50%;
    transform: translateX(50%);
  }

  .action-box.donate::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .partners-section h2,
  .awards-section h2 {
    font-size: 1.8rem;
    padding: 0 20px;
  }

  .partners-track,
  .awards-track {
    gap: 2rem;
  }

  .partner-item,
  .award-item {
    flex: 0 0 220px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  section {
    padding: 50px 0;
  }

  .home .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .home .hero-content .subtext {
    font-size: 1rem;
  }

  .feature-card-header h3 {
    font-size: 24px;
  }

  .feature-card-content p {
    font-size: 16px;
  }

  .stat-item .number {
    font-size: 2rem;
  }

  .stat-item .label {
    font-size: 0.9rem;
  }

  .step-card h3 {
    font-size: 1.2rem;
  }

  .step-card p {
    font-size: 16px;
  }

  .democracy-cta-content h2 {
    font-size: 1.6rem;
  }

  .democracy-cta-content p {
    font-size: 16px;
  }

  .action-section h2 {
    font-size: 1.5rem;
  }

  .action-box h3 {
    font-size: 1.2rem;
  }

  .partner-item,
  .award-item {
    flex: 0 0 200px;
  }

  .partner-logo,
  .award-logo {
    width: 120px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .hero-section,
  .intro-section,
  .features-section,
  .stats-section,
  .steps-section,
  .news-section,
  .democracy-cta,
  .action-section,
  .partners-section,
  .awards-section {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  h1,
  h2,
  h3,
  h4,
  p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 768px) {
  .splide__arrow {
    width: 36px;
    height: 36px;
  }

  .splide__arrow svg {
    width: 1em;
    height: 1em;
  }

  .splide__arrow--prev {
    left: 10px;
  }

  .splide__arrow--next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 12px 30px;
    font-size: 16px;
  }

  .btn-outline-teal {
    padding: 12px 30px;
  }

  .menu-toggle {
    min-width: 44px;
  }
}

/* ========================================================= */
/* SCHULE TEMPLATE STYLES                                    */
/* ========================================================= */

.schule-section {
  padding: 75px 20px;
}

.schule-section .benefits-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.schule-section .benefit-card {
  background-color: #226661;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.schule-section .benefit-card .icon {
  margin-bottom: 20px;
}

.schule-section .benefit-card h3 {
  color: white;
  margin-bottom: 15px;
}

.schule-section .benefit-card p {
  color: white;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Intro Section */
.schule-section .intro-text {
  max-width: 800px;
  margin: 0 auto;
}

/* Offerings Section */
.offerings-section {
  background-color: var(--color-background-light);
}

.schule-section .accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Form Section */
.school-form-section {
  background-color: var(--color-dark-teal);
  color: var(--color-text-light);
}

.school-form-section .form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
}

.school-form-section h2 {
  color: var(--color-text-light);
}

.school-form .form-label-block {
  display: block;
  margin-bottom: 10px;
}

.school-form .radio-options {
  display: flex;
  gap: 20px;
}

.school-form .form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.school-form .form-group {
  margin-top: 20px;
}

.school-form input[type="text"],
.school-form input[type="email"],
.school-form input[type="tel"],
.school-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.school-form .link-accent {
  color: var(--color-accent-orange);
}

.school-form .form-group-checkbox {
  margin-top: 20px;
}

.school-form .form-submit {
  margin-top: 30px;
}

/* Reusing grid-2-col from global or other templates if possible, 
   but defining here to ensure consistency as per original inline styles */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* RESPONSIVE STYLES FOR SCHULE TEMPLATE */
@media (max-width: 992px) {
  .grid-2-col {
    grid-template-columns: 1fr;
  }

  .schule-section .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }

  .hero-overlay-shape {
    width: 100%;
    height: 65%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
  }

  .hero-content {
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content .subtext {
    font-size: 1.1rem;
  }

  /* Ensure button stays within container */
  .hero-content .btn {
    max-width: 100%;
    white-space: normal;
  }

  .schule-section .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .school-form .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .school-form-section .form-container {
    padding: 20px;
  }

  .action-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Accordion Header Flex Fix */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
}

/* Form Label Fix */
.school-form label {
  word-break: break-word;
  max-width: 100%;
  display: inline-block;
}