/* fonts */
@font-face {
	font-family: 'Cooper Black Regular';
	font-style: normal;
	font-weight: normal;
	src: local('Cooper Black Regular'), url('./files/fonts/COOPBL.woff') format('woff');
}

@font-face {
	font-family: 'Permanent Marker';
	font-style: normal;
	font-weight: normal;
	src: local('Permanent Marker'), url('./files/permanent-marker-v16-latin-regular.woff2') format('woff2');
}


@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: normal;
	src: local('Open Sans'), url('./files/fonts/open-sans-v43-latin-regular.woff2') format('woff2');
}



html {
    height: 100%;
    min-height: 100vh;
    background: rgba(243, 149, 21, 1);
	background-repeat: no-repeat;
}

body {
    min-height: 100vh;
    height: 100h;
    display: flex;
    flex-direction: column;
    margin: 0;
    
    background: linear-gradient(180deg, rgba(214, 14, 38, 1) 40%, rgba(243, 149, 21, 1) 100%);
	background-repeat: no-repeat;
}

#main-content {
    flex: 1 0 auto;
	min-height: 0; /* Standardwert, kann helfen */
}



/* menu container */

.menu {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin: 0px 0;
	color: #F1EBBF;
}

.menu>p>a {
	padding: 0 20px;
	margin-top: 5;
	font-family: 'Cooper Black Regular';
	font-size: 56px;
}

.menu a.active {
	color: #F39515;
}



@media (max-width: 700px) {
  .menu {
    flex-direction: column;
    align-items: center;

  }
  .menu > p {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  .menu > p > a {
    padding: 10px 0;
    font-size: 32px;
  }
}


/* header/logo container */
.logo {
	text-align: center;
	padding-top: 50px;
	width: 300px;
}

#flag-selector {
  position: absolute;
  right: 20px; /* Abstand vom rechten Rand */
  display: flex;
  gap: 10px;
  top: 0;
  align-items: flex-start; /* optional, für vertikale Ausrichtung */
  padding-top: 10px;
}

#flag-selector img {
  cursor: pointer;
  opacity: 0.6;
  margin: 0 5px;
  
  transition: transform 0.2s, opacity 0.2s;
}

#flag-selector img.active {
  opacity: 1;
  transform: scale(1.1);
}

.header {
  position: relative;
  width: 100%;
  height: 350px; /* passe je nach Bedarf an */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}



/* footer container */
.footer {
	padding-top: 30px;
	padding-bottom: 40px;
	background-color: black;
	text-align: center;	
	margin-top: auto;
} 

.social-media {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.association-data {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    text-align: center;
}


.facebook {
	width: 32px;
	height: 32px;
	background-image: url('./files/pictures/facebook_beige.png');
	transition: 0.2s;
}

.facebook:hover {
	width: 32px;
	height: 32px;
	background-image: url('./files/pictures/facebook_rot.png');
	transition: 0.2s;
}

.instagram {
	width: 32px;
	height: 32px;
	background-image: url('./files/pictures/instagram_beige.png');
	transition: 0.2s;
}

.instagram:hover {
	width: 32px;
	height: 32px;
	background-image: url('./files/pictures/instagram_rot.png');
	transition: 0.2s;
}

.email {
	width: 32px;
	height: 32px;
	background-image: url('./files/pictures/email_beige.png');
	transition: 0.2s;
}

.email:hover {
	width: 32px;
	height: 32px;
	background-image: url('./files/pictures/email_rot.png');
	transition: 0.2s;
}




/* index */

.purpose-of-the-association {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-left: 6%;
	padding-right: 6%;
	padding-top: 20px;
	padding-bottom: 20px;
}

.purpose-of-the-association img {
	height: 200px;
}

.purpose-of-the-association p {
	width: 35%;
	font-size: 16px;
	text-align: left;
}


@media (max-width: 700px) {
	.purpose-of-the-association img {
		height: 100px;
	}
}



.zapparossa-announcement {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 6%;
  padding-right: 6%;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 24px;
  margin: 32px 0;
}

.zapparossa-announcement img {

  height: 250px;
  border-radius: 8px;
  flex-shrink: 0;
}

.zapparossa-announcement .announcement-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.zapparossa-announcement .announcement-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 0.5em;
  font-family: 'Open Sans';
  color: #F1EBBF;
  text-shadow: 0px 3px 1px #1D1D1B;
  text-align: left;
}

.zapparossa-announcement .announcement-body {
  font-size: 16px;
  font-family: 'Open Sans';
  color: #F1EBBF;
  text-shadow: 0px 3px 1px #1D1D1B;
  text-align: left;
}

/* Responsive Anpassung wie bei purpose-of-the-association */
@media (max-width: 700px) {
  .zapparossa-announcement img {
    height: 100px;
    max-width: 120px;
  }
  .zapparossa-announcement {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 3%;
    padding-right: 3%;
    gap: 12px;
  }
}



/* about */

.about-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-left: 1%;
	padding-right: 6%;
	padding-top: 20px;
	padding-bottom: 20px;
}

.about-container img {
	width: 100%;
}

.about-container p {
	width: 90%;
	font-size: 16px;
	text-align: left;
}



/* news */

.news_logo {
	width: 100%;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.newscontainer {
	grid-template-columns: 1fr;
	margin-left: 10%;
	margin-right: 10%;
	gap: 10%;

	  display: flex;
  flex-wrap: wrap;
}

.newssection {
  position: relative;
  border: 2px solid #ead413;
  border-radius: 20px;
  margin: 24px 0;
  padding: 24px 16px 16px 16px;
  width: 40%;
}

.newssection h3.left {
  position:relative;
  top: -28px;
  left: 16px;
  padding: 0 12px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F1EBBF;
  z-index: 1;
  margin-bottom: -30px; /* Abstand nach unten stark verkleinern */
}

.newssection li {
	color: #F1EBBF;
	text-shadow: 0px 3px 1px #1D1D1B;
}

@media (max-width: 900px) {
  .newscontainer {
    flex-direction: column;
    align-items: center; /* Zentriert die Boxen */
  }
  .newssection {
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.listitem-with-sublist > span {
  /* sorgt dafür, dass der Text in einer Zeile mit dem Aufzählungspunkt bleibt */
  display: inline;
}
.listitem-with-sublist > ul {
  /* sorgt dafür, dass der Text in einer Zeile mit dem Aufzählungspunkt bleibt */
  display: inline;
  list-style-position: inside;
}



/* events */

.skybox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.skybox-content {
	position: relative;
	/* Wichtig für die absolute Positionierung des Schließen-Buttons */

	background: rgb(214, 14, 38);
	padding: 20px;
	width: 80%;
	max-height: 80vh;
	overflow-y: auto;
	border-radius: 5px;
	text-align: center;

}

.close-button {
	position: absolute;
	top: 5px;
	right: 10px;
	cursor: pointer;
	font-size: 28px;
	color: #F1EBBF;
	border: none;
	background: none;
	font-family: 'Open Sans';
}

/* Gallery Styles */
.gallery-content {
	text-align: left !important;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 15px;
	margin-top: 20px;
	max-height: 60vh;
	overflow-y: auto;
	padding: 10px;
}

.gallery-image {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 2px solid #F1EBBF;
}

.gallery-image:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Lightbox Styles */
.lightbox {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
}

.lightbox-content {
	max-width: 90%;
	max-height: 80%;
	object-fit: contain;
	border-radius: 5px;
}

.lightbox-close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #F1EBBF;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	z-index: 2001;
}

.lightbox-close:hover {
	opacity: 0.7;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 2001;
}

.lightbox-prev, .lightbox-next {
	color: #F1EBBF;
	font-size: 30px;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.5);
	padding: 10px 15px;
	border-radius: 5px;
	user-select: none;
}

.lightbox-prev:hover, .lightbox-next:hover {
	background: rgba(0, 0, 0, 0.7);
}

.lightbox-caption {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: #F1EBBF;
	font-family: 'Open Sans';
	font-size: 18px;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
	padding: 10px 20px;
	border-radius: 5px;
	max-width: 80%;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 10px;
	}
	
	.gallery-image {
		height: 100px;
	}
	
	.lightbox-nav {
		padding: 0 10px;
	}
	
	.lightbox-prev, .lightbox-next {
		font-size: 24px;
		padding: 8px 12px;
	}
}

.faq-question {
	margin-bottom: 2px;
	font-family: 'Open Sans';
	text-shadow: 0px 3px 0px #1D1D1B;
	width: 100%; 
	text-align: left; 
	background: #f39515; 
	color: #fff;
	border: none; 
	padding: 1em; 
	font-size: 1.1em; 
	cursor: pointer; 
}

.faq-answer {
	display: none;
	margin-bottom: 20px;
	font-family: 'Open Sans';
	color: #000000;
	padding: 1em; 
	background: #f1ebbf; 
}

.faq-container { 
	max-width: 600px; margin: 0 auto; 
}
		
.faq-item.active .faq-answer { 
	display: block; 
}

.faq-item.active .faq-answer a {
	color: #D60E26;
	text-decoration: none;
	transition: 0.2s;
}

.faq-item.active .faq-answer a:hover {
	color: #F39515;
	text-decoration: none;
	transition: 0.2s;
}


/* general */
p {
	font-family: 'Open Sans';
	color: #F1EBBF;
	text-align: left;
	font-size: 15px;
	text-shadow: 0px 3px 1px #1D1D1B;
	/* text-shadow:
	-0.9px -0.9px 0 #000,
		0.9px -0.9px 0 #000,
	-0.9px  0.9px 0 #000,
		0.9px  0.9px 0 #000; */
}




	.right-align {
		text-align: right;
	}

	.open-sans-font {
		font-family: 'Open Sans';
		font-size: 20px;
	}

	p2 {
		color: #F1EBBF;
		text-align: center;
		font-size: 14px;
		font-family: 'Cooper Black Regular';
		text-shadow: 0px 3px 0px #1D1D1B;
	}

	p3 {
		color: #F1EBBF;
		text-align: center;
		font-size: 14px;
		/*font-family: 'Cooper Black Regular';*/
		font-family: 'Open Sans';

		a:link {
			color: #F1EBBF;
			text-decoration: none;
			transition: 0.2s;
		}

		a:visited {
			color: #F1EBBF;
			text-decoration: none;
		}

		a:hover {
			color: #D60E26;
			text-decoration: none;
		}

		a:active {
			color: #D60E26;
			text-decoration: none;
		}
	}

	h1 {
		color: #F1EBBF;
		text-align: center;
		font-size: 25px;
		font-family: 'Open Sans';
		margin-top: 80px;
		/*text-shadow: 0px 3px 0px #1D1D1B;*/
		text-shadow:
		-0.5px -0.5px 0 #000,
		 0.5px -0.5px 0 #000,
		-0.5px  0.5px 0 #000,
		 0.5px  0.5px 0 #000;		
	}

	h2 {
		color: #F1EBBF;
		text-align: center;
		font-size: 42px;
		font-family: 'Open Sans';
		text-shadow: 0px 3px 0px #1D1D1B;
	}
	
	h3 {
		color: #F1EBBF;
		text-align: center;
		font-size: 20px;
	  	font-family: 'Open Sans';
		text-shadow: 0px 3px 0px #1D1D1B;
	}

	.left {
		text-align: left;
	}

	a:link {
		color: #F1EBBF;
		text-decoration: none;
		transition: 0.2s;
	}

	a:visited {
		color: #F1EBBF;
		text-decoration: none;
	}

	a:hover {
		color: #F39515;
		text-decoration: none;
		cursor: pointer;
	}

	a:active {
		color: #F39515;
		text-decoration: none;
	}



	.padded-content {
		margin: 50px 8px 10px 8px;
		text-align: center;
	}

	.content { 
		margin: 0 48px 0 48px;
	}

	.outer {
		position: relative;
		width: 100%;
	}


	.size_25 {
		font-size: 25;
	}


	.centered-content {
		position: center;
		margin-left: 10%;
		margin-right: 10%;
		text-align: center;
		width: fit-content;
	}

	.centered-content-centered p {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		width: 70%;
	}


	.lineup {
		text-align: center;
		font-size: 25px;
		font-family: 'Open Sans';
	}


	.link-button {
		margin-top: 10px;
		text-transform: uppercase;
		font-size: 14px;
		text-decoration: none;
		cursor: pointer;
		display: contents;
		padding: 10px;
		font-family: inherit;
		text-shadow: none;
		user-select: none;
		transition: all, .1s, ease-in;
		background-color: #FFA50080;
		border: 1px solid #FFA500;
		color: #FFFFFF;
	}

	.smalllinkbox {
		display: flex;
		align-items: center;
		/* vertikal zentrieren */
		justify-content: center;
		/* horizontal zentrieren */
		text-align: center;
		flex: 1;
		margin-top: 0px;
		font-size: 8px;
		text-decoration: none;
		cursor: pointer;
		padding: 0px;
		font-family: inherit;
		text-shadow: none;
		user-select: none;
		transition: all 0.1s ease-in;
		background-color: #A5A5A530;
		border: 1px solid #EEEEEE;
		color: #FFFFFF;
		height: 50px;
		/* oder gewünschte feste Höhe */
	}


	.smalllinkbox:hover {
		background-color: #A5A5A570;
	}


	.smalllinkbox p {
		margin: 0;
		width: 100%;
		font-size: 16px;
		text-align: center;
		text-shadow: none;
	}

	.linkcontainer {
		display: flex;
		flex-direction: row;
		margin: 30px;
		padding-left: 20%;
		padding-right: 20%;
		gap: 60px;
		font-family: "Open Sans";
	}

	.homenews {
		padding-left: 20%;
		padding-right: 20%;
		gap: 60px;
	}

	.hometickets {
		padding-left: 40%;
		padding-right: 40%;
		gap: 60px;
	}
	
	.news {
		padding-left: 10%;
		padding-right: 10%;
		gap: 60px;
	}

	.outer:hover .overlay {
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		background: black;
		opacity: 0;
		top: 0;
	}



	@media screen and (max-height: 450px) {
		.sidenav {
			padding-top: 15px;
		}

		.sidenav a {
			font-size: 18px;
		}
	}

	.overlay {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: rgba(0, 0, 0, 0.7);
		transition: opacity 500ms;
		visibility: hidden;
		opacity: 0;
		font-family: 'Cooper Black Regular';

	}

	.overlay:target {
		visibility: visible;
		opacity: 1;
	}

	.popup {
		margin: 70px auto;
		padding: 20px;
		background: #F1EBBF;
		border-radius: 5px;
		width: 30%;
		position: relative;
		transition: all 5s ease-in-out;
		/* overflow-y: scroll; */
		/* max-height: 400px; */
	}

	.popup h2 {
		margin-top: 0;
		color: #333;
		font-family: 'Cooper Black Regular';
	}

	.popup .close {
		position: absolute;
		top: 20px;
		right: 30px;
		transition: all 200ms;
		font-size: 30px;
		font-weight: bold;
		text-decoration: none;
		color: #D60E26;
	}

	.popup .close:hover {
		color: #D60E26;
	}

	.popup .content {
		max-height: 30%;
		overflow: auto;

	}

	@media screen and (max-width: 700px) {}

	.popup {
		width: 70%;
	}

	main {
		text-align: center;
		font-family: Arial, Helvetica, sans-serif;
	}


	.header {
		text-align: center;
	}

	#container {
		position: center;
		/*width: 60%;*/
		height: auto;
		color: #F1EBBF;
		text-align: left;
		font-size: 28px;
		font-family: 'Open Sans';
		/*text-shadow: 0px 3px 0px #1D1D1B;*/
		font-style: normal;
		font-weight: normal;
	/*	src: local('Cooper Black Regular'), url('./files/COOPBL.woff') format('woff');*/
		margin-bottom: 150px;
	}
	


	.listitem {
	  font-family: 'Open Sans';
	  text-shadow:
		-0.5px -0.5px 0 #000,
		 0.5px -0.5px 0 #000,
		-0.5px  0.5px 0 #000,
		 0.5px  0.5px 0 #000;	
	}

	.listitem .inactive {
	  color: #d3d3d3;
	}

    @media (min-width: 600px) {
      .newscontainer {
        grid-template-columns: 1fr 1fr;
      }
    }

/* Press Coverage Styles */
.press-coverage {
	font-family: 'Open Sans';
	line-height: 1.6;
}

.press-articles {
	margin: 30px 0;
	display: grid;
	gap: 25px;
}

.press-article {
	background: linear-gradient(135deg, rgba(241, 235, 191, 0.15) 0%, rgba(243, 149, 21, 0.08) 100%);
	border: 1px solid rgba(243, 149, 21, 0.2);
	border-left: 5px solid #f39515;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 
		0 4px 12px rgba(0, 0, 0, 0.15),
		0 2px 6px rgba(243, 149, 21, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.press-article::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #f39515, #ead413);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.press-article:hover {
	transform: translateY(-3px);
	box-shadow: 
		0 8px 25px rgba(0, 0, 0, 0.2),
		0 4px 12px rgba(243, 149, 21, 0.15);
	border-color: rgba(243, 149, 21, 0.4);
}

.press-article:hover::before {
	opacity: 1;
}

.press-header {
	margin-bottom: 18px;
	position: relative;
}

.press-header h3 {
	color: #F1EBBF;
	font-size: 1.3em;
	margin: 0 0 12px 0;
	font-weight: 700;
	line-height: 1.3;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
	transition: color 0.3s ease;
}

.press-article:hover .press-header h3 {
	color: #ead413;
	text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
}

.press-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
	padding: 10px 0;
	border-bottom: 2px solid rgba(243, 149, 21, 0.25);
	position: relative;
}

.press-meta::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ead413, #f39515);
	transition: width 0.4s ease;
}

.press-article:hover .press-meta::after {
	width: 100%;
}

.press-source {
	font-weight: 700;
	color: #F1EBBF;
	font-size: 1em;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
	background: rgba(243, 149, 21, 0.15);
	padding: 6px 12px;
	border-radius: 20px;
	border: 1px solid rgba(243, 149, 21, 0.3);
}

.press-date {
	font-weight: 600;
	color: #1D1D1B;
	background: linear-gradient(135deg, #ead413, #f39515);
	padding: 8px 14px;
	border-radius: 20px;
	font-size: 0.9em;
	box-shadow: 0 2px 6px rgba(243, 149, 21, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.press-article:hover .press-date {
	transform: scale(1.05);
	box-shadow: 0 4px 10px rgba(243, 149, 21, 0.4);
}

.press-summary {
	margin: 18px 0;
	font-size: 1em;
	line-height: 1.6;
	color: #F1EBBF;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
	position: relative;
}

.press-link {
	color: #ead413;
	text-decoration: none;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 15px;
	padding: 10px 18px;
	background: rgba(234, 212, 19, 0.1);
	border: 2px solid rgba(234, 212, 19, 0.3);
	border-radius: 25px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.press-link::after {
	content: '→';
	font-size: 1.2em;
	transition: transform 0.3s ease;
}

.press-link:hover {
	color: #1D1D1B;
	background: linear-gradient(135deg, #ead413, #f39515);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateX(5px);
	box-shadow: 0 4px 12px rgba(234, 212, 19, 0.4);
	text-shadow: none;
}

.press-link:hover::after {
	transform: translateX(3px);
}

.press-contact {
	background: linear-gradient(135deg, rgba(29, 29, 27, 0.1) 0%, rgba(243, 149, 21, 0.05) 100%);
	padding: 25px;
	border-radius: 12px;
	margin-top: 35px;
	border: 1px solid rgba(243, 149, 21, 0.15);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.press-contact h4 {
	color: #ead413;
	margin: 0 0 18px 0;
	font-size: 1.2em;
	font-weight: 700;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.press-contact p {
	margin: 10px 0;
	font-size: 1em;
	color: #F1EBBF;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.press-contact a {
	color: #ead413;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.press-contact a:hover {
	color: #f39515;
	border-bottom: 1px solid #f39515;
	text-shadow: 0px 1px 3px rgba(243, 149, 21, 0.5);
}

/* Responsive für Presse */
@media (max-width: 768px) {
	.press-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.press-article {
		padding: 20px;
	}
	
	.press-header h3 {
		font-size: 1.2em;
	}
	
	.press-date {
		align-self: flex-start;
	}
	
	.press-link {
		padding: 8px 15px;
		font-size: 0.95em;
	}
	
	.press-articles {
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.press-article {
		padding: 18px;
		margin-bottom: 20px;
	}
	
	.press-header h3 {
		font-size: 1.1em;
	}
	
	.press-meta {
		padding: 8px 0;
	}
	
	.press-source, .press-date {
		font-size: 0.85em;
		padding: 6px 10px;
	}
}
    
