/* =============================================================
   SquashAddict – standort.css
   CI: #181818 | #E9530E | #ffffff | #555555
   Font: Inter 400 / 700
   Alle font-size in px – unabhängig vom Parent vw-Scaling
   ============================================================= */

/* =============================================================
   HERO – 2-Spalten: Bild links, Text rechts
   ============================================================= */
.sa-standort-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 70vh;
	background-color: #181818;
}

.sa-standort-hero__image {
	overflow: hidden;
	position: relative;
}

.sa-standort-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: grayscale(100%);
}

.sa-standort-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 5em 4.5em;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.sa-standort-hero__label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #E9530E;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 1.25em;
}

.sa-standort-hero__headline {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 72px;
	color: #ffffff;
	line-height: 1.15;
	margin: 0 0 1.25em;
}

.sa-standort-hero__text {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 22px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin: 0 0 1em;
	max-width: 38em;
}

/* =============================================================
   ANGEBOT – Header + 4er Grid
   ============================================================= */
.sa-standort-angebot {
	background-color: #181818;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 5em 4.5em;
}

.sa-standort-angebot__header {
	margin-bottom: 3em;
}

.sa-standort-angebot__label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #E9530E;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 0.75em;
}

.sa-standort-angebot__headline {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 52px;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
}

.sa-standort-angebot__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sa-standort-angebot__card {
	display: flex;
	flex-direction: column;
	padding: 2.5em 2em 2.5em 0;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sa-standort-angebot__card:last-child {
	border-right: none;
}

.sa-standort-angebot__card:not(:first-child) {
	padding-left: 2em;
}

.sa-standort-angebot__card-title {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 26px;
	color: #ffffff;
	margin: 0 0 0.75em;
	line-height: 1.2;
}

.sa-standort-angebot__card-text {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin: 0 0 auto;
	flex-grow: 1;
}

.sa-standort-angebot__card-link {
	display: inline-block;
	margin-top: 1.5em;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #E9530E;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	text-decoration: none;
	border-bottom: 1.5px solid #E9530E;
	padding-bottom: 0.2em;
	align-self: flex-start;
	transition: opacity 0.2s ease;
}

.sa-standort-angebot__card-link:hover {
	opacity: 0.75;
}

/* =============================================================
   TEAM – Swiper
   ============================================================= */
.sa-team {
	background-color: #181818;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 3em 0 2.5em;
	overflow: hidden;
}

.sa-team__headline {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 52px;
	color: #E9530E;
	text-align: center;
	margin: 0 0 1.5em;
}

/* Swiper: zentriert mit fixer Breite */
.sa-team-swiper {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 3.5em !important;
}

.sa-team__slide {
	display: flex;
	justify-content: center;
	padding: 0 2em;
	box-sizing: border-box;
}

.sa-team__card {
	display: flex;
	align-items: center;
	gap: 4em;
	width: 100%;
}

.sa-team__photo-wrap {
	flex-shrink: 0;
	width: 200px;
	height: 280px;
	border-radius: 20px;
	overflow: hidden;
}

.sa-team__photo-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.sa-team__info {
	display: flex;
	flex-direction: column;
	gap: 0.25em;
}

.sa-team__name {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 44px;
	color: #ffffff;
	margin: 0 0 0.25em;
	line-height: 1.2;
}

.sa-team__rolle {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 23px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 1em;
}

.sa-team__contact {
	margin: 0;
}

.sa-team__contact-link {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 23px;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	line-height: 2;
	transition: color 0.2s ease;
}

.sa-team__contact-link:hover {
	color: #E9530E;
}

/* Pagination */
.sa-team-pagination {
	display: flex;
	justify-content: center;
	gap: 0.5em;
}

.sa-team-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.6);
	opacity: 1;
}

.sa-team-pagination .swiper-pagination-bullet-active {
	background: #E9530E;
	border-color: #E9530E;
}

/* =============================================================
   RESPONSIVE – Gross-Desktop ab 1440px (fixe Sprünge)
   ============================================================= */
@media (min-width: 1440px) {
	.sa-standort-hero__headline {
		font-size: 82px;
	}

	.sa-standort-hero__text {
		font-size: 24px;
	}

	.sa-standort-angebot__headline {
		font-size: 60px;
	}

	.sa-team__headline {
		font-size: 60px;
	}

	.sa-team__name {
		font-size: 50px;
	}

	.sa-team__rolle,
	.sa-team__contact-link {
		font-size: 25px;
	}
}

@media (min-width: 1920px) {
	.sa-standort-hero__headline {
		font-size: 94px;
	}

	.sa-standort-hero__text {
		font-size: 25px;
	}

	.sa-standort-angebot__headline {
		font-size: 68px;
	}

	.sa-standort-angebot__card-title {
		font-size: 29px;
	}

	.sa-standort-angebot__card-text {
		font-size: 22px;
	}

	.sa-team__headline {
		font-size: 68px;
	}

	.sa-team__name {
		font-size: 55px;
	}

	.sa-team__rolle,
	.sa-team__contact-link {
		font-size: 26px;
	}
}

/* =============================================================
   RESPONSIVE – Tablet  601px – 1180px
   ============================================================= */
@media (min-width: 601px) and (max-width: 1180px) {

	.sa-standort-hero__content {
		padding: 4em 3em;
	}

	.sa-standort-hero__headline {
		font-size: 44px;
	}

	.sa-standort-hero__text {
		font-size: 18px;
	}

	.sa-standort-angebot {
		padding: 4em 3em;
	}

	.sa-standort-angebot__headline {
		font-size: 36px;
	}

	.sa-standort-angebot__card-title {
		font-size: 18px;
	}

	.sa-standort-angebot__card-text {
		font-size: 16px;
	}

	.sa-standort-angebot__card-link {
		font-size: 11px;
	}

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

	.sa-standort-angebot__card:nth-child(2) {
		border-right: none;
	}

	.sa-standort-angebot__card:nth-child(3) {
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-right: 1px solid rgba(255, 255, 255, 0.2);
		padding-left: 0;
	}

	.sa-standort-angebot__card:nth-child(4) {
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-right: none;
	}

	.sa-team__headline {
		font-size: 36px;
	}

	.sa-team-swiper {
		max-width: 560px;
	}

	.sa-team__photo-wrap {
		width: 160px;
		height: 220px;
	}

	.sa-team__card {
		gap: 2.5em;
	}

	.sa-team__name {
		font-size: 30px;
	}

	.sa-team__rolle,
	.sa-team__contact-link {
		font-size: 18px;
	}
}

/* =============================================================
   RESPONSIVE – Mobile max-width: 600px
   ============================================================= */
@media (max-width: 600px) {

	.sa-standort-hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.sa-standort-hero__image {
		height: 56vw;
	}

	.sa-standort-hero__content {
		padding: 3em 2em;
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	.sa-standort-hero__headline {
		font-size: 34px;
	}

	.sa-standort-hero__text {
		font-size: 16px;
	}

	.sa-standort-angebot__headline {
		font-size: 26px;
	}

	.sa-standort-angebot__card-title {
		font-size: 16px;
	}

	.sa-standort-angebot__card-text {
		font-size: 15px;
	}

	.sa-standort-angebot__card-link {
		font-size: 10px;
	}

	.sa-team__headline {
		font-size: 26px;
	}

	.sa-standort-angebot {
		padding: 3em 2em;
	}

	.sa-standort-angebot__grid {
		grid-template-columns: 1fr;
	}

	.sa-standort-angebot__card {
		border-right: none;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		padding: 2em 0;
	}

	.sa-standort-angebot__card:not(:first-child) {
		padding-left: 0;
	}

	.sa-team {
		padding: 3.5em 0 5em;
	}

	.sa-team-swiper {
		max-width: 100%;
	}

	.sa-team__card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 2em;
	}

	.sa-team__photo-wrap {
		width: 140px;
		height: 190px;
	}

	.sa-team__name {
		font-size: 22px;
	}

	.sa-team__rolle,
	.sa-team__contact-link {
		font-size: 14px;
	}
}

/* =============================================================
   BLACK MODE – Reines Schwarz statt #181818 (nur Test / Präsentation)
   ============================================================= */
.primary_standort.sa-black .sa-standort-hero,
.primary_standort.sa-black .sa-standort-angebot,
.primary_standort.sa-black .sa-team {
	background-color: #000000;
}

/* =============================================================
   LIGHT MODE – Weisser Hintergrund (nur Test / Präsentation)
   ============================================================= */
.primary_standort.sa-light .sa-standort-hero,
.primary_standort.sa-light .sa-standort-angebot,
.primary_standort.sa-light .sa-team {
	background-color: #ffffff;
}

.primary_standort.sa-light .sa-standort-hero__content {
	border-left-color: rgba(0, 0, 0, 0.35);
}

.primary_standort.sa-light .sa-standort-hero__headline {
	color: #181818;
}

.primary_standort.sa-light .sa-standort-hero__text {
	color: rgba(0, 0, 0, 0.65);
}

.primary_standort.sa-light .sa-standort-angebot {
	border-top-color: rgba(0, 0, 0, 0.35);
}

.primary_standort.sa-light .sa-standort-angebot__headline {
	color: #181818;
}

.primary_standort.sa-light .sa-standort-angebot__grid {
	border-top-color: rgba(0, 0, 0, 0.35);
}

.primary_standort.sa-light .sa-standort-angebot__card {
	border-right-color: rgba(0, 0, 0, 0.35);
}

.primary_standort.sa-light .sa-standort-angebot__card-title {
	color: #181818;
}

.primary_standort.sa-light .sa-standort-angebot__card-text {
	color: rgba(0, 0, 0, 0.6);
}

.primary_standort.sa-light .sa-team {
	border-top-color: rgba(0, 0, 0, 0.35);
}

.primary_standort.sa-light .sa-team__name {
	color: #181818;
}

.primary_standort.sa-light .sa-team__rolle {
	color: rgba(0, 0, 0, 0.6);
}

.primary_standort.sa-light .sa-team__contact-link {
	color: rgba(0, 0, 0, 0.7);
}

.primary_standort.sa-light .sa-team-pagination .swiper-pagination-bullet {
	border-color: rgba(0, 0, 0, 0.35);
}

@media (max-width: 600px) {
	.primary_standort.sa-light .sa-standort-hero__content {
		border-top-color: rgba(0, 0, 0, 0.35);
	}

	.primary_standort.sa-light .sa-standort-angebot__card {
		border-top-color: rgba(0, 0, 0, 0.35);
	}
}

@media (min-width: 601px) and (max-width: 1180px) {
	.primary_standort.sa-light .sa-standort-angebot__card:nth-child(3),
	.primary_standort.sa-light .sa-standort-angebot__card:nth-child(4) {
		border-top-color: rgba(0, 0, 0, 0.35);
	}

	.primary_standort.sa-light .sa-standort-angebot__card:nth-child(3) {
		border-right-color: rgba(0, 0, 0, 0.35);
	}
}
