:root {
	--main-background: unset;
	
	--disclaimer-p-color: #555555;
	--disclamer-background: linear-gradient(135deg, #ffffff, #ededed);
	
	--randomizer-link-color: #2164ff;
	--randomizer-link-color-hover: #4100ff;
	--psy-text-wrapper-color: #2a2a2a;
	--psy-text-wrapper-h1-color: #0b3954;
	--entries-link-color: #6d3db6;
	--entries-link-color-hover: #dce0fc;
	
	--psy-title-color: linear-gradient(45deg, #412a5f, #0798ff);
	--psy-title-glow: white;
	--psy-subtitle-color: black;
	--psy-search-color: #333;
	--psy-search-background: rgba(33, 150, 243, 0.2);
	
	--news-card-background: rgba(255, 255, 255, 1);
	--news-card-shadow: rgba(0, 0, 0, 0.07);
	--news-card-shadow-hover: rgba(0, 0, 0, 0.1);
	
	--entry-link-color: #000000;
	--entry-link-color-hover: #a63ac7;
	--entry-link-shadow-color-hover: 0 0 8px rgba(192,96,221,0.4);
	--entry-link-dezent: #1e90ff;
}

[data-theme="dark"] {
	--main-background: linear-gradient(140deg, #871eff0f, #53158326);
	
	--disclaimer-p-color: #cbd5e1;
	--disclamer-background: linear-gradient(135deg, #1e293ba1, #0f172a78);
	
	--randomizer-link-color: #0077cc;
	--randomizer-link-color-hover: #80c9fd;
	--psy-text-wrapper-color: #e7e7dc;
	--psy-text-wrapper-h1-color: #1479b6;
	--entries-link-color: #6d3db6;
	--entries-link-color-hover: #e3e6fa;
	
	--psy-title-color: linear-gradient(45deg, #a66cf1, #cee2e7);
	--psy-title-glow: #5d12bd45;
	--psy-subtitle-color: white;
	--psy-search-color: white;
	--psy-search-background: rgba(252, 252, 252, 0.2);
	
	--news-card-background: rgba(209, 208, 255, 1);
	--news-card-shadow: rgba(255, 255, 255, 0.07);
	--news-card-shadow-hover: rgba(255, 255, 255, 0.1);
	
	--entry-link-color: #eaeaf0;
	--entry-link-color-hover: #ffffff;
	--entry-link-shadow-color-hover: 0 0 8px rgba(0,255,200,0.4);
	--entry-link-dezent: linear-gradient(140deg, #9eddf9, #b5d2df);
}

main {
	position: relative;
	background: var(--main-background);
}

main::before {
	position: absolute;
	content: '';
	inset: 0;
	background: transparent;
	z-index: -1;
}

[data-theme="dark"] {

.space-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: -1;
	background: radial-gradient(circle at center, #120822 0%, #05010d 70%);
}

/* Nebel */
.nebula {
	position: absolute;
	width: 80vw;
	height: 80vh;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.17;
	mix-blend-mode: screen;
	animation: drift 25s ease-in-out infinite alternate;
}

.nebula1 {
	background: radial-gradient(circle, #a855f7 0%, transparent 70%);
	top: -10%;
	left: -10%;
}

.nebula2 {
	background: radial-gradient(circle, #7e22ce 0%, transparent 70%);
	bottom: -20%;
	right: -10%;
	animation-duration: 35s;
}

/* Sterne */
.stars {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(2px 2px at 20% 30%, white 50%, transparent 100%),
		radial-gradient(1px 1px at 70% 80%, #d8b4fe 50%, transparent 100%),
		radial-gradient(1.5px 1.5px at 40% 60%, white 50%, transparent 100%),
		radial-gradient(2px 2px at 90% 20%, #f5d0fe 50%, transparent 100%); 
	background-repeat: repeat;
	background-size: 400px 400px;
	opacity: 0.5;
	animation: starMove 80s linear infinite;
}

@keyframes drift {
	from {
		transform: translate(0px, 0px) scale(1);
	}
	to {
		transform: translate(40px, -20px) scale(1.08);
	}
}

@keyframes starMove {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-200px);
	}
}
}

/* ==== TITLE ==== */ 
	
.start-title {
    text-align: center;
	position: relative;
    padding: 0.25rem;
	color: white;
    transition: background-position 1s ease;
	/*background: linear-gradient(to bottom, rgba(162, 165, 221, 0.5), rgba(151, 144, 238, 1)), url('../assets/source-a/image_large_29d65016-afaf-45d2-88c0-9262943716f022clear.jpeg');*/
	background-size: cover;
	background-position: top;
}

.headline-wrapper {
	display: flex;
	position: relative;
	margin-bottom: clamp(0.5rem, 1.2vw, 1rem);
}

.headline-wrapper::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 1rem;
	left: 0;
	z-index: -1;
	background: var(--psy-title-glow);
	opacity: 0;
	transition: opacity 0.3s ease;
	filter: blur(40px);
}

.animated-style .headline-wrapper::before {
	opacity: 1;
}
	
.inner-title-wrapper {
	display: inline-flex;
	flex-direction: column;
	white-space: nowrap;
	align-items: center;
	position: relative;
	z-index: 1;
	margin-top: 1rem;
	margin-bottom: 3rem;
}

/* Title animation */

#emoji {
	font-size: calc(clamp(2.6rem, 4vw, 4rem) + var(--font-size-larger));
	opacity: 0;
	transition: opacity 0.6s ease;
	z-index: 2;
}

#emoji.open {
	transform: rotate(10deg) scale(1.05);
	transition: transform 0.4s ease;
}

#emoji.close {
	transform: rotate(0deg) scale(1);
	transition: transform 0.4s ease;
}
	
#placeholder {
	opacity: 0;
}
	
.psy-title-field {
	position: absolute;
	width: 85%;
	left: 15%;
	height: 140%;
	overflow: hidden;
}
	
.psy-title-text {
	font-size: calc(clamp(2.6rem, 4vw, 4rem) + var(--font-size-large));
	display: inline-block;
	color: var(--psy-subtitle-color);
}

#psy-title-text {
	transform: translateX(-100%);
	background: var(--psy-title-color);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: transform 0.6s ease, color 1s ease, text-shadow 1s ease;
	height: 100%;
	opacity: 0;
	z-index: 1;
}

#psy-title-text.slide-in {
	transform: translateX(0);
	opacity: 1;
}

#psy-subtitle {
	font-size: calc(clamp(0.9rem, 1.5vw, 1.2rem) + var(--font-size-larger));
	margin: 0;
	min-height: 1.4em;
	padding: 0.3rem 1rem;
	align-content: center;
	opacity: 0;
	border-radius: 18px;
	white-space: pre-wrap;
	transition: background 1s ease, color 1s ease;
	color: var(--psy-subtitle-color);
}

.animated-style {
	background-position: center;
}
	
.animated-style #psy-title-text	{
	/*text-shadow: 3px 5px 10px rgba(0,0,0,1);*/
}
	
.animated-style #psy-subtitle {
	background: rgba(13, 15, 93, 0.8);
	color: white;
}

/* Nav Under Title */

.under-title-flex {
	position: absolute;
	width: 95%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	z-index: 0;
}

/* Nav list left */

.content-nav-list {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 2.5rem;
	flex: 3;
}

.content-nav-list a {
	display: inline-flex;
	max-width: 7.5rem;
	text-decoration: none;
	color: white;
	font-size: calc(1.5rem + var(--font-size-larger));
	font-weight: 500;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-bottom: 0.3rem;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	border-left: 3px solid #8915f5;
	background: linear-gradient(to right, rgba(71, 187, 239, 0.8), rgba(100, 181, 235, 0.6), rgba(0, 0, 0, 0));
	transition: color 0.2s ease, background 0.3s ease, transform 0.3s ease;
	position: relative;
}

.content-nav-list a span {
	z-index: 2;
	position: relative;
}

.content-nav-list a:hover {
	color: #fffef3;
}

.content-nav-list a::after {
	content: "";
	opacity: 0;
	left: 0;
	top: 0;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: all 0.3s ease;
	background: linear-gradient(to right, rgba(106, 187, 241, 0.8), rgba(115, 166, 229, 0.5));
}

.content-nav-list a:hover::after {
	opacity: 1;
}

/* Nav-Pic right */

.opener-map-img {
	flex: 1;
	justify-items: center;
	height: 100%;
	z-index: 0;
	position: relative;
}

.opener-map-img-wrapper {
	width: 13rem;
	height: 100%;
	position: absolute;
	z-index: 0;
}

.opener-map-img-wrapper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.opener-map-img-wrapper-wrapper img {
	position: absolute;
	opacity: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.img-2-after {
	z-index: 3;
	clip-path: inset(0 0 100% 0); /* Anfang: alles unten abgeschnitten */
	animation: revealFromTop 3s ease-in-out forwards;
}

@keyframes revealFromTop {
  to {
    clip-path: inset(0 0 0 0); /* Ende: alles sichtbar */
  }
}

/* hotspots */
.hotspot {
	position: absolute;
	top: 0; left: 0;
	opacity: 1;
	width: 11px;
	height: 11px;
	background-color: #47bbef;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	cursor: pointer;
	animation: reveal 3s ease forwards;
	padding: 5px; /* erhöht die klickbare Fläche um unsichtbaren Rand */
	background-clip: content-box;
}

@keyframes reveal {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.hotspot::before {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	width: 10px;
	height: 10px;
	background-color: rgba(79, 80, 250, 0.4);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
	animation: pulseC 2.5s ease-out infinite;
	pointer-events: none;
}

.hotspot::after {
	content: attr(data-tooltip);
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 6px 10px;
	font-size: 12px;
	border-radius: 6px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	z-index: 20;
}

.hotspot:hover::after {
	opacity: 1;
}

@keyframes pulseC {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0.6;
  }
  70% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
  100% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}
	
/* === DETAILS === */

.details-container {
	padding: 0 clamp(1.5rem, 3vw, 2rem);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	position: relative;
	align-items: center;
}

/* LEFT */

.details-left {
	display: flex;
	justify-content: flex-start;
	position: relative;
	gap: 1rem;
	align-items: center;
}

.psy-content-search {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.psy-content-search h1 {
	font-size: 1rem;
	font-weight: 500;
	margin: 0;
}
	
/* = Search = */

.search-container {
    position: relative;
	justify-self: left;
}

.search-container input[type="text"] {
	font-family: 'Inter', 'Arial', sans-serif;
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 0.75rem; /* rechts Platz für Icon */
    font-size: 1rem;
	color: var(--psy-search-color);
	font-weight: 500;
	width: 100%;
    box-sizing: border-box;
	background: var(--psy-search-background);
	border: none;
	border-radius: 16px;
	resize: vertical; /* erlaubt Höhe verändern */
	transition: all 0.3s ease;
}
  
.search-container input:focus {
	outline: 1px solid;
	border: none;
}
  
.search-container input::placeholder {
	color: var(--psy-search-color);
	opacity: 0.5;
}

.search-container button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 36px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.search-container button svg {
    width: 20px;
    height: 20px;
    fill: #444;
}
  
.search-container button:hover svg {
	animation: smoothCircleBottomSmall 0.8s ease;
}

/* RIGHT */

.details-right {
}

.disclamer-info a {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-family: system-ui, sans-serif;
	color: #3295ff;
	text-decoration: none;
	padding: 0.4rem 0.7rem;
	transition: text-decoration 0.2s ease;
	font-size: calc(clamp(0.9rem, 2vw, 1rem) + var(--font-size-larger));
	font-weight: 400;
	border-radius: 99px;
	background: rgba(159, 159, 159, 0.1);
}

.disclamer-info a:hover {
	color: #5661ff;
}

.disclamer-info svg {
	height: clamp(18px, 2.5vw, 20px);
	width: clamp(18px, 2.5vw, 20px);
	fill: #3295ff;
}

.disclamer-info a:hover svg {
	fill: #5661ff;
}

/* === DISCLAMER (UNTEN) === */

.disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--disclamer-background);
    border: 1px solid rgba(255,255,255,0.08);
    /*border-left: 4px solid #38bdf8;
    border-radius: 14px;*/
    color: #e2e8f0;
    /*box-shadow:
        0 8px 24px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.03);*/
    font-family: system-ui, sans-serif;
	cursor: default;
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.15);
	transition: background 0.3s ease;
    color: #38bdf8;
    font-size: 18px;
    font-weight: bold;
}

.disclaimer-box:hover .disclaimer-icon {
	background: rgba(56, 189, 248, 0.25);
}

.disclaimer-content strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    letter-spacing: 0.3px;
    color: var(--color-invert);
}

.disclaimer-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
    color: var(--disclaimer-p-color);
}


/* ==== CONTENT OPENER ====*/


/* == Allgemein == */

.start-wrapper {
	display: flex;
	gap: clamp(2rem, 4vw, 4rem);
	padding: 1.5rem clamp(1rem, 3vw, 2rem);
}

.opener {
	flex: 2;
	position: relative;
	/*color: black;*/
}

.opener h1 {
	font-size: calc(clamp(2rem, 3.4vw, 2.2rem) + var(--font-size-larger));
	margin-top: 0;
	text-shadow: 3px 5px 10px rgba(0,0,0,0.2);
}

/* Scroll reveal */

.opener-content > * {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease-out;
}

.opener-content > *.visible {
	opacity: 1;
	transform: translateY(0);
}

.start-wrapper > * {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease-out;
}

.start-wrapper > *.visible {
	opacity: 1;
	transform: translateY(0);
}

/* opener-content */

.opener-content {
	border-radius: 12px;
	/*background: linear-gradient(120deg, rgba(130, 134, 237, 0.9), rgba(156, 130, 237, 0.9));*/
}

.opener-content a {
	color: #3295ff;
	transition: all 0.1s ease;
}

.opener-content a:hover {
	color: #5661ff;
	text-decoration: none;
}

/* opener-text */

.opener-content-text {
	padding: 0rem 1rem;
}

.quote {
	position: relative;
	font-style: italic;
	padding-left: 1rem;
	border-radius: 8px;
}

/* == FIRST == */

.o-first {
	position: relative;
	z-index: 2;
	border-radius: 12px;
}

/* = TEXT PART (left) = */

.o-first .opener-content h1 {
	margin-bottom: 1rem;
	color: #5e34ff;
	position: relative;
	display: block;
	align-items: center;
}

.o-first .opener-content .opener-cycle {
	display: inline-block;
	animation: spin 8s ease infinite;
	animation-delay: 1s;
}
	
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(180deg) translateY(-4px);
	}
	50% {
		transform: rotate(180deg) translateY(-4px);
	}
	75% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* highlight-info */

.highlight-info {
	margin: 0;
	margin-top: 1rem;
	padding: 0 1rem;
	display: inline-flex;
	gap: 0.25rem;
}

.highlight-info::after {
	content: "";
    position: absolute;
    inset: 0;
    background: rgba(73, 245, 255, 0.25);
    filter: blur(30px);
    z-index: -1;
}

.highlight-info p {
	margin: 0;
}

.highlight-info a.link-symbol:hover svg {
	animation: scaleBounce2 1s ease-out;
}

@keyframes scaleBounce2 {
  0%   { transform: scale(0.8); }
  15%  { transform: scale(0.86); }   /* weicher Einstieg */
  35%  { transform: scale(0.9); }   /* Höhepunkt früher */
  55%  { transform: scale(0.79); }   /* Rückfederung unter 1 */
  70%  { transform: scale(0.85); }   /* leichtes Überschwingen */
  85%  { transform: scale(0.825); }  /* Dämpfung */
  100% { transform: scale(0.8); }
}

.highlight-info svg {
	transform: scale(0.8);
	fill: #6f16ff;
	transition: all 0.2s ease;
}

/* = NEWS SECTION (right) = */

.news-section {
	flex: 1;
	font-family: 'Segoe UI', sans-serif;
	justify-items: center;
}

.news-header {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-align: center;
}

.news-header p {
	margin: 0;
	opacity: 0.8;
	font-size: calc(clamp(0.7rem, 1.5vw, 0.9rem) + var(--font-size-larger));
}

.news-title {
	display: flex;
	align-items: center;
	position: relative;
	gap: clamp(0.5rem, 1vw, 1rem);
}

.news-title .pulse-dot {
	width: 8px;
	min-width: 8px;
	height: 8px;
	background-color: #4f46e5;
	border-radius: 50%;
	animation: pulse 3s infinite;
}

.news-title h1 {
	display: flex;
	align-items: center;
	font-size: calc(clamp(1.5rem, 2.5vw, 2rem) + var(--font-size-larger));
	color: var(--psy-title-color);
	justify-self: center;
	margin: 0;
}

.news-title h1 span {
	position: relative;
	background: linear-gradient(140deg, #cdc7c7, #8b8484);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.news-title .icon {
}

.news-section .archiv {
	margin: 1rem 0;
	color: #3295ff;
	display: block;
}

.news-section .archiv:hover {
	color: #5661ff;
	text-decoration: none;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7); }
	40% { box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); }
	100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

/* CARDS */

.news-section .interest-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(clamp(80px, 25vw, 175px), 1fr));
	gap: clamp(0.75rem, 2vw, 1rem);
	margin-top: 1rem;
}

.news-card {
	background: var(--news-card-background);
	border-radius: 1rem;
    outline: 1px solid #6769f1;
	padding: clamp(0.75rem, 2vw, 1.5rem);
	box-shadow: 0 4px 12px var(--news-card-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	max-width: clamp(150px, 20vw, 250px); /* Nur wenn EINE Card max-width */
}

.news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px var(--news-card-shadow-hover);
}

/* inner-card */
.news-card-text {
	display: flex;
	flex-direction: column;
	gap: clamp(0.25rem, 1.5vw, 1rem);
}

.news-card-title {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.news-card-text .icon {
	font-size: calc(clamp(1.25rem, 3vw, 2rem) + var(--font-size-larger));
}

.news-card-text h2 {
	font-size: calc(clamp(1rem, 2vw, 1.3rem) + var(--font-size-larger));
	color: #333;
	margin: 0;
}

.news-card-text p {
	font-size: calc(clamp(0.8rem, 1.5vw, 0.95rem) + var(--font-size-larger));
	color: #666;
	margin: 0;
}

.news-card-text .tag {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background-color: #e0e7ff;
	color: #3730a3;
	font-size: 0.7rem;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	font-weight: bold;
}

.news-card-text .tag.new {
	background-color: #a6b6f8;
	color: #1e1b4b;
}

/* scaleBounce von carussell ÜBERSICHT */

@keyframes scaleBounce {
	0%   { transform: scale(1); }
	20%  { transform: scale(1.04); }   /* weicher Einstieg */
	35%  { transform: scale(1.08); }   /* Höhepunkt früher */
	55%  { transform: scale(0.97); }   /* Rückfederung unter 1 */
	70%  { transform: scale(1.04); }   /* leichtes Überschwingen */
	85%  { transform: scale(1.015); }  /* Dämpfung */
	100% { transform: scale(1); }
}

/* == SECOUND OPENER == */

/* = RANDOMIZER = */

.interests {
	flex: 1;
	position: relative;
	justify-items: center;
	text-align: center;
}

.interests h1,
.interests h2,
.interests p {
	text-align: center;
	margin: 0;
}

.interests h1 {
	font-size: calc(clamp(1.75rem, 3.4vw, 2.2rem) + var(--font-size-larger));
}

.interests h2 {
	font-size: calc(clamp(1.25rem, 3vw, 1.75rem) + var(--font-size-larger));
}

.interests ul {
	list-style: none;
	padding: 0;
}

.interests a {
	color: var(--randomizer-link-color);
	transition: all 0.2s ease;
	text-decoration: none;
}

.interests a:hover {
	color: var(--randomizer-link-color-hover);
	text-decoration: underline;
}

/* === KONZEPT Content === */

.main-text-title {
	font-size: calc(clamp(1.75rem, 3.4vw, 2.2rem) + var(--font-size-larger));
	text-align: center;
	padding: 0 1.75rem;
}

.main-flex-wrapper {
	display: flex;
	gap: 1rem;
}

@media (max-width: 425px) {
	.psy-content-nav-grid {
		gap: 0 !important;
		padding-left: 0.5rem !important;
		padding-right: 0.5rem !important;
	}
	.main-flex-wrapper {
		flex-direction: column !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.psychologie-text-wrapper {
		order: 2;
	}
	.overview {
		order: 1;
	}
}
	
.psychologie-text-wrapper {
	padding: clamp(1.5rem, 3vw, 2rem);
	flex: 3;
	border-radius: 0.8rem;
	font-family: system-ui, sans-serif;
	color: var(--psy-text-wrapper-color);
}

.psychologie-text-wrapper h1 {
	font-size: calc(clamp(1.5rem, 2vw, 1.75rem) + var(--font-size-larger));
	color: var(--psy-text-wrapper-h1-color);
	margin-top: 0;
	margin-bottom: 0;
	border-left: 4px solid #1e90ff;
	padding-left: 0.6rem;
}

.psychologie-text-wrapper p {
	font-size: calc(1rem + var(--font-size-larger));
	line-height: 1.65;
	margin-bottom: 1.2rem;
}

.psychologie-text-wrapper ul {
	list-style-type: disc;
	padding-left: 1.5rem;
}

.psychologie-text-wrapper ul li {
	margin-bottom: 0.5rem;
}

.psychologie-text-wrapper a {
	color: #0077cc;
	text-decoration: none;
}

.psychologie-text-wrapper a:hover {
	text-decoration: underline;
}

.overview {
	padding: 0.5rem 1rem;
	flex: 1;
	display: none;
}

.overview h2 {
	text-align: center;
}

/* ENTRIES */
.psy-entries {
    padding: 1rem 3rem;
	padding-bottom: 2rem;
}

.psy-entries h2 {
	margin: 0;
	margin-bottom: 1rem;
	color: #9f75fd;
	font-size: calc(1.7rem + var(--font-size-large));
}

.psy-entries svg {
	fill: #9f75fd;
}

.psy-entry-link {
    display: block;
    text-decoration: none;
    color: var(--entry-link-color);
    padding: 0.5rem 0;
    position: relative;
    transition: 0.3s;
}

/* lebhafter Hover */
.psy-entry-link::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 54%;
    width: 2px;
    height: 15px;
    background: var(--entry-link-dezent);
    border-radius: 75%;
    transform: translateY(-50%) scale(0);
    transition: 0.25s;
	will-change: transform;
}

.psy-entry-link:hover {
    transform: translateX(12px);
    color: var(--entry-link-color-hover);
}

.psy-entry-link:hover::before {
    transform: translateY(-50%) scale(1);
}

/* ✨ kleine Interaktions-Immersion */
.psy-entry-link:hover {
    text-shadow: var(--entry-link-shadow-color-hover);
}


/* MEDIA */

@media (max-width: 768px) {
	.content-nav-list {
		padding-top: 1rem !important;
	}
	.cell {
		flex: 0 0 calc(100% - 4rem) !important;
	}
}

@media (max-width: 767px) {
	.start-wrapper {
		flex-direction: column !important;
	}
	.under-title-flex {
		display: none;
	}
	.o-first .opener-content h1 {
		text-align: center;
	}
}

@media (max-width: 425px) {
	.details-left {
		gap: 0.6rem !important;
    }
	.details-container {
		padding-left: 0.5rem !important;
		gap: 0.25rem;
    }
	.details-container .span-extra {
		display: none;
	}
	.start-wrapper {
		padding-top: 0;
	}
}
