/* =============================================================================
   Presse-Seite
   Geladen nur auf Template: Presse (templates/page-presse.php)
   ============================================================================= */

/* ---------------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------------- */

.presse-hero {
	padding: 5rem 0 3.5rem;
	border-bottom: var(--border-thin);
}

.presse-title {
	font-family: var(--font-family-display);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-bold);
	color: var(--color-text);
	margin: 0 0 1.25rem;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.presse-lead {
	font-family: var(--font-family-text);
	font-size: var(--font-size-lg);
	color: var(--color-text-muted);
	max-width: 56ch;
	margin: 0 0 2.5rem;
	line-height: 1.65;
}

/* Anker-Navigation */
.presse-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

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

.presse-nav li + li::before {
	content: '·';
	margin: 0 0.6rem;
	color: var(--color-text-soft);
}

.presse-nav a {
	font-family: var(--font-family-text);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	color: var(--color-text);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-bottom: 1px solid transparent;
	transition: border-color 0.15s;
}

.presse-nav a:hover {
	border-bottom-color: var(--color-text);
}

/* ---------------------------------------------------------------------------
   SEKTIONEN
   --------------------------------------------------------------------------- */

.presse-section {
	padding: 4rem 0;
	border-bottom: var(--border-thin);
}

.presse-section:last-child {
	border-bottom: none;
}

.presse-section-title {
	font-family: var(--font-family-display);
	font-size: var(--font-size-2xl);
	font-weight: var(--font-weight-bold);
	color: var(--color-text);
	margin: 0 0 2.5rem;
	letter-spacing: -0.015em;
	line-height: 1.2;
}

/* ---------------------------------------------------------------------------
   PRESSE-LISTE
   --------------------------------------------------------------------------- */

.presse-liste {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.presse-item {
	padding: 1.75rem 0;
	border-top: var(--border-thin);
}

.presse-item:first-child {
	border-top: none;
	padding-top: 0;
}

/* ---------------------------------------------------------------------------
   ITEM-INHALTE
   --------------------------------------------------------------------------- */

.presse-item-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.presse-datum,
.presse-medium,
.presse-jahr,
.presse-institution {
	font-family: var(--font-family-text);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
	color: var(--color-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.presse-medium,
.presse-institution {
	color: var(--color-text-muted);
}

.presse-item-meta .presse-medium::before,
.presse-item-meta .presse-institution::before {
	content: '—';
	margin-right: 0.5rem;
	opacity: 0.4;
}

.presse-item-titel {
	font-family: var(--font-family-display);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-bold);
	color: var(--color-text);
	margin: 0 0 0.75rem;
	line-height: 1.25;
}

.presse-beschreibung {
	font-family: var(--font-family-text);
	font-size: var(--font-size-base);
	color: var(--color-text-muted);
	line-height: 1.65;
	margin-bottom: 0.75rem;
}

.presse-zitat {
	font-family: var(--font-family-text);
	font-size: var(--font-size-base);
	font-style: italic;
	color: var(--color-text-muted);
	border-left: 2px solid var(--color-border-dark);
	margin: 0.75rem 0;
	padding: 0.25rem 0 0.25rem 1rem;
	line-height: 1.6;
}

.presse-autor {
	font-family: var(--font-family-text);
	font-size: var(--font-size-sm);
	color: var(--color-text-soft);
	margin: 0.5rem 0 0;
}

/* ---------------------------------------------------------------------------
   ACTIONS (Links)
   --------------------------------------------------------------------------- */

.presse-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	margin-top: 1rem;
}

.presse-link {
	font-family: var(--font-family-text);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	color: var(--color-text);
	text-decoration: none;
	border-bottom: 1px solid var(--color-border-dark);
	padding-bottom: 1px;
	transition: opacity 0.15s;
}

.presse-link:hover {
	opacity: 0.55;
}

/* ---------------------------------------------------------------------------
   AUSZEICHNUNGEN — leicht abgehoben
   --------------------------------------------------------------------------- */

.presse-item--auszeichnung .presse-item-titel {
	font-size: var(--font-size-xl);
}

.presse-item--auszeichnung .presse-jahr {
	font-size: var(--font-size-sm);
	color: var(--color-text-muted);
	font-weight: var(--font-weight-bold);
}

/* ---------------------------------------------------------------------------
   PRESSEKONTAKT
   --------------------------------------------------------------------------- */

.presse-kontakt {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	max-width: 52rem;
}

.presse-kontakt-haupt,
.presse-kontakt-fallback {
	font-family: var(--font-family-text);
	font-size: var(--font-size-base);
	color: var(--color-text);
	line-height: 1.75;
}

.presse-kontakt-haupt strong {
	font-weight: var(--font-weight-bold);
	font-family: var(--font-family-display);
}

.presse-kontakt-fallback {
	color: var(--color-text-muted);
}

.presse-kontakt a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid var(--color-border);
}

.presse-kontakt a:hover {
	border-bottom-color: var(--color-text);
}

/* ---------------------------------------------------------------------------
   PRESSEMAPPE
   --------------------------------------------------------------------------- */

.presse-mappe {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: flex-start;
}

.presse-mappe-button {
	display: inline-block;
	font-family: var(--font-family-display);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-bold);
	color: var(--color-text);
	text-decoration: none;
	border: var(--border-strong);
	padding: 0.875rem 1.75rem;
	transition: background-color 0.15s, color 0.15s;
	letter-spacing: 0.01em;
}

.presse-mappe-button:hover {
	background-color: var(--color-text);
	color: #fff;
}

.presse-mappe-hinweis {
	font-family: var(--font-family-text);
	font-size: var(--font-size-sm);
	color: var(--color-text-muted);
	margin: 0;
}

.presse-mappe-hinweis a {
	color: var(--color-text);
	text-decoration: none;
	border-bottom: 1px solid var(--color-border);
}

.presse-mappe-hinweis a:hover {
	border-bottom-color: var(--color-text);
}

/* ---------------------------------------------------------------------------
   LEER-ZUSTAND
   --------------------------------------------------------------------------- */

.presse-leer {
	font-family: var(--font-family-text);
	font-size: var(--font-size-base);
	color: var(--color-text-soft);
	font-style: italic;
}

/* ---------------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------------- */

@media (max-width: 768px) {
	.presse-hero {
		padding: 3.5rem 0 2.5rem;
	}

	.presse-section {
		padding: 3rem 0;
	}

	.presse-kontakt {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.presse-item-meta {
		flex-wrap: wrap;
	}
}
