/**
 * variables.css
 * Zentrale CSS-Variablendatei für das Design-System
 * Enthält alle Farben (grün, noblack, weiß, rot, Graustufen), Spacing und Radius
 * Wird von allen anderen CSS-Dateien verwendet
 * 
 * Enthält auch zentrale Headline-Styles für alle Überschriften
 */

/* -------  Quote Typografie ------- */



@font-face {
  font-family: "Metric Regular";

  src: url("./fonts/MetricRegular.woff") format("woff"), /* Modern Browsers */
    url("./fonts/MetricRegular.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

:root {
  --content-width: 65rem;
  
  /* ==========================================================================
     ZENTRALE FARBPALETTE - Konsistent über alle Seiten
     ========================================================================== */
  
  /* Grundfarben */
  --clr-green: rgb(0, 145, 0);           /* Hauptgrün */
  --clr-green-dark: rgba(0, 100, 0, 1); /* Dunkleres Grün */
  --clr-green-light: rgba(0, 145, 0, 0.14); /* Helles Grün (Hintergrund) */
  --clr-black: #1B1B1B;                 /* noblack - Haupttext */
  --clr-white: #ffffff;                  /* Weiß */
  --clr-red: #ff263d;                   /* Rot für Fontlist/Error */
  
  /* Graustufen */
  --clr-gray-light: #f2f2f2;            /* Sehr helles Grau */
  --clr-gray-medium: #909090;          /* Mittleres Grau */
  --clr-gray-dark: #222222;             /* Dunkles Grau */
  --clr-gray-border: rgba(0, 0, 0, 0.1); /* Grauer Border */
  --clr-gray-bg: rgba(0, 0, 0, 0.05);   /* Grauer Hintergrund */
  
  /* Design System Variablen (verwenden Grundfarben) */
  --clr-background: rgb(250, 250, 247);
  --clr-surface: var(--clr-white);
  --clr-primary: var(--clr-green);
  --clr-primary-accent: var(--clr-green-dark);
  --clr-success: var(--clr-green);
  --clr-success-light: var(--clr-green-light);
  --clr-error: var(--clr-red);
  --clr-error-light: rgba(255, 38, 61, 0.14);
  --clr-border: var(--clr-green);
  --clr-text: var(--clr-black);         /* noblack als Standard */
  --clr-text-feed: var(--clr-black);   /* noblack für Feed */
  --clr-input-text: var(--clr-green-dark);
  
  /* Spacing & Radius */
  --radius-sm: 3px;
  --radius-md: 6px;
  --spacing-xs: 0.45rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1.25rem;
  --spacing-lg: 1.9rem;
  --transition: all 0.2s ease;
}

*,
*:after,
*:before{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
	  overflow: -moz-scrollbars-vertical; 
    overflow-y: scroll;
    height: 100%;
}

body {
  font-variant-ligatures: discretionary-ligatures;
  -moz-font-feature-settings: "dlig=1";
  -moz-font-feature-setting: "smcp=1";
  -moz-font-feature-setting: "onum=1"; 
  -moz-font-feature-setting: "clig=1";
  -moz-font-feature-setting: "liga=1"; 
  -webkit-font-feature-settings: "dlig";
  -webkit-font-feature-settings: "onum";
  -webkit-font-feature-settings: "clig";
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "dlig","onum","clig","liga";
  font-variant-numeric: oldstyle-nums;
  text-rendering: optimizeLegibility;
  font-variant: common-ligatures, oldstyle-nums;

  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

body > main,
body > .main-content,
body > .content {
  flex: 1;
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

/* ==========================================================================
   EINHEITLICHES LINK-KONZEPT - Basis-Klassen
   ========================================================================== */

/* Basis-Link-Klasse */
.lnk {
	color: var(--clr-text); /* noblack */
	text-decoration: none;
	transition: color 0.2s ease, text-decoration 0.2s ease;
}

/* 1. Links im Text */
.lnk-text {
	text-decoration: underline;
	color: var(--clr-text);
}
.lnk-text:hover {
	color: var(--clr-primary);
	text-decoration: underline;
}

/* 2. Tag-Links */
.lnk-tag {
	text-decoration: underline;
	color: var(--clr-text);
}
.lnk-tag:hover {
	color: var(--clr-primary);
	text-decoration: underline;
}

/* 3. Icon-Links (Stats, Reactions) */
.lnk-icon {
	color: var(--clr-text);
	text-decoration: none;
}
.lnk-icon:hover {
	color: var(--clr-primary);
}

/* 4. Grün-Links (Weiterlesen, Bookmark) */
.lnk-primary {
	color: var(--clr-primary);
	text-decoration: none;
}
.lnk-primary:hover {
	text-decoration: underline;
}

/* 5. Footer-Links (noblack + hover grün + underline) */
.lnk-footer {
	color: var(--clr-text);
	text-decoration: none;
}

.lnk-footer > h3 {
	font-size: 16px;
	margin: 0;
}

.lnk-footer:hover {
	color: var(--clr-primary);
	text-decoration: none;
}

.lnk-footer:hover > h3 {
	color: var(--clr-primary);
	text-decoration: none;
}

.lnk-footer:hover > span.lnk {
	color: var(--clr-primary);
	text-decoration: underline;
}

p {
  line-height: 155%;
  font-weight: 300;
}

strong, b {
  font-weight: 600;
}

img {
  width: 100%;
}


.container {
margin: 0 auto;
}

.row {
	width: 100%;
	display: block;
	clear: both;
	margin-left: 0;
	margin-right: 0;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.commonpadding {
	padding: 0px 0px 50px 0px;
}


#head {
	margin-top: 50px;
}

#menu {
	float: right;
	line-height: 64px;
	margin-left: 50px;
}

#menu a {
	margin-left: 10px;
	padding: 2px;
}


.signet {
	background-image: url("../images/logo_dersven.png");
  background-size: cover;
  text-indent: -99999px;
  display:block;
  width: 64px;
  height: 64px;
  float: left;
}





#intro {
  margin-bottom: 80px;
  margin-top: 80px;
}

p.kellermanns {
	font-weight: 400;
	font-size: 21px;
	line-height: 35px;
	margin: 0px 7%;
  font-variant-ligatures: discretionary-ligatures;
  -moz-font-feature-settings: "dlig=1";
  -moz-font-feature-setting: "smcp=1";
  -moz-font-feature-setting: "onum=1"; 
  -moz-font-feature-setting: "clig=1";
  -moz-font-feature-setting: "liga=1"; 
  -webkit-font-feature-settings: "dlig";
  -webkit-font-feature-settings: "onum";
  -webkit-font-feature-settings: "clig";
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "dlig","onum","clig","liga";
  
  
  -webkit-font-feature-settings: "onum" 1; 
  -moz-font-feature-settings: "onum" 1; 
  -moz-font-feature-settings: "onum=1"; 
  -ms-font-feature-settings: "onum" 1; 
  -o-font-feature-settings: "onum" 1; 
  font-feature-settings: "onum" 1;

  font-variant-numeric: oldstyle-nums;
  text-rendering: optimizeLegibility;
  font-variant: common-ligatures, oldstyle-nums;
position: relative;
}

p.kellermanns i {
  font-style: normal !important;
  
}

.smcp {
	font-variant-caps: all-small-caps;
  -moz-font-feature-settings: "c2sc", "smcp";
  -webkit-font-feature-settings: "c2sc", "smcp";
  font-feature-settings: "c2sc", "smcp";
}

p.kellermanns span.spchar {
    cursor: pointer;	
}

p.kellermanns span.spchar:hover {
	  color: var(--clr-primary);
}

.spchar {
    text-decoration:none;
    position:relative;
}
.spchar span {
    display:none;
}
.spchar:hover span {
    display:block;
    position:fixed;
    overflow:hidden;
}


.spchar span {
    display: none;
    white-space: nowrap;
    position: absolute;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    padding: 8px;
    z-index: 100;
    background: var(--clr-primary);
    color: var(--clr-white);
    -moz-border-radius: 2px; /* this works only in camino/firefox */
    -webkit-border-radius: 2px; /* this is just for Safari */
}
.spchar span:before{
    content:'';
    display:block;
    width:14px;
    height:14px;
    position:absolute;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent; 
    border-right:6px solid var(--clr-primary);
    left:-10px;
    top:7px;
}





/* Items
-------------------------------------------------- */


div.listview {
	display: none;
}


table.portfolio-tableview {
	width: 95%;
	margin-left:auto; 
	margin-right:auto
}

table.portfolio-tableview tr {
	border-bottom: 1px solid var(--clr-primary);
}


table.portfolio-tableview tr:hover {
	background-color: var(--clr-green-light);
}


table.portfolio-tableview tr td {
	padding: 15px 10px;
	
}

.portfolio-table-row .far {
	font-size: 10px;
	color: var(--clr-black);
}


/* Filter
-------------------------------------------------- */

.boxes {
  margin: 0px 35px 0px 0px;
}

.boxes .btn {
  position: relative;
 	display: inline-block;
	color: var(--clr-black);
  font-weight: 300;
  margin: 0px 11px
	}


.boxes .btn label {
  background-color: #fff;
  border: 0px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  height: 24px;
  left: 0;
  position: relative;
  top: 0;
  width: 24px;
  text-indent: 32px;
}

.boxes .btn label:after {
 border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 10px;
}

.boxes .btn input[type="checkbox"] {
  visibility: hidden;
}

.boxes .btn input[type="checkbox"]:checked + label {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.boxes .btn input[type="checkbox"]:checked + label:after {
  opacity: 1;
}


.gridlist a {
  color: var(--clr-primary);
}
.gridlist: hover {
  color: #000;
}



.gridlist {
	margin: 15px 0px 15px 30px;
}

.gridlist, .gridview {
	margin: 15px 0px;
}

/* Items
-------------------------------------------------- */


#masonry div.item.www:before,
#masonry div.item.web:before {
    width: 100%;
    height:11px;
    content: " www";
    background-image: url(../images/browserbar.png);
    background-size: cover;
    display: block;
    color: transparent;
}


#masonry {
	position: relative;
	margin: 0 auto;
	max-width: 1280px;
	padding: 0 20px;
	box-sizing: border-box;
	min-height: 100px; /* Minimale Höhe für Container */
}

/* Freefonts: Doppelter Gap wird per JavaScript gesetzt */
#cards #masonry {
	/* Gap: 40px für freefonts (wird per JS gesetzt) */
}

.item {
	position: absolute; /* Wird per JavaScript positioniert */
	box-sizing: border-box;
	display: block;
	height: auto;
	overflow: hidden;
}

/* 1 Spalte Breite (295px) - wird per JavaScript gesetzt */
.item,
.item-one,
.item-medium {
	/* Breite wird per JavaScript berechnet: ~295px */
}

/* 2 Spalten Breite (610px) - wird per JavaScript gesetzt */
.item-two,
.item-large {
	/* Breite wird per JavaScript berechnet: ~610px (2 * 295px + gap) */
}

/* Responsive: Mobile - Items nehmen volle Breite */
@media screen and (max-width: 768px) {
	#masonry {
		padding: 0 1rem;
	}
	
	.item {
		position: relative !important; /* Stack vertikal auf Mobile */
		width: 100% !important;
		margin-bottom: 20px;
	}
}


.project-wrapper {
	width: 100%;
	box-sizing: border-box;
}

.project-images-stack {
	margin: 0px auto 0px auto;
	padding: 0;
	position: relative;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
}

.project-images-stack div.project-image {
	position: absolute;
	top: 0;
	left: 0;
	width:  100%; 
	height: auto;
	z-index: 2;
	box-sizing: border-box;
}

.project-images-stack div.project-image img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	box-sizing: border-box;
}

.project-images-stack div.project-image:last-child {
	position: relative;
}

/* Figcaption für Portfolio-Items */
figure figcaption {
	font-size: 13px;
	padding: 7px 0px;
}

div.project-image span.caption {
	position: absolute;
	bottom: 20px;
	font-size: 13px;
	right: 15px;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	color: var(--clr-primary);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-webkit-transition: visibility 0s, opacity 0.25s linear;
	transition: visibility 0s, opacity 0.25s linear;
}

div.project-image:hover span{
 padding: 6px 10px 6px 10px;
 visibility: visible;
 opacity: 1; 
}
/* Freefonts
-------------------------------------------------- */



.freefonts  {
  position: relative;
}

.freefonts p {
  margin-bottom: 0.35em;
  line-height: 1.5;
}

.stack {
	margin: 0px auto 40px auto;
	width: 100%; /* Statt 400px - passt sich Spaltenbreite an */
	max-width: 295px; /* Maximal 295px für 1 Spalte */
	padding: 0;
	position: relative;
	box-sizing: border-box;
}

.stack img {
	max-width: 90%;
	position: absolute;
	top: 0;
	left: 0;

	/*start ------------*/
	width: 100%; 
	height: auto;
	z-index: 2;
	background: var(--clr-gray-light); 
	border: solid var(--clr-gray-medium) 0; 
	box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1)  ; 
	-webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1)  ; 
	-moz-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1)  ; 
}

.stack img:last-child {
	position: relative;
}

img.rotate {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

/* Random rotation */
.stack img:nth-child(3) {
	-webkit-transform: translate(10px,5px);
	transform: translate(10px,5px);
}

.stack img:first-child {
	-webkit-transform: rotate(-10deg);
	transform: rotate(-10deg);
}

.stack img:nth-child(2) {
	-webkit-transform: rotate(12deg);
	transform: rotate(12deg);
}

.earmark {
  background-image: url('../images/earmark.png');
  width: 30px;
  height: 30px;
  z-index: 10;
  position: absolute;
  right: 0px;
  top:20px;
}

.shadow {
  background-image: url('../images/shadow.png');
  width: 100%;
  height: 20px;
  z-index: 10;
  position: absolute;
  bottom: 0px;
	background-size: 100%;
	background-repeat: no-repeat;
}

.freefonts .content-wrapper {
  clear: both;
  margin-bottom: 20px;}

/* .lnk Definition entfernt - wird bereits oben definiert mit var(--clr-text) */
p.specimen {
font-size: 1.21em;
line-height: 1.45em;
margin-bottom: 0.35em;

}

.lnk-download, .styles {
  text-transform: uppercase;
  font-variant: small-caps;
  font-size: 11px;
  color: darkgray;
  display: inline-block;
  line-height: 11px;
  position: relative;
  top: -3px;
}

.lnk-download.lnk-btn {
  border: solid 1px var(--clr-primary);
  padding: 4px 7px;
  margin: 10px 0px 0px 0px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  color: var(--clr-primary);
}

.lnk-download.lnk-btn:hover {
  border: solid 1px var(--clr-red);
  color: var(--clr-red);
}

/* Font-Actions (Download) */
.font-actions {
  margin-top: 10px;
}
/* Font-Pairing Block (wie closest alternative) – nur wenn Pairing eingetragen */
.font-pairing-block {
  font-size: 1.21em;
  line-height: 1.45em;
  margin-bottom: 0.35em;
}
.font-pairing-block a {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-skip-ink: auto;
}
.font-pairing-matrix {
  font-size: 0.65em;
  font-style: italic;
}
/* Item-Inhalt verdrängt Grid-Items (kein overflow: hidden) */
.freefonts.item {
  overflow: visible;
}
/* Font-Focus: 5% grüne Fläche hinter Item bei Hash-Link, 10px mehr Platz in jede Richtung */
.freefonts.item.font-focus-highlight {
  position: relative;
}
.freefonts.item.font-focus-highlight::before {
  content: '';
  position: absolute;
  inset: -10px -10px 0 -10px;
  background: rgba(0, 140, 0, 0.05);
  z-index: -1;
  margin-left: -20px;
  margin-top: -30px;
}

.lnk-btn:hover {
	  color: var(--clr-primary);
    border-color: var(--clr-primary);
}

.fontfaces-list {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    text-transform: lowercase;
    font-variant: small-caps;
    color: var(--clr-black);
    font-size: 1.2em;
}

ul.opentypefeatures {
  margin: 10px 0px 0px -7px
}
ul.opentypefeatures li {
  width: 30px;
  height: 30px;
  background-position: center center;
  text-indent: -99999px;
  display: inline-block;  
  background-repeat: no-repeat;
  list-style-type: none;
  margin: 0px 1px 0px 0px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.7;

}

ul.opentypefeatures li:last-child {
  margin: 0px 0px 0px 0px;
}

ul.opentypefeatures li:hover {
  background-color: white;
  opacity: 0.85;
}

li.otf-alternates {
  background: url("../images/otf-alternates.png") center center;
}
li.otf-ligatures {
  background: url("../images/otf-ligatures.png") center center;
  background-position-y: -5px!important;
}
li.otf-oldstylefigures {
  background: url("../images/otf-oldstylefigures.png") center center;
}
li.otf-discretionary {
  background: url("../images/otf-discretionary.png") center center;
  background-size: 70%!important;
}
li.otf-fractions {
  background: url("../images/otf-fractions.png") center center;
  background-size: 70%!important;
}
li.otf-ordinals {
  background: url("../images/otf-ordinals.png") center center;
  background-size: 70%!important;
}
li.otf-smallcaps {
  background: url("../images/otf-smallcaps.png") center center;
}
li.otf-swashes {
  background: url("../images/otf-swashes.png") center center;
}
li.otf-ornaments {
  background: url("../images/otf-ornaments.png") center center;
    background-size: 65%!important;
}

hr {
  visibility: collapse;
  margin: 20px 0 10px 0;
}
/*
hr:after {
	content: '/U+2761';
	display: inline-block;
	position: relative;
	top: -15px;
	padding: 0 10px;
	background: #f0f0f0;
	color: var(--clr-gray-medium);
	font-size: 18px;
}
*/

footer.footer {
	background-color: rgb(255,255,255) !important;
	background: rgb(255,255,255) !important;
	overflow: hidden;
	padding: 50px 0px;
	position: relative;
	z-index: 1;
}

/* Footer Container: mittig ausgerichtet mit Skeleton Grid */
footer.footer .container {
	/* max-width: 1024px; */
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

/* Sicherstellen, dass das 12-Spalten-System innerhalb des 1024px Containers funktioniert */
footer.footer .container .row {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	display: block;
	clear: both;
}

/* Footer nutzt das Standard-Skeleton 12-Spalten-System */
/* Die Spaltenbreiten werden automatisch vom Skeleton-System berechnet */
/* 1 Spalte = 4.66666666667%, 2 Spalten = 13.3333333333%, 3 Spalten = 22%, 4 Spalten = 30.6666666667% */

/* Sicherstellen, dass Footer-Spalten korrekt positioniert sind */
footer.footer .one.column,
footer.footer .one.columns,
footer.footer .two.columns,
footer.footer .three.columns,
footer.footer .four.columns,
footer.footer .five.columns {
	box-sizing: border-box;
	float: left;
	position: relative;
}

/* Margin für Spalten ab 1000px */
@media (min-width: 1000px) {
	.column, .columns {
		margin-left: 3%;
	}
	.column:first-child,
	.columns:first-child {
		margin-left: 0;
	}
}

.five.columns.resume {
	padding-right: 3%;
}

.postfooter {
	padding: 30px 0px 40px 0px;
	background-color: transparent;
	margin-top: auto;
}

.postfooter-standalone {
	background-color: rgb(255, 255, 255);
}

.postfooter-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.postfooter-left {
	display: flex;
	align-items: center;
	gap: 60px;
	flex-wrap: wrap;
}

.postfooter-right {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-date,
.footer-colophon,
.footer-credits {
	display: inline-block;
	vertical-align: middle;
}

.footer-colophon {
	margin-left: 0;
}

.font-switcher-wrapper {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
}

.social {
    width: 100%;
    margin: 0;
    padding: 0;
}

.social-column {
    display: flex;
    flex-direction: column;
}

.social li {
	margin-bottom: 5px;
}


.social li h3 a,
.social li h3 a:hover  {
	font-size: 16px;
	/* Verwendet .lnk-footer Basis-Klasse */
}

.social li a span.lnk,
.social li a:visited span.lnk {
  color: var(--clr-primary);
  text-decoration: none;
	font-size: 14px;
	font-style: italic;
	display: block;
	margin: 4px 0px 16px 0px;
}

.social li a:hover span.lnk {
	text-decoration: underline;
}

/* -------  Instagram Feed ------- */


.instagram-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 0;
    max-width: 25px;
}

.instagram-stack a {
    display: block;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 1 / 1;
    width: 80px;
    height: 80px;
}

.instagram-stack img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    transition: transform 0.2s ease;
    display: block;
}

.instagram-stack a:hover img {
  transform: scale(1.05);
}



@media (max-width: 768px) {
  .instagram-stack {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Footer responsive */
  .footer .row {
    flex-direction: column;
  }
  
  .footer .one.column,
  .footer .one.columns,
  .footer .two.columns,
  .footer .three.columns,
  .footer .four.columns,
  .footer .five.columns {
    width: 100%;
    margin-left: 0;
    margin-bottom: var(--spacing-6);
  }
  
  .footer .one.column:last-child,
  .footer .one.columns:last-child,
  .footer .two.columns:last-child,
  .footer .three.columns:last-child,
  .footer .four.columns:last-child,
  .footer .five.columns:last-child {
    margin-bottom: 0;
  }
  
  .postfooter-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .postfooter-left,
  .postfooter-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-credits {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: var(--spacing-6) 0;
  }
  
  .footer .container {
    padding: 0 1rem;
  }
  
  .postfooter {
    padding: var(--spacing-4) 0;
  }
  
  .postfooter .container {
    padding: 0 1rem;
  }
  
  .instagram-stack {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  
  .instagram-stack a {
    width: 100%;
    max-width: 100px;
    height: 100px;
  }
  
  .instagram-stack img {
    width: 100% !important;
    height: 100% !important;
  }
  
  /* Font-Switcher: Desktop verstecken, Mobile anzeigen */
  .font-switcher-desktop {
    display: none;
  }
  
  .font-switcher-mobile {
    display: block;
  }
  
}

/* Font-Switcher: Mobile verstecken, Desktop anzeigen */
@media (min-width: 481px) {
  .font-switcher-desktop {
    display: block;
  }
  
  .font-switcher-mobile {
    display: none;
  }
}

/* Hamburger-Menü Styles */
.font-switcher-hamburger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--clr-border, #ddd);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: var(--clr-text);
  transition: all 0.2s ease;
  width: 100%;
  justify-content: space-between;
}

.font-switcher-hamburger:hover {
  background: var(--clr-surface, #f5f5f5);
  border-color: var(--clr-primary, #000);
}

.font-switcher-hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 18px;
  height: 14px;
  justify-content: center;
}

.font-switcher-hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: 1px;
  transition: all 0.2s ease;
}

.font-switcher-current {
  font-weight: 500;
  flex: 1;
  text-align: left;
  margin-left: 8px;
}

.font-switcher-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 8px;
  background: var(--clr-surface, #fff);
  border: 1px solid var(--clr-border, #ddd);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.font-switcher-menu-item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  color: var(--clr-text);
  transition: background 0.2s ease;
  border-bottom: 1px solid var(--clr-border, #eee);
}

.font-switcher-menu-item:last-child {
  border-bottom: none;
}

.font-switcher-menu-item:hover {
  background: var(--clr-primary-light, #f0f0f0);
}

.font-switcher-menu-item.active {
  background: var(--clr-primary, #000);
  color: var(--clr-surface, #fff);
}

.font-switcher-wrapper {
  position: relative;
}

/* Footer Page Title - Rechts ausgerichtet, vertikal zentriert */
.footer-page-title {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  /* Verwendet .lnk-footer Basis-Klasse */
}


/* -------  Font Select ------- */
  /* Minimalistisches Design */

.special {
  position: relative;
}

.suno-geburtstags-staendchen {
  position: absolute;
  right: 50px;
  bottom: 10px;
  display: inline-block;
}

#waveform {
  width: 135px;
  /* Fensterbreite für die Waveform */
  height: 35px;
  /* Höhe der Waveform */
  display: inline-block;
  background-color: rgba(250, 250, 247, 0.8);
  /* Hintergrund */
}

button {
  min-height: 35px;
  width: 35px;
  font-size: 14px;
  color: rgb(0, 145, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  position: relative;
  top: -12px;
}

button:hover {
  color: rgb(0, 145, 1);
}

/* -------  Font Select ------- */

.prefooter {
	background-color: fuchsia;
}







/* ==========================================================================
   ZENTRALE HEADLINE-STYLES
   Basis-Styles für feed-headline (Feed, Article, Stats nutzen feed-page-title)
   ========================================================================== */
.feed-headline {
	position: relative;
	z-index: 2;
	letter-spacing: -.001em;
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 0.99;
	color: var(--clr-text);
	margin: 0;
	hyphens: none;
	width: 770px;
	max-width: calc(100vw - 2rem);
	transition: color 0.2s ease;
}

/* -------  Clearfix ------- */


.group:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}
* html .group             { zoom: 1; } /* IE6 */
*:first-child+html .group { zoom: 1; } /* IE7 */