/*
 Theme Name: Alanus Theme
 Theme URI: 
 Text Domain: alanus
 Description: ALANUS Theme
 Author: PULVIS solutions
 Author URI: 
 Template: blankslate
 Version: 1.0.0
*/
 
/* =Theme customization starts here
------------------------------------------------------- */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    line-height: 1.6;
    color: #231e23;
    background-color: #ffffff;
	font-weight: 300;
	overflow-x: hidden;
	font-family: Inter, sans-serif;
}

section {
    padding: 65px 0 70px;
}

input.text, input.title, input[type="email"], input[type="password"], input[type="tel"], input[type="text"], select, textarea {
	border: none;
}

a { 
	transition: opacity 0.3s ease;
}

a:hover,
a:active {
	opacity: 0.4;
}

i, em {
  font-style: italic;
}


p > a,
li > a,
p > strong > a,
p > b > a,
.accordion-text td > a,
.accordion-text a,
.section-text a {
	font-weight: bold;
	color: #a21c49;
	text-decoration: none;
}


/* Place this after your main stylesheet */
a.target-missing {
    cursor: not-allowed !important;
    text-decoration: underline dotted;
    position: relative;
}

a.target-missing:hover,
a.target-missing:focus {
	opacity: 1;
}

/* Fancy tooltip */
a.target-missing:hover::after,
a.target-missing:focus::after {
    content: attr(title);                 /* use built-in text */
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: 125%;                         /* place above link */
    background: rgba(0,0,0,.85);
    color: #fff;
    padding: .4em .6em;
    border-radius: .25em;
    font-size: .75rem;
    white-space: nowrap;
    pointer-events: none;                 /* ignore mouse */
    z-index: 9999;
    opacity: 0; animation: showTip .18s forwards;
}
@keyframes showTip { to { opacity: 1; } }




p > strong,
p > b,
li > strong,
li > b,
a > strong,
a > b,
.accordion-text strong,
.accordion-text b,
.section-text strong,
.section-text b {
	font-weight: bold;
}

.accordion-text a {
	color: #a21c49;
	text-decoration: none;
}

.accordion-text img {
	max-width: 100%;
}

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

.green-bg p > a {
	color: #fff373;
}

a[href^="tel"] {
    color: #a21c49;
   /* text-decoration: underline; */
}
.header-wrapper {
	position: relative;
	transition: all 0.3s ease;
	z-index: 100;
	transform: none;
}

.header-wrapper.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	transform: translateY(-100%); /* Start off-screen */
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/*
.info-box-open .header-wrapper {
  z-index: 9999;
}

.info-box-open .header-wrapper .main-nav {
	display: none;
}
.info-box-open .logo {
  filter: grayscale(100%) invert(100%);
}
*/

.header-wrapper .logo-nonsticky {
  width:201px;
  object-fit: contain;
}

.logo-sticky {
	display: none;
}
.header-wrapper.sticky .logo-nonsticky {
	display: none;
}
.header-wrapper.sticky .logo-sticky {
	display: block;
	width: 50px;
    height: 50px;
    position: relative;
    top: 8px;
	object-fit: contain;
}

.info-dropdown .logo img {
	max-width: 201px;
}
  
.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px !important;
	width: 100%;
}

.position-relative {
    position: relative;
}

.dark-bg {
    background-color: #231e23;
    color: white;
}

.red-bg {
    background-color: #a21c49;
    color: white;
}

.dark-bg h2,
.dark-bg .h2 {
	color: white;
}
.red-bg h2,
.red-bg .h2 {
	color: white;
}

.red-bg .section-label,
.red-bg .section-text {
    color: white;
}


.red-bg .section-label,
.red-bg .section-label.dark,
.red-bg .quick-links a {
    color: white;
}

.red-bg .label-line,
.red-bg .section-label.dark .label-line {
    background-color: white;
}


.beige-bg {
    /* background-color: #E6DCD2; Figma Vorgabe */
    background-color: #F7F4F1;
}
.beige-bg h2,
.beige-bg .h2 {
	color: #231e23;
}
.green-bg {
    color: white;
    background-color: #265b33;
}
.green-bg h2,
.green-bg .h2 {
	color: #fff;
}
.green-bg .section-label,
.green-bg .quick-links a {
    color: white;
}

.green-bg .label-line {
    background-color: white;
}

.yellow-bg {
    color: #000;
    background-color: #fff373;
}

.yellow-bg .label-line {
    background-color: #000;
}

.yellow-bg .section-label,
.yellow-bg .quick-links a {
    color: #000;
}

h2, .h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: bold; 
}

p {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 300;
}

/* List styles */
ul, ol {
    list-style-position: inside;
    margin-left: 10px;
	margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 17px;
}

.section-text ul li::before,
.accordion-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.section-text ul,
.accordion-text ul {
	margin-bottom: 20px;
}

.section-text li,
.accordion-text li {
	margin-bottom: 4px;
	line-height: 1.3;
}

.section-text ol,
.accordion-text ol {
	list-style: decimal;
	list-style-position: inside;
	margin-left: 5px;
}

.section-text ol li,
.accordion-text ol li {
    padding-left: 5px;
}


/* Container für beide Layouts */
.columns {
    width: 100%;
    padding: 20px;
}

/* 60/40 Layout nebeneinander */
.layout-6040-row {
    display: flex;
    justify-content: space-between;
}

.left-60 {
    width: 60%;
    max-width: 660px;
}

.right-40 {
    width: 40%;
}

/* 50/50 Layout nebeneinander */
.layout-5050-row {
    display: flex;
    justify-content: space-between;
}

.left-50,
.right-50 {
    width: 50%;
    padding: 20px;
    border-radius: 8px;
}

.left-50 {
    background-color: lightgreen;
}

.right-50 {
    background-color: lightyellow;
}

/* 60/40 Layout untereinander gestapelt mit Versatz */
.layout-6040-column {
    display: flex;
    flex-direction: row;
    gap: 20px;
	align-items: flex-end;
}

.flex-reverse.layout-6040-column {
	flex-direction: row-reverse;
}

.flex-start.layout-6040-column {
	align-items: flex-start;
}

.flex-center.layout-6040-column {
	align-items: center;
}

.layout-6040-column .right-40 {
    margin-left: auto;
	min-width: 560px;
}

.flex-reverse.layout-6040-column .right-40 {
    margin-left: 0;
    margin-right: auto;
}


.layout-6040-column .left-60 .section-text {
	margin-bottom: 125px;
}

.flex-start.layout-6040-column .left-60 .section-text,
.flex-center.layout-6040-column .left-60 .section-text {
	margin-bottom: 25px;
}

.layout-6040-column .right-40 .video-container2 {
	margin-top: 30px;
}
.layout-6040-column .right-40 .video-container {
 /*   margin-left: 1%; */
 /*   margin-top: calc( -100% + 260px ); 
    margin-top: calc( -100% + 320px );*/
}

/* 50/50 Layout untereinander gestapelt mit Versatz */
.layout-5050-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.layout-5050-column .right-50 {
    margin-left: 50%;
    /* Versatz nach rechts (gleich der Breite der linken Spalte) */
}

/* Side menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 40%;
    height: 100%;
    background-color: #231f20;
    color: white;
    z-index: 1002;
    transition: right 0.5s ease;
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

/* Backend placeholder styles */
.et-pb-module-placeholder {
    position: relative;
    border: 1px dashed #bbb;
    margin-bottom: 20px;
}

.et-pb-placeholder-overlay {
    padding: 20px;
}

.et-pb-placeholder-overlay h4,
.et-pb-placeholder-overlay .h4 {
    color: #333;
    margin-bottom: 10px;
}

.et-pb-placeholder-overlay p {
    color: #666;
    margin: 0;
}



/* Close button styling */
#close-menu-button {
    background-color: white;
    color: #231f20;
    border: 1px solid #231f20;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

/* Side menu content */
.side-menu-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 0rem 3rem;
    width: 100%;
    margin-left: auto;
}

.side-menu .action-buttons,
.side-menu.active .action-buttons {
    color: #fff !important;
}

.menu-section {
    /*margin-bottom: 2rem;*/
    width: 100%;
}

.menu-title {
    font-size: 1.75rem;
    font-weight: bold;
	color: #ffffff;
    margin-bottom: 0.5rem;
}

.menu-items {
    display: none;
    flex-direction: column;
    align-items: flex-end;
	overflow: hidden;
}
.menu-section.active .menu-items {
    display: flex;
}
.menu-title {
    cursor: pointer;
    position: relative;
	text-decoration: none;
}

/* Plus/minus toggle only for parents with children */
.has-children .menu-title::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.25rem;
    color: white;
}

/* Toggle to minus when section is open */
.menu-section.active .menu-title::after {
    content: '−';
}

/* Remove pointer icon for non-expandable menu titles */
.no-children .menu-title {
    cursor: default;
    padding-right: 0;
}

.no-children .menu-title::after {
    content: none;
}


.menu-item {
    margin-bottom: 0.5rem;
    color: white;
    text-decoration: none;
}


.menu-item:hover {
    text-decoration: none;
}

.cta-item {
    color: #ff6060;
    font-weight: bold;
}

/* Search bar */
.search-container {
    margin-top: 2rem;
    width: 100%;
}

.search-bar {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    font-size: 1rem;
    padding-right: 3rem;
}

.search-bar:active {
    outline: none;
}

.search-icon {
    position: absolute;
    right: 1rem;
    transform: translateY(-50%);
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
}

.search-wrapper {
    position: relative;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
}

.overlay.active {
    display: block;
}


.test-section-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-top: 20px;
}

.test-section-label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: white;
}

.section-label {
    display: flex;
    margin-bottom: 35px;
    color: #a21c49;
    font-weight: bold;
    flex-direction: column;
	font-size: 18px;
}

.label-line {
    width: 50px;
    height: 2px;
    background-color: #a21c49;
    margin-bottom: 10px;
}

.section-label.dark {
    color: #231e23;
}

.section-label.dark .label-line {
    background-color: #231e23;
}

.section-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #a21c49;
    font-weight: 600;
}

.section-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}






.section-subheadline {
    font-size: 24px;
    margin: 0;
  /*  color: #666; */
    max-width: 660px;
	padding-bottom: 20px;
}

.section-subheadline > strong,
.section-subheadline > b {
	font-weight: bold;
}

h2 + .section-subheadline,
.h2 + .section-subheadline {
	margin-top: -15px;
}


.section-text {
    margin-bottom: 25px;
    max-width: 660px;
}

.content-section.video-below .section-text {
	margin: auto;
}
.content-section.video-below .video-container {
	margin: auto;
	margin-top: 50px;
}


.bottom-content {
    margin-top: 2em;
	margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
    flex-wrap: wrap;
    flex-direction: row;
}

.bottom-content .btn {
    align-self: end;
}

.quick-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.quick-links a {
    font-weight: bold;
    font-size: 18px;
    color: #a21c49;
	line-height: 24px; 
}

.right-box {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-content: flex-end;
    align-items: flex-end;
}

.text-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 320px;
}

.text-box .question {
	margin-bottom: 0;
}
.text-box .answer {
    font-weight: bold;
    margin-bottom: unset;
	margin-top: 20px;
}
.text-box .answer:empty {
	display: none;
}


/* Navigation container */
.nav-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: transparent;
}

/* Info Dropdown Accordion container */
.chevron-down,
.chevron-up {
    margin-left: 0.25rem;
    width: 1rem;
    height: 1rem;
}

/* Active state for the info button */
.btn-primary.active {
    background-color: white;
    color: #265b33;
    border: 1px solid #265b33;
}

/* Navigation dropdown/modal */
.info-dropdown {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #265b33;
    color: white;
    z-index: 1000;
    overflow-y: auto;
}

.info-dropdown.active {
    display: block;
}

.info-dropdown .info-container {
    max-width: 1380px;
    /* Limit content width */
    margin: 0 auto;
    /* Center content horizontally */
    padding: 2rem;
    /* Add padding for spacing */
	padding-top: 60px;
}

.info-dropdown .logo {
    filter: grayscale(100%) invert(100%);
}

.dropdown-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-white {
    background-color: white;
    color: #265b33;
    border: solid 1px #fff;
}

.btn-white-outline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

/* Navigation sections */
.info-container {
    padding: 0 3rem;
}

.info-section {
    border-bottom: 1px solid;
}

.info-section:first-child {
    border-top: 1px solid;
}


.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
}

.accordion-title {
    margin-bottom: 0;
    font-size: 18px;
}

nav .accordion-title {
    font-size: 48px;
	color: #ffffff;
	letter-spacing: 2%;
	transition: color 0.3s ease;
}

nav .accordion-title:hover,
nav .accordion-title:active,
.info-link:hover,
.info-link:active {
	color: #fff373;
}

section .info-container {
    padding: 0;
}

.accordion-icon {
    width: 2rem;
    height: 2rem;
}

.info-dropdown .accordion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.0rem 4rem;
}

.accordion-content {
    padding-bottom: 2rem;
    margin: 0 6rem;
}

.accordion-content.hidden {
    display: none;
}

.info-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 30px;
	font-weight: 300;
	letter-spacing: 2%;
	transition: color 0.3s ease, filter 0.3s ease, background 0.3s ease;
	position: relative;
	padding-right:50px;
}

.info-link::after {
    content: "";
    width: 29px;
    height: 10px;
    margin-left: 0.5rem;
    background-image: url('assets/arrow-next-optimized.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
	position: absolute;
	right: 10px;
	top: calc(50% - 5px);
}

.arrow-icon {
    margin-left: 0.5rem;
}

/* Logo */
.logo {
    height: 85px;
    /*width: 40px;*/
    margin: 15px 0px 0;
}

.logo a:hover {
	opacity: 1 !important;
}

/* Main navigation links */
.main-nav {
    display: flex;
    gap: 0px;
    margin-right: 10px;
    margin-left: auto;
}

.main-nav > a {
    text-decoration: none;
    color: #231e23;
    font-size: 13px;
    font-weight: 500;
	opacity: 0.7;
	transition: opacity 0.3s ease;
	margin-bottom: 0;
}

.main-nav > a:hover,
.main-nav > a:active {
	opacity: 1;
	text-decoration: none;
}
.main-nav .menu-item { 
	padding:44px 18px; 
	text-decoration:none; 
	color:#000; 
}
.main-nav .menu-item.has-children::after {
	content:" ▼"; 
	font-size:11px; 
	display: none;
} 
.main-nav .menu-item.has-children:hover + .mega-submenu,
.main-nav .mega-submenu:hover { 
	display:flex; 
}
.main-nav .submenu-column   { 
	flex:1 1 200px; 
	min-width:180px; 
	border-right: 1px solid #e9e9e9;
}

.main-nav .submenu-column:last-child {
	border-right: none;
}

.main-nav .submenu-link,
.main-nav .submenu-heading.has-no-children  { 
	display:block; 
	margin-bottom:8px;  
	font-size:13px; 
	text-decoration:none; 
	color: #231e23;
	font-weight: 400;
	line-height: 1.5;
	padding-right: 10px;
}

.main-nav .submenu-heading  { 
	display:block; 
	margin-bottom:16px; 
	font-size:13px; 
	text-decoration:none;
	color:#231e23; 
	font-weight:700; 
	line-height: 1.5;
	padding-right: 10px;
}
.main-nav .submenu-heading.submenu-link { 
	margin-top: 40px;
}


.main-nav .submenu-link:hover {  
}
.main-nav .mega-submenu { 
	z-index:200; 
} 
.main-nav .mega-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 5px 12px rgba(0,0,0,.06);
  padding: 32px 40px;
  flex-wrap: wrap;
  gap: 32px;
  z-index: 200;
  border: 1px solid #e9e9e9;
}  

/* Header Search */
.header-search-container {
	padding: 7px; 
    border-radius: 50%; 
    border: 1px solid #000000;
	position: relative;
	height: 32px;
    min-width: 32px; 
}
.header-search-container form {
	display: none;	
}
.header-search-container.active {
	width: 140px;
	border-radius: 50px; 
}
.header-search-container.active form {
	display: flex;
}
.header-search-container input {
	border: 0px;
	width: 105px;
}

.header-search-container .search-submit {
	border: 0;
	background: transparent;
	position: absolute;
	top: 7px;
	right: 7px;
	cursor: pointer;
}
.header-search-container .search-submit svg {
	height: 16px;
	width: 16px;
}



.header-search-container .search-icon-form {
	position: absolute;
    top: 5px;
	right: 7px;
	cursor: pointer;
}
.header-search-container .search-icon-form svg {
	height: 16px;
	width: 16px;
}
.header-search-container.active .search-icon-form {
	display: none;
}
	
	

/* Action buttons */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 13px;
}

.action-buttons > button {
	opacity: 1;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.action-buttons .dropdown-button {
    background-color: #265b33;
    color: white;
    border: none;
    gap: 5px;
}

.action-buttons .dropdown-button .chevron {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-top: -5px;
}

.action-buttons .accessibility-button,
.action-buttons .language-button {
    background-color: transparent;
    border: 1px solid #d1d1d1;
}

.action-buttons .language-button {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.action-buttons .menu-button {
    background-color: #000000;
    color: white;
    border: none;
    padding: 12px 25px;
}

.action-buttons #menu-button:hover,
.action-buttons #menu-button:active {
	background-color: #a21c49;
	border-color: #a21c49;
	opacity: 1;
}

.action-buttons #language-button:hover,
.action-buttons #language-button:active,
.action-buttons #accessibility-button:hover,
.action-buttons #accessibility-button:active {
	border-color: #a21c49;
	color: #a21c49;
	opacity: 1;
}

.action-buttons #info-button:hover,
.action-buttons #info-button:active {
	opacity: 0.6;
}

/* Hero section */
.hero-section {
    padding: 55px 0 40px 0;
}

.hero-section .layout-6040-row {
    margin-bottom: -200px;
}

.hero-content {
    display: flex;
    justify-content: flex-end;
}

.hero-content .left-60 {
    margin-top: 60px;
}

.hero-text {
    max-width: 650px;
    min-width: 470px;
	margin-right: 70px;
}

.hero-text h1,
.hero-text .h1  {
    font-size: 24px;
    line-height: 1.3;
    color: #231e23;
	font-weight: bold;
}

.hero-text h2,
.hero-text .h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #231e23;
    font-weight: normal;
}

.hero-text h1 .hero-subtitle,
.hero-text h2 .hero-subtitle,
.hero-text .h1 .hero-subtitle,
.hero-text .h2 .hero-subtitle {
	font-weight: 300;
}


.hero-image {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: 0px;
}

/* Featured section */
.featured-section {
    padding-bottom: 0;
    position: relative;
	padding-top: 40px;
}

.featured-section .layout-6040-row {
    min-height: 750px;
}

.featured-section .left-60 {
    margin-top: 120px;
    margin-bottom: 120px;
}

.featured-section .slider-controls {
    justify-content: unset;
}

.featured-section .slider-controls button {
    filter: unset;
	display: block;
}

.featured-section .quick-links {
    margin-top: -170px;
	margin-bottom: 60px;
	display: table;
}

.featured-image {
    position: relative;
    width: 100%;
	height: 100%;
    max-height: 600px;
    overflow: hidden;
    border-radius: 0px;
}

.hero-image img,
.featured-image img {
    width: 100%;
    height: 100%;
	max-height: 600px;
    object-fit: cover;
}

.featured-section .right-40 .featured-image {
    height: 100%;
    justify-self: end;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 40px 40px 40px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    width: 100%;
	z-index: 10;
}
.image-overlay-text {
	padding-bottom: 80px;
	z-index: 20;
}
.image-overlay h2,
.image-overlay .h2 {
    font-size: 21px;
    margin-bottom: 0px;
	color: #ffffff;
    max-width: 500px;
}

.image-overlay p {
    margin-bottom: 20px;
    max-width: 500px;
	font-size: 13px;
}

.image-overlay .btn {
	font-size: 10px;
	padding: 4px 14px;
  display: inline-block;
}

.featured-section .slick-slide {
	position: relative;
}
.slide-img-wrap {
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
}

.slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Button styles */
.btn {
    border-radius: 9999rem;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
	letter-spacing: 4%;
	text-decoration: none;
}

.btn:hover,
.btn:active {
    opacity: 0.4;
    transition: all 0.3s ease;
}

.btn.small {
    font-size: 10px;
  padding: 6px 14px;
}

.btn-primary {
    background-color: #265b33;
    color: white;
    border: 1px;
    gap: 5px;
}

.btn-primary .chevron {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-top: -5px;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #231e23;
    color: #231e23;
}

.btn-primary.btn-outline-light {
    background-color: white;
    color: #265b33;
    border: 1px;
    gap: 5px;
}

.btn-circle {
    padding: 7px;
    width: auto;
    height: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
	border: 1px solid #000000;
}

.btn-dark {
    background-color: #000000;
    color: white;
    border: 1px solid #000000;
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline-grey {
    background-color: transparent;
    border: 1px solid #9D9B9D;
    color: #9D9B9D;
}

.btn-outline-black {
    background-color: transparent;
    border: 1px solid #231e23;
    color: #231e23;
}

.yellow-button {
    padding: 4px 15px 5px;
    text-decoration: none;
    color: #231e23;
    letter-spacing: 2%;
    background: #fff373;
    border: 1px solid #fff373;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
	max-width: 270px;
	min-width: 210px;
}

.right-box .yellow-button {
	min-width: 210px;
	padding: 4px 10px 5px 15px;
}

.yellow-button:after {
    content: " →";
    left: 0;
    font-weight: bold;
	margin-left: 5px
}

.yellow-button:hover,
.yellow-button:active {
    opacity: 0.4;
    transition: all 0.3s ease;
}

.yellow-button.big {
    padding: 0.75em 1.5em;
    font-size: 24px;
	max-width: 420px;
	min-width: 420px;
}

.yellow-button.float {
    padding: 0.75em 1.5em;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.pill {
    border-radius: 9999em;
    padding: 0.75em 1.5em;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.circle {
    border-radius: 100%;
}

/* Slider Arrows */
.arrow {
    width: 29px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
    outline: none;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.arrow:hover,
.arrow:active {
	opacity: 1;
}

.arrow.prev {
    background-image: url('assets/arrow-prev-optimized.svg');
}

.arrow.next {
    background-image: url('assets/arrow-next-optimized.svg');
}

.arrow-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.play-button > .arrow-link {
    padding-left: 0px;
}

.arrow-link:before {
    content: "↓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.play-button > .arrow-link:before {
    content: "";
	display: none;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.slider-controls button {
    filter: invert(1);
}


.slider-count {
    font-size: 14px;
}

.carousel.arrow {
    width: 23px;
    height: 8px;
    filter: invert(1);
	padding: 10px;
}

.chevron-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.chevron-button::after {
    content: "";
    position: relative;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDEyIDciIHdpZHRoPSIxMiIgaGVpZ2h0PSI3Ij48dGl0bGU+Y2hldnJvbi1zbWFsbC1kb3duPC90aXRsZT48c3R5bGU+LnMwIHsgZmlsbDogbm9uZTtzdHJva2U6ICNmZmZmZmY7c3Ryb2tlLXdpZHRoOiAxLjggfSA8L3N0eWxlPjxwYXRoIGNsYXNzPSJzMCIgZD0ibTAuOCAxbDUuNSA1bTQuNy01bC01LjUgNSIvPjwvc3ZnPg==');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.info-dropdown.active .chevron-button::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDEyIDciIHdpZHRoPSIxMiIgaGVpZ2h0PSI3Ij4KCTx0aXRsZT5jaGV2cm9uLXNtYWxsLXVwPC90aXRsZT4KCTxzdHlsZT4KCQkuczAgeyBmaWxsOiBub25lO3N0cm9rZTogI2ZmZmZmZjtzdHJva2Utd2lkdGg6IDEuOCB9IAoJPC9zdHlsZT4KCTxwYXRoIGNsYXNzPSJzMCIgZD0iTTExLjIwOTQgNkw1LjcwOTQyIDFNMSA2TDYuNSAxIi8+Cjwvc3ZnPg==');
    filter: invert(49%) sepia(11%) saturate(1234%) hue-rotate(67deg) brightness(93%) contrast(86%);
}

.btn-primary.active .chevron-button::after {
    background-image: url('assets/chevron-small-up.svg');
    filter: invert(49%) sepia(11%) saturate(1234%) hue-rotate(67deg) brightness(93%) contrast(86%);

}

.btn-outline-black.chevron-button::after {
    fill: #231e23;
    filter: invert(1);
}


/* Apply button */
.featured-section .apply-button {
    position: absolute;
    bottom: -40px;
    right: 120px;
    z-index: 10;
}

.apply-button {
    width: 180px;
    height: 180px;
    background-color: #fff373;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 4px rgba(10, 30, 50, 0.5);
	opacity: 1;
	transition: opacity 0.3s ease;
	cursor: pointer;
	text-decoration: none;
}

.apply-button.apply-fixed {
  position: static;
  top: 85vh;
  right: calc((100vw - 1360px) /2 + 50px);
  z-index: 99;
  
   transition: opacity 0.3s ease, transform 240ms ease; /* you can tweak duration/easing */
  will-change: transform;
}

.apply-button:hover,
.apply-button:active {
	opacity: 0.7;
}

.apply-button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px;
}

.apply-button-text h3,
.apply-button-text .h3,
.apply-button-text p.headline {
    font-size: 21px;
    margin-bottom: 1px;
    color: #231e23;
	font-weight: 700;
	line-height: 1.1;
	text-transform: none;
	padding-bottom: 10px;
}

.apply-button-text p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #231e23;
}

.apply.arrow {
    margin-top: 5px;
    filter: invert(1);
}


/* Prolog & intro section styles */


.prolog-section,
.intro-section {
    position: relative;
}

.prolog-section .bottom-content {
	margin-bottom: 20px;
	margin-top: 80px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 0px;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button svg {
    margin-left: 5px;
}

/** .prolog-section.red-bg .quick-links a,
.prolog-section.red-bg a {
    color: #231e23;
}  **/
.prolog-section .container {
	position: relative;
}
.prolog-section .apply-button {
	position: absolute;
	top: 2%;
    right: 5%;
 
}
/* Study section styles */
.button-group {
    margin: auto;
    display: flex;
    width: 75%;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    align-content: center;
    margin-bottom: 3.75em;
}

.filter-buttons {
    display: flex;
    width: 100%;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-buttons .btn {
    width: 100%;
}

.button-group .btn-outline-black {
    font-weight: 600;
    font-size: 21px;
	padding: 24px 1.5em;
	letter-spacing: 2%;
}

.button-group .big {
    width: 100%;
    font-weight: 600;
    font-size: 21px;
    padding: 25px 1.5em;
}

.alanomat-box {
    max-width: 400px;
}

.alanomat-question {
    margin-bottom: 5px;
}

.alanomat-text {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Benefits section styles */
.benefits-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: -20px;
}

.benefits-cards {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
	width: 100%;
	max-width: 1100px;
	margin: auto;
}

.benefit-card {
    flex: 0 0 auto;
    width: calc(25% - 23px);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	padding: 0 10px;
}

.benefit-icon {
    width: 120px;
    height: 120px;
    background-color: transparent;
    margin: 0 auto 15px;
	
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.benefit-icon img {
	max-width: 100%;
}
.benefit-icon.circle {
    border-radius: 50%;
}

.benefit-icon.triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.benefit-icon.square {
    border-radius: 0;
}

.benefit-icon.ganzheitlich {
  background-image: url(/wp-content/themes/alanus/img/icon_ganzheitlich.png);
}

.benefit-icon.individuell {
  background-image: url(/wp-content/themes/alanus/img/icon_individuell.png);
}

.benefit-icon.oekologisch {
  background-image: url(/wp-content/themes/alanus/img/icon_oekologisch.png);
}

.benefit-icon.flexibel {
  background-image: url(/wp-content/themes/alanus/img/icon_flexibel.png);
}

.benefit-icon.menschlich {
  background-image: url(/wp-content/themes/alanus/img/icon_menschlich.png);
}

.benefit-icon.abschluss {
  background-image: url(/wp-content/themes/alanus/img/icon_abschluss.png);
}



.benefit-card .benefit-card-title {
    font-size: 16px;
	line-height: 20px;
    font-weight: 600;
    color: #231e23;
	max-width: 220px;
	margin: auto;
    margin-bottom: 4px;
	padding-bottom: 10px;
}

.benefit-card p {
	max-width: 220px;
	margin: auto;
    margin-bottom: 24px;
    color: #231e23;
    font-size: 13px;
    line-height: 1.3;
}

.benefit-card p:has(+ .btn) {
	  min-height: 50px;
}

.benefit-card .btn {
	margin: 0 auto;
    opacity: 0.4;
    display: block;
    width: 50%;
}

.benefit-card .btn:hover,
.benefit-card .btn:active {
	opacity:1;
}

.more-button {
    padding: 8px 16px;
    border: 1px solid #231e23;
    border-radius: 30px;
    background-color: transparent;
    color: #231e23;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-button:hover {
    opacity: 0.4;
    transition: all 0.3s ease;

}

/* Alumni section styles */
.alumni-section {
    /*background-color: #ffffff;*/
}

.alumni-section.beige-bg {
  background-color: #F7F4F1;
}

.alumni-section .carousel-container {
	margin-top:30px;
}

.alumni-carousel {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.alumni-cards {
    display: flex;
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
}

.alumni-card {
    flex: 0 0 auto;
    width: 320px;
    height: 470px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.alumni-card.featured {
    background-color: #231e23;
    color: white;
}

.alumni-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.alumni-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-container {
    width: 100%;
    /*overflow: hidden;*/
    padding: 20px 0;
}
.vc_row[data-vc-full-width] {
	overflow: visible !important;
}
.carousel-container.fullwidth {
    width: 100vw;
    position: relative;
    transform: translate(-50%);
    left: 50%;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 320px;
    height: 470px;
    margin-right: 20px;
    background-color: white;
    position: relative;
    overflow: hidden;
}
.alumini-carousel .carousel-item {
	height: 470px !important;
}

.carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content,
.hover-content {
    padding: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s ease;
    z-index: 1;
}

.card-content {
    background-color: transparent;
}

.card-content .card-name {
    position: relative;
    margin-top: 1em;
	margin-bottom: 10px;
}

.card-content .card-name::before {
    content: "";
    position: absolute;
    top: -3em;
    left: 50%;
    transform: translateX(-50%);
    width: 3em;
    height: 3em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 15-6-6-6 6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
}
.hover-content .card-name{
	margin-bottom: 10px;
}
.card-content .card-name,
.hover-content .card-name,
.hover-content .subheadline {
    font-size: 13px;
    color: #E1C8AF;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;
}

.hover-content .subheadline {
    font-size: 11px;
	font-weight: 300;
	margin-top: 0;
	margin-bottom:10px;
}

.hover-content h4,
.hover-content .h4 {
	padding-bottom: 5px;
}

.card-content p,
.hover-content p {
    margin: 0;
    font-size: 15px;
	line-height: 1.25;
    color: #fff;
}

.hover-content {
    height: 100%;
    background-color: #161216;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transform: translateY(100%);
    overflow: hidden;
}

.carousel-item:hover .card-content {
    transform: translateY(100%);
}

.carousel-item:hover .hover-content {
    transform: translateY(0);
}
.hover-content .button,
.hover-content button {
    border: 1px solid #E1C8AF;
    background-color: transparent;
    color: #E1C8AF;
	margin-top: 18px;
}



.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-controls button {
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

.card-content::before {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 15-6-6-6 6'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
    transition: transform 0.3s ease;
}

.expand-button.active {
    transform: rotate(180deg);
}


.alumni-info {
    padding: 20px;
}

.alumni-card.featured .alumni-info {
    padding: 30px;
}

.alumni-card h3,
.alumni-card .h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.alumni-title {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.alumni-card.featured .alumni-title {
    color: #ccc;
}

.alumni-text {
    margin-bottom: 15px;
    font-size: 14px;
}

.alumni-quote {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 14px;
}

.alumni-controls {
    margin-top: 30px;
}

.carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.alumni-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.alumni-cta {
    max-width: 400px;
}

.alumni-cta-text {
    font-weight: 600;
    margin: 10px 0 15px;
}

.alumni-grid-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 20px;
	width: 100%;
}
.alumni-grid-wrapper .carousel-item {
	width: calc(25% - 15px); 
	margin-right: 0; 
	height: 270px;
}
.alumni-categories-wrapper {
	display: flex;
    margin-bottom: 30px;
	justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}
/* Location section styles */
.location-section {
    color: white;
}

.location-content {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.location-text {
    flex: 1;
}

.green-bg .section-subheadline,
.dark-bg  .section-subheadline {
    color: rgba(255, 255, 255, 1);
}

.location-section .right-40 {
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    align-items: end;
}

.location-section .bottom-content {
	  margin-top: 60px;
}

.location-description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
}

.location-images {
    flex: 1;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.location-images img {
  max-width: 100%;
}

.circle-image {
    width: 200px;
    height: 200px;
    border: 2px solid white;
    border-radius: 50%;
}

.location-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.location-note {
    margin-bottom: 20px;
    text-align: right;
	margin-top: 20px;
}


.study-section h2,
.alumni-section h2,
.study-section .h2,
.alumni-section .h2 {
	max-width: 660px;
}

.study-section .button-group {
	margin-top: 85px;
    margin-bottom: 115px;
}


/* Akkreditierung section styles */
.awards-section {
    background-color: transparent;
}

.awards-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-arrow {
    background: none;
    border: none;
    cursor: pointer;
    color: #231e23;
    /*width: 40px;*/
    height: 40px;
    flex-shrink: 0;
}

.awards-cards {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
	max-width: 1100px;
	margin: auto;
}

.awards-card {
    flex: 0 0 auto;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.awards-card img {
    margin: 0 auto 30px;
}

.awards-card p {
    margin-bottom: 20px;
    color: #231e23;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
	max-width: 220px;
    margin: auto;
}


/* News section styles */
.news-header {
    display: flex;
    margin-bottom: 40px;
    gap: 20px;
}

#category-button {
    align-self: flex-end;
}

.news-section .slider-controls {
    display: none;
}

.news-section #category-button {
    float: inline-end;
}

.news-section .layout-6040-column {
    margin-bottom: 60px;
}

.benefits-carousel,
.news-carousel,
.awards-carousel {
	margin-left: -51px;
    margin-right: -51px;
}

.news-listing-carousel {
	margin-left: -15px;
    margin-right: -15px;
}


.news-category-select {
	margin-top: 5px;
}

.news-carousel,
.news-listing-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
	margin-top: 45px;
	margin-bottom: 80px;
}



.news-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
    width: 100%;
}

.news-card {
    flex: 0 0 auto;
    width: 300px;
    min-width: 300px;
    /*background-color: #ffffff;*/
    border-radius: 4px;
    overflow: hidden;
	padding: 0 10px;
}
.loading-news-p {
	text-align: center;
    width: 100%;
}

.news-card-category,
.news-card-date {
    color: #231e23;
    font-size: 12px;
    font-weight: 500;
	opacity: 0.5;
	padding-bottom: 10px;
	letter-spacing: 4%;
	line-height: 16px;
}
.news-card-category {
	text-transform: uppercase;
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.news-card-content {
    padding-top: 14px;
    padding-bottom: 4px;
}

.card-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.news-card-title {
    font-size: 13px;
	line-height: 16px;
    margin-bottom: 10px;
	font-weight: 600;
    color: #231e23;
}
.publikationen-list-title {
    font-size: 16px;
	line-height: 16px;
    margin-bottom: 10px;
	font-weight: 600;
    color: #231e23;
}
.news-card-content h3
.news-card-content .h3 {
    font-weight: 600;	
}
.news-card-title-link {
	text-decoration: none;
}
.news-card-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-card-text p {
    font-size: 13px;
    color: #666; 
    line-height: 1.3;
}

.more-button.small {
    padding: 6px 12px;
    font-size: 11px;
}

.news-card-content .btn {
	opacity: 0.4;
	display: inline;
	font-size: 10px;
    padding: 6px 14px;
	text-decoration: none;
}

.news-card-content .btn:hover,
.news-card-content .btn:active {
	opacity: 1;
}

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


.news-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news-cards-grid .news-card {
    flex: 1 1 calc(25% - 20px); 
    box-sizing: border-box; 
    padding: 15px;
	max-width: 330px;
}


.publikationen-listing-section .news-cards-grid .news-card {
    flex: 1 1 100%;  
    border-bottom: 1px solid rgba(35, 30, 35, 0.3);
    border-radius: 0;
    padding-bottom: 20px;
    padding-top: 10px;
	padding-left: 0;
    padding-right: 0;
	max-width: 100%;
}
.publikationen-listing-section .news-listing-carousel {
	margin-left: auto;
    margin-right: auto;
    max-width: 920px;
}

/* Apply section styles */
.apply-section {
    background-color: #ffffff;
}

.section-label.red {
    color: #a21c49;
}

.section-label.red .label-line {
    background-color: #a21c49;
}

.apply-content {
    position: relative;
}

.apply-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 30px;
}

.apply-title {
    font-size: 60px;
    line-height: 1.2;
    color: #a21c49;
}

.apply-section .apply-button {
    position: absolute;
    top: 0;
    right: 15%;
    flex-shrink: 0;
}
.apply-section .layout-6040-row {
	position: relative;
}
.apply-section .right-40 {
    align-self: end;
}

.apply-text {
    font-size: 18px;
    line-height: 1.5;
}

.apply-info,
.apply-info p {
	font-size: 24px;
	line-height: 1.3;
}

.apply-info p.apply-info-text {
    margin-bottom: 30px;
}

.apply-info p.apply-info-cta {
	font-weight:bold;
}

.contact-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 125px;
	margin-top: 50px;
}

.contact-row {
    display: flex;
    /*gap: 130px;*/
}


.contact-label {
    min-width: 135px;
}

.contact-value a {
	text-decoration: none;
	color: #231e23;
}
.apply-section .bottom-content {
    justify-content: right;
}


/* Newsletter section styles */
.newsletter-content {
    margin: 0 auto;
}

.newsletter-content h2,
.newsletter-content .h2 {
	max-width: 660px;
	margin-bottom: 15px;
}

.newsletter-text {
    margin: 5px 0 65px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    width: 100%;
	margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    border: none;
    font-size: 24px;
    font-weight: 600;
    color: #666;
    background-color: #ffffff;
    text-align: center;
    letter-spacing: 0.01em;
}

.newsletter-input::placeholder {
    color: #aaa;
}

.newsletter-input:active,
.newsletter-input:focus {
    outline: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #fff373;
    color: #231e23;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background-color: #f0d040;
}

/* Icon styles */
.icon {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Footer styles */
.site-footer {
    background-color: #231e23;
    color: white;
    padding: 40px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-content-right {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 100px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0px;
	color: #ffffff;
}

.footer-address p {
    font-size: 16px;
}

.footer-copyright p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
	margin-bottom: 0;
	margin-top: 44px;
}

.footer-links {
    display: flex;
    gap: 90px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-links-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
	line-height: 1.4;
}

.footer-links-column a:hover,
.footer-links-column a:active {
    color: #fff373;
	opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.site-footer .social-icons {
    align-items: flex-end;
}

.social-media-section .social-icons {
    justify-content: center;
	margin-top: -10px;
	margin-bottom: 10px;
	gap: 22px;
}


.social-media-section .section-label {
    margin-bottom: 0;
}

.social-media-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.social-media-section .social-icon {
    width: 50px;
    height: 50px;
}

.social-media-section .social-icon > svg {
	width: 30px;
    height: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    color: #231e23;
    transition: all 0.3s ease;
}

.footer-content .social-icon:hover,
.footer-content .social-icon:active {
    background-color: #fff373;
	opacity: 1;
}

.social-icon > svg {
	width: 20px;
	height: 20px;
}

/* Videos section styles */
.video-carousel {
    margin-top: 40px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.videos {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 0;
}

.video {
    flex: 0 0 auto;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.grid-container {
    display: grid;
    gap: 15px;
    margin: 0 auto 40px;
    padding: 15px;
}

.grid-container li {
    padding: 0;
}

.grid-container li::marker {
    margin: 0 !important;
}

.grid-container li::before {
    display: inline-block;
	left: -4px;
}

/* Grid configurations */
.grid-1x4 {
    grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: auto;
}

.grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    /*grid-template-rows: repeat(2, 1fr);*/
	grid-auto-rows: auto;
}

.grid-2x3 {
    grid-template-columns: repeat(3, 1fr);
    /*grid-template-rows: repeat(2, 1fr);*/
	grid-auto-rows: auto;
}

.grid-2x4 {
    grid-template-columns: repeat(4, 1fr);
    /*grid-template-rows: repeat(2, 1fr);*/
	grid-auto-rows: auto;
}

.grid-3x3 {
    grid-template-columns: repeat(3, 1fr);
    /*grid-template-rows: repeat(3, 1fr);*/
	grid-auto-rows: auto;
}

.grid-3x4 {
    grid-template-columns: repeat(4, 1fr);
    /*grid-template-rows: repeat(3, 1fr);*/
	grid-auto-rows: auto;
}

.grid-4x4 {
    grid-template-columns: repeat(4, 1fr);
    /*grid-template-rows: repeat(4, 1fr);*/
	grid-auto-rows: auto;
}

.grid-cell {
    position: relative;
    padding: 20px;
    min-height: 60px;
    display: flex;
    overflow: visible;
    flex-direction: row;
}

.grid-cell-content {
    padding-left: 20px;
}

/* Right border for all cells except last in each row */
.grid-cell::after {
    content: "";
    position: absolute;
    top: -3px;
    right: -3px;
    width: 1px;
    height: calc(100% - 10px);
    background-color: #e6dcd2;
}

/* Bottom border for all cells */
.grid-cell::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 10px);
    height: 1px;
    background-color: #e6dcd2;
}

/* Remove right border from last column */
.grid-2x2 .grid-cell:nth-child(2n)::after,
.grid-2x3 .grid-cell:nth-child(3n)::after,
.grid-2x4 .grid-cell:nth-child(4n)::after,
.grid-3x3 .grid-cell:nth-child(3n)::after,
.grid-3x4 .grid-cell:nth-child(4n)::after,
.grid-4x4 .grid-cell:nth-child(4n)::after {
    display: none;
}

/* Remove bottom border from last row */
.grid-2x2 .grid-cell:nth-last-child(-n+2)::before,
.grid-2x3 .grid-cell:nth-last-child(-n+3)::before,
.grid-2x4 .grid-cell:nth-last-child(-n+4)::before,
.grid-3x3 .grid-cell:nth-last-child(-n+3)::before,
.grid-3x4 .grid-cell:nth-last-child(-n+4)::before,
.grid-4x4 .grid-cell:nth-last-child(-n+4)::before {
    display: none;
}

.side-menu #info-button,
.side-menu #accessibility-button,
.side-menu #language-button {
    display: none;
}


/* Misc styles */
body.home .et_pb_section.et_pb_section_1 {
	z-index: 10;
}


/* Fixes for editor */

.section-text > p:empty,
.quick-links > p:empty,
.accordion-text > p:empty,
.left-60 > p:empty,
.right-40 > p:empty,
.grid-cell-content > p:empty {
	display: none;
}

.section-text > h2:only-child:last-child,
.accordion-text > h2:only-child:last-child,
.section-text > .h2:only-child:last-child,
.accordion-text > .h2:only-child:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.dropdown {
    position: relative; 
    font-family: sans-serif;
	display: inline-block; 
}

.dropdown-toggle { 
    cursor: pointer;  
	text-transform: uppercase;
	min-width: 200px;
}
 

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: #F7F4F1;
	border: 1px solid #333;
	border-radius: 30px;
	min-width: 180px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	z-index: 10;
	
	  max-height: 40vh;           /* cap height by viewport */
  overflow-y: auto;           /* scroll if too tall   */
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch; /* smooth iOS */
}
 
.dropdown-menu span a {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
	text-transform: uppercase;
}

.dropdown-menu span a:hover {
   /* background-color: #f0f0f0; */
}

.dropdown-menu span a.active{ font-weight: 700; }

/*.dropdown:hover .dropdown-menu {
    display: block;
}*/
.dropdown.open .dropdown-menu{ display:block; }

.studySearchDropdown .dropdown-menu {
	display: none !important;
	/*overflow: hidden;*/
	min-width: 100%;
}

.studySearchDropdown.open .dropdown-menu {
	display: block !important; 
}
.studySearchDropdown .dropdown-toggle.btn{
	justify-content: space-between;
}
.studySearchDropdown.open .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
	top: 6px;
}
.studySearchDropdown .dropdown-menu a:hover,
.studySearchDropdown .dropdown-menu a:focus { 
	background: rgba(0, 0, 0, .1);
    outline: none;
    color: #231e23;
    opacity: 1;
}

.studySearchDropdown .dropdown-menu { 
    background: #fff;	
}

.studySearchDropdown.dropdown {
	width: 100%;
}


.studySearchDropdown .dropdown-menu a.unavailable {
  opacity: 0.3;
  pointer-events: none;      /* no mouse click */
}

.studySearchDropdown .dropdown-menu a.unavailable:focus {
  outline: none;             /* avoid focus outline on disabled items */
}


/* Single Post */  
article.type-post,
article.type-alumini {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: #fff; 
}
 
article.type-post header,
article.type-alumini header {
    margin-bottom: 1.5rem;
}

article.type-post .entry-title,
article.type-alumini .entry-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

article.type-post .entry-title a,
article.type-alumini .entry-title a {
    color: #111;
    text-decoration: none;
}

article.type-post .entry-title a:hover,
article.type-alumini .entry-title a:hover {
    color: #c10000;
    text-decoration: underline;
}
 
article.type-post .entry-meta,
article.type-alumini .entry-meta {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

article.type-post .entry-meta a,
article.type-alumini .entry-meta a {
    color: #666;
    text-decoration: none;
}

article.type-post .entry-meta a:hover,
article.type-alumini .entry-meta a:hover {
    text-decoration: underline;
}
 
article.type-post .entry-content img,
article.type-alumini .entry-content img {
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 100%;
    height: auto;
    border-radius: 0px;
	height: 100%;
}
 
article.type-post .entry-content,
article.type-alumini .entry-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/*
article.type-post .entry-content p,
article.type-alumini .entry-content p {
    margin-bottom: 1.5rem;
}*/
 
article.type-post .entry-footer,
article.type-alumini .entry-footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #888;
}

article.type-post .cat-links,
article.type-alumini .cat-links {
    font-weight: 500;
}

article.type-post .cat-links a,
article.type-alumini .cat-links a{
    color: #a21c49;
	text-decoration: none;
}
 
article.type-post .post-edit-link,
article.type-alumini .post-edit-link {
    float: right;
    font-size: 0.875rem;
    color: #aaa;
}

article.type-post .post-edit-link:hover,
article.type-alumini .post-edit-link:hover {
    color: #333;
}
 
.posts-navigation,
.post-navigation {
    max-width: 1340px;
    margin: 3rem auto 0 auto;
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    border-top: 1px solid #ddd;
}
 
.posts-navigation .screen-reader-text,
.post-navigation .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
 
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
} 
.posts-navigation .nav-previous a,
.post-navigation .nav-previous a,
.posts-navigation .nav-next a,
.post-navigation .nav-next a {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    background-color: #f5f5f5;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.posts-navigation .nav-previous a:hover,
.post-navigation .nav-previous a:hover,
.posts-navigation .nav-next a:hover,
.post-navigation .nav-next a:hover {
    background-color: #e0e0e0;
    color: #000;
} 
.posts-navigation .meta-nav ,
.post-navigation .meta-nav {
    font-weight: bold;
    margin: 0 0.25rem;
} 

.file_attachment_type_link {
	color: #231e23;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 26px;
}
.file_attachment_type_link img {
	width: 24px;
    height: auto;
    margin-right: 8px; 
}


/* Responsive */
@media (max-width: 768px) {
    article.type-alumini {
        padding: 1.5rem 1rem;
    }
	 .posts-navigation .nav-links,
	 .post-navigation .nav-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .posts-navigation .nav-previous,
    .post-navigation .nav-previous,
    .posts-navigation .nav-next,
    .post-navigation .nav-next {
        width: 100%;
    }
	.alumni-categories-wrapper { 
		gap: 2px;
	}
	.layout-6040-column {
		display: block;
	}
}


/* 404 */
.post.not-found {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
}
.post.not-found .entry-title {
    font-size: 2rem;
    color: #cc0000;
    margin-bottom: 1rem;
}

.post.not-found .entry-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}
.post.not-found .search-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.post.not-found .search-field {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.post.not-found .search-submit {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
	text-transform: uppercase;
}
.post.not-found .search-submit:hover {
    background-color: #444;
} 
.post.not-found .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Search Results */ 
body.archive h1.entry-title,
body.search-results h1.entry-title,
body.archive .h1.entry-title,
body.search-results .h1.entry-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 3rem auto 2rem;
    color: #111;
    border-bottom: 2px solid #aa0000;
    display: block;
    padding-bottom: 0.5rem;
	max-width: 1000px;
}
body.search-results article.page,
body.search-results article.post {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #ddd;
    font-family: 'Helvetica Neue', sans-serif;
}
 
body.search-results article.page .entry-title,
body.search-results article.post .entry-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

body.search-results article.page .entry-title a,
body.search-results article.post .entry-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

body.search-results article.page .entry-title a:hover,
body.search-results article.post .entry-title a:hover {
    color: #aa0000;
}
 
body.search-results article.page .post-edit-link,
body.search-results article.post .post-edit-link,
body.search-results article.page .vc_inline-link,
body.search-results article.post .vc_inline-link {
    display: inline-block;
    font-size: 0.85rem;
    color: #888;
    margin-right: 1rem;
    text-decoration: none;
}

body.search-results article.page .post-edit-link:hover,
body.search-results article.post .post-edit-link:hover,
body.search-results article.page .vc_inline-link:hover,
body.search-results article.post .vc_inline-link:hover {
    color: #444;
    text-decoration: underline;
}
 
body.search-results article.page .entry-summary,
body.search-results article.post .entry-summary {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-top: 1rem;
}
 
body.search-results article.page .entry-summary .more-link,
body.search-results article.post .entry-summary .more-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: bold;
    color: #000;
    text-decoration: underline;
    transition: color 0.3s;
}

body.search-results article.page .entry-summary .more-link:hover,
body.search-results article.post .entry-summary .more-link:hover {
    color: #aa0000;
}
 
body.search-results .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
body.archive article .entry-summary img {
	display: none;
}



#alumni-open-kontakt {
	padding: 7px 10px 8px 15px;
    text-transform: uppercase;
    font-size: 14px;
    min-width: 190px;
    font-weight: bold;
}
.alumni-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;  
    background-color: #9ab3ad; 
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 0;  
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
} 
.alumni-mail-icon {
    flex-shrink: 0;
    vertical-align: middle;
}
.alumni-modal-overlay {
    position: fixed;
    top: 0; left: 0; 
	width: 100%; 
	height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex; 
	align-items: center; 
	justify-content: center;
    z-index: 10000;
}
.alumni-modal-content {
    background: #fff;
    padding: 40px;
    width: 90%; max-width: 550px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.alumni-modal-title { 
	margin: 0;
    font-size: 30px;
    font-weight: bold;
}
.alumni-recipient-display { 
	color: #666; 
	margin-bottom: 20px; 
	font-size: 14px; 
}
.alumni-form-group { 
	margin-bottom: 15px; 
}
.alumni-form-group label { 
	display: block; 
	font-weight: bold; 
	margin-bottom: 5px; 
}
.alumni-form-group input, .alumni-form-group textarea {
    width: 100%; padding: 10px; border: 1px solid #ccc;
}
.alumni-form-checkbox { 
	display: flex; align-items: flex-start; 
	gap: 10px; 
	margin: 20px 0; 
}
.alumni-form-checkbox input { 
	margin-top: 5px;
}
.alumni-form-checkbox label { 
	font-size: 13px; 
	line-height: 1.4; 
}
.alumni-privacy-note { 
	font-size: 13px;
	margin-bottom: 20px; 
}
#alumni-submit-btn {  
	border: none; 
	padding: 15px; 
	width: 100%;
    cursor: pointer; 
	text-transform: uppercase; 
	font-weight: bold;
}
.alumni-close-modal {
    position: absolute; 
	right: 15px; 
	top: 10px;
    font-size: 28px; 
	cursor: pointer; 
	color: #aaa;
}

