/* =========================================================
   LINE-IN SPATIAL RECORDS — style.css
   Ordnung:
   1) Fonts + Global
   2) Layout + Navigation + Footer (für alle Seiten)
   3) KATALOG
   4) STUDIO
   5) ÜBER UNS
   ========================================================= */


/* =========================================================
   1) CUSTOM FONTS
   ========================================================= */

/* Raleway – Light & Medium */
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-light-webfont.woff2') format('woff2'),
       url('../fonts/raleway-light-webfont.woff') format('woff'),
       url('../fonts/Raleway-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-medium-webfont.woff2') format('woff2'),
       url('../fonts/raleway-medium-webfont.woff') format('woff'),
       url('../fonts/Raleway-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Source Sans Pro – Regular & Bold */
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/sourcesanspro-regular-webfont.woff2') format('woff2'),
       url('../fonts/sourcesanspro-regular-webfont.woff') format('woff'),
       url('../fonts/SourceSansPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/sourcesanspro-bold-webfont.woff2') format('woff2'),
       url('../fonts/sourcesanspro-bold-webfont.woff') format('woff'),
       url('../fonts/SourceSansPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* =========================================================
   2) GLOBAL STYLES (alle Seiten)
   ========================================================= */

html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: #000000;
  background-color: #FFFFFF;
}

/* Typo */
h1, .title {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 500;
  font-size: 2.84375rem;
  letter-spacing: 0.03em;
  color: #F6B74E;
  margin: 0 0 20px 0;
  line-height: 1.0;

  overflow-wrap: normal;
  word-break: normal;
}

h2, .subtitle {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: #F6B74E;
  margin: 0 0 0.71875rem 0;
}


a {
  color: #F6B74E;
  text-decoration: underline;
}

p {
  margin: 0 0 15px 0;
}

ul, ol {
  margin: 0 0 20px 20px;
  padding: 0;
}

li {
  margin-bottom: 5px;
}

strong {
  font-weight: 700;
}


/* =========================================================
   LAYOUT (alle Seiten)
   ========================================================= */

.content-wrapper {
  margin: 0 auto;
  max-width: 1265px;
  display: flex;
  flex-wrap: wrap;
}

.section-first,
.section-beige,
.section-weiss,
.section-grau {
  display: grid;
  grid-template-columns: 37fr 71fr;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

/* Sections Farben / Padding */
.section-first {
  background-color: #FEF5E9;
  padding: 28px 80px 50px 80px;
}

.section-beige,
.section-weiss,
.section-grau {
  padding: 50px 80px 50px 80px;
}

.section-beige { background-color: #FEF5E9; }
.section-weiss { background-color: #FFFFFF; }
.section-grau  { background-color: #F2EFEC; }

.left-column,
.right-column {
  min-width: 0;
}

/* Titel über beide Spalten */
.section-first h1,
.section-first .title,
.section-weiss .title,
.section-beige .title {
  grid-column: 1 / 3;
  margin-bottom: 20px;
}

/* robustere Variante */
.section-first > h1,
.section-beige > h1,
.section-weiss > h1,
.section-grau > h1 {
  grid-column: 1 / -1;
}


/* =========================================================
   NAVIGATION (alle Seiten)
   ========================================================= */

.main-nav {
  margin: 0;
  width: 100%;
  background: #FFFFFF;
  position: relative;
  z-index: 20;
  overflow: visible;
}


.nav-top {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1265px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
}

.logo {
  width: 90px;
  height: 102px;
  margin-left: 0;
  margin-top: 16px;
  margin-bottom: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 4;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top left;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0 0 0 60px;
  padding: 0;
  gap: 50px;
  align-items: flex-end;
  height: 130px;
  padding-bottom: 14px;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
}

.nav-menu li { position: relative; }

.nav-menu li a {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.09375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F6B74E;
  text-decoration: none;
  padding: 0 0 20px 0;
  display: inline-block;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li.active a {
  color: #000000;
}

/* SVG-Wellen-Unterkante */
.svg-wrapper {
  position: absolute;
  transform: 0.3s ease;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FEF5E9;
  height: 35px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

#navSvg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 5px 8px rgba(0,0,0,0.10));
}



/* =========================================================
   FOOTER (alle Seiten)
   ========================================================= */

.site-footer{
  width: 100%;
  background: #FFFFFF;
  padding: 0;
}

.site-footer__inner{
  max-width: 1265px;
  margin: 0 auto;
  padding: 25px 20px 50px 80px;
  box-sizing: border-box;

  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 40px;
  position: relative;
  min-height: 110px;
}

.site-footer__inner::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 8px;
  box-shadow: 0 -5px 8px rgba(0,0,0,0.10);
  pointer-events: none;
}

/* --- Footer Textblock --- */

.site-footer__left{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
  white-space: nowrap;

  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: #777;
}

.site-footer__left a{
  color: #777;
  text-decoration: none;
}

.site-footer__left a:hover{
  text-decoration: underline;
}

/* --- Logo --- */

.site-footer__right{
  flex: 0 0 auto;
}

.site-footer__right img{
  height: 60px;
  width: auto;
  display: block;
}

/* --- Social Icons links --- */

.footer-social{
  position: absolute;
  left: 20px;
  bottom: 45px;
  display: flex;
  gap: 16px;
  white-space: nowrap;
}

.social-icon{
  width: 22px;
  height: 22px;
  fill: #777;
  transition: fill 0.2s ease;
}

.footer-social a:hover .social-icon{
  fill: #F6B74E;
}

/* --- Labelcode kürzen auf kleinen Screens --- */

.site-footer__lc .lc-short{
  display: none;
}

@media (max-width: 700px){
  .site-footer__lc .lc-long{
    display: none;
  }

  .site-footer__lc .lc-short{
    display: inline;
  }
}

/* --- Footer enger machen, aber ohne Umbruch --- */

@media (max-width: 1100px){
  .site-footer__inner{
    padding: 25px 20px 45px 20px;
    gap: 28px;
  }

  .site-footer__left{
    gap: 20px;
    font-size: 0.84rem;
  }

  .site-footer__right img{
    height: 54px;
  }
}

/* --- Wenn es eng wird: Kontakt ausblenden --- */

@media (max-width: 576px){
  .site-footer__contact{
    display: none;
  }

  .site-footer__inner{
    padding: 22px 12px 42px 12px;
    gap: 12px;
    min-height: 92px;
  }

  .site-footer__left{
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
  }

  .footer-social{
    left: 12px;
    bottom: 38px;
    gap: 8px;
  }

  .social-icon{
    width: 17px;
    height: 17px;
  }

  .site-footer__right img{
    height: 42px;
  }
}

@media (max-width: 390px){
  .site-footer__inner{
    padding: 20px 10px 40px 10px;
    gap: 8px;
  }

  .site-footer__left{
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.01em;
  }

  .footer-social{
    left: 10px;
    bottom: 36px;
    gap: 6px;
  }

  .social-icon{
    width: 15px;
    height: 15px;
  }

  .site-footer__right img{
    height: 38px;
  }
}



/* =========================================================
   RESPONSIVE (GLOBAL: Layout + Navigation, alle Seiten)
   ========================================================= */

@media (max-width: 1024px) {
  .nav-top { padding: 0 40px; }
  .nav-menu { gap: 35px; margin-left: 40px; }
}

@media (max-width: 768px) {
  .content-wrapper { flex-direction: column; width: 100%; max-width: 100%; }

  /* Mobile: Titel soll nicht in "falsche" Grid-Spalten geraten */
  .section-first h1,
  .section-first .title,
  .section-weiss .title,
  .section-beige .title {
    grid-column: 1 / -1;
  }

  .section-first,
  .section-beige,
  .section-weiss,
  .section-grau {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .left-column,
  .right-column {
    width: 100%;
    padding-right: 0;
  }

  .section, .section-alt-weiss, .section-alt-grau {
    margin: 0 -10px 20px -10px;
    padding: 10px;
  }

  /* Nav Mobile */
  .nav-top {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
  }

  .logo {
    margin: 10px auto 15px;
    width: 80px;
    height: 90px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    padding-bottom: 10px;
    gap: 25px;
    margin: 0;
  }

  .nav-menu li a {
    font-size: 1rem;
    padding-bottom: 12px;
  }

  .svg-wrapper { height: 30px; }
  #navSvg { height: 30px; }

  .nav-menu li.active::after {
    height: 4px;
    width: 90%;
  }
}

/* =========================================================
 INDEX
 ========================================================= */

/* Schatten unter Navigation nur auf Index */

/* Schatten nur auf Index */
body.home .main-nav{
  position: relative;
}

body.home .main-nav::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 8px;
  box-shadow: 0 8px 8px rgba(0,0,0,0.10);
  pointer-events: none;
}


/* =========================================================
   3) KATALOG (katalog.php)
   ========================================================= */

/* Tabs + graue Plattform-Kästen */
input[type="radio"] { display: none; }

.format-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 0;
}


.tab {
  padding: 10px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
  transition: all 0.15s ease;
  background: #f8f8f8;
  color: #555;
}

/* Aktiver Tab – Physical */
input[id^="schweiz"]:checked ~ .format-tabs label[for^="schweiz"],
input[id^="eu"]:checked      ~ .format-tabs label[for^="eu"],
input[id^="usa"]:checked     ~ .format-tabs label[for^="usa"] {
  background: #ffffff;
  color: #F6B74E;
  border-bottom: none;
  position: relative;
  z-index: 1;
}

/* Aktiver Tab – Digital */
input[id^="stereo"]:checked ~ .format-tabs label[for^="stereo"],
input[id^="atmos"]:checked  ~ .format-tabs label[for^="atmos"],
input[id^="auro"]:checked   ~ .format-tabs label[for^="auro"] {
  background: #ffffff;
  color: #F6B74E;
  border-bottom: none;
  position: relative;
  z-index: 1;
}

.tab-panel {
  display: none;
  margin-top: 0;
  padding: 20px 0;
  background: #ffffff;
}

input[id^="schweiz"]:checked ~ .format-content .tab-panel[data-tab="schweiz"],
input[id^="eu"]:checked      ~ .format-content .tab-panel[data-tab="eu"],
input[id^="usa"]:checked     ~ .format-content .tab-panel[data-tab="usa"] {
  display: block;
}

input[id^="stereo"]:checked ~ .format-content .tab-panel[data-tab="stereo"],
input[id^="atmos"]:checked  ~ .format-content .tab-panel[data-tab="atmos"],
input[id^="auro"]:checked   ~ .format-content .tab-panel[data-tab="auro"] {
  display: block;
}

/* Plattform-Kästen */
.platform-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin: 0 auto;
  width: 100%;
  max-width: 1180px;
  padding: 0 24px;
  box-sizing: border-box;
}

.platform-link {
  width: 154px;
  height: 50px;
  background-color: #dddddd;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.2;
  transition: background-color 0.25s ease, transform 0.15s ease;
  text-decoration: none;
}

.platform-link:hover {
  background-color: #d0d0d0;
  transform: scale(1.04);
  text-decoration: none;
}

.platform-link img {
  max-width: 90%;
  max-height: 72%;
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

/* Cover Lightbox (Desktop) */
.cover-thumb {
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
}

.cover-img {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox:target { display: flex; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 92vw);
  max-height: 92vh;
  padding: 10px;
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  height: auto;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #fff;
  color: #000;
  font-size: 34px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.lightbox__close:hover { opacity: 0.9; }

.lightbox__hint {
  margin-top: 10px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

@media (min-width: 1025px) {
  .cover-thumb { position: relative; cursor: zoom-in; }

  .cover-thumb::after {
    content: "Klicken zum Vergrössern";
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .cover-thumb:hover::after { opacity: 1; }
  .cover-thumb:hover .cover-img { opacity: 0.9; }
}

@media (max-width: 1024px) {
  .cover-thumb { cursor: default; pointer-events: none; }
}




.auskopplungen { margin: 15px 0 40px; }

/* EP/Singles Cover-Gruppe */
.ep-group {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  margin: 0 auto 40px auto;
  max-width: 100%;
}

.cover-item {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.18s ease;
}

.cover-item.single {
  flex: 0 0 152px;
  width: 152px;
  height: 152px;
}

.cover-item.ep {
  flex: 0 0 208px;
  width: 208px;
  height: 208px;
  order: -1;
}

.cover-item img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.18s ease;
}

.parent-release-box{
  margin: 28px 0 10px 0;
}

.parent-release-link{
  display: inline-block;
  text-decoration: none;
}

.parent-release-image{
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

/* Digital-Trenner */
.section-divider {
  display: block;
  grid-template-columns: none;
  gap: 0;
  padding: 28px 40px 18px;
}

.section-divider .divider-title { margin: 0; }

.digital-title {
  font-size: 2rem;
  font-weight: 600;
}

/* Metadaten */
.metadata { margin-top: 10px; }

.metadata dl { margin: 0 0 15px 0; }

.metadata dt {
  font-weight: 300;
  color: #000;
  margin-bottom: 5px;
}

.metadata dd {
  margin: 0 0 10px 0;
  padding-left: 0;
  color: #F6B74E;
}

.metadata dd a{
  display: inline-flex;
  align-items: center;
  gap: 0.25em;   /* Viertelgeviert */
  text-decoration: none;
}

.metadata dd a::after{
  content: "";
  width: 12px;
  height: 12px;

  background-image: url("../images/katalog/LinkPfeil.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  flex-shrink: 0;
}

.metadata + h2 {
  margin-top: 30px;
}

.format-section + h2 { margin-top: 40px; }


.booklet-links a + a{
  margin-left: 1em; /* ein Geviert zwischen den Booklet-Links */
}

/* Metadaten Tabelle */
.metadata-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.metadata-table th,
.metadata-table td {
  text-align: left;
  border-bottom: none;
}

.metadata-table th {
  font-weight: 300;
  color: #000;
  background-color: transparent;
}

.metadata-table td { color: #F6B74E; }

/* Audio-Formate Punkte */
.audio-formats {
  display: grid;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.audio-formats li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
}

.audio-formats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.audio-formats .dot-yellow::before { background-color: #FFD700; }
.audio-formats .dot-red::before    { background-color: #FF0000; }
.audio-formats .dot-blue::before   { background-color: #0000FF; }
.audio-formats .dot-green::before  { background-color: #00B000; }

/* Katalog: Responsive (nur Katalog-relevantes) */
@media (max-width: 1100px) {
  h2:has(+ .auskopplungen) { display: none; }
  .auskopplungen, .ep-group, .parent-release-box { display: none; }
  .right-column > h2:not(:first-of-type) { margin-top: 40px; }
}

@media (max-width: 920px) {
  .ep-group { gap: 14px; }

  .cover-item.single {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
  }

  .cover-item.ep {
    flex: 0 0 190px;
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 760px) {
  .ep-group {
    flex-wrap: wrap;
    gap: 16px 20px;
    justify-content: flex-start;
  }

  .cover-item.single {
    flex: 0 0 48%;
    width: 48%;
    height: 0;
    padding-top: 48%;
    max-width: 165px;
  }

  .cover-item.ep {
    flex: 0 0 100%;
    width: 100%;
    height: 0;
    padding-top: 100%;
    max-width: 220px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .cover-item.single {
    flex: 1 1 100%;
    width: 100%;
    padding-top: 100%;
    max-width: 240px;
  }
}

/* Katalog: Responsive Tabelle + Plattformen + Audio (Mobile) */
@media (max-width: 768px) {
  .audio-formats {
    grid-template-columns: 1fr;
  }

  .metadata-table thead {
    display: none;
  }

  .metadata-table,
  .metadata-table tbody,
  .metadata-table tr,
  .metadata-table td {
    display: block;
    width: 100%;
  }

  .metadata-table tr {
    margin-bottom: 18px;
  }

  .metadata-table td {
    text-align: left;
    position: static;
    padding-left: 0;
    margin-bottom: 10px;
  }

  .metadata-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    font-weight: 300;
    color: #000;
  }

  .platform-container {
    flex-direction: column;
    gap: 15px;
  }

  .platform-link {
    min-width: 100%;
  }
}

/* 
   PLATFORM LINKS – Coming Soon
 */

.platform-link.coming-soon{
   position: relative;
   background-color: #eaeaea;
 }
 
.platform-link.coming-soon img{
   /* filter: grayscale(30%); */
   opacity: 0.55;
 }
 
 .platform-link.coming-soon::after{
   content: "COMING SOON";
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) rotate(-18deg);
 
   font-family: 'Raleway', Arial, sans-serif;
   font-weight: 500;
   font-size: 11px;
   letter-spacing: 0.08em;
 
   color: #F6B74E; /* gleiches Gelb wie im restlichen CSS */
 
   pointer-events: none;
   white-space: nowrap;
 }

.platform-link.coming-soon:hover {
  transform: none;
  background-color: ##eaeaea;/* verhindert Hover-Effekt */
}

/* =========================================================
   4) STUDIO (studio.php)
   ========================================================= */

.service-block { margin-bottom: 30px; }

.artist-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.artist-column { flex: 1; }

.artist-column h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #F6B74E;
  margin: 0 0 7px 0;
  text-transform: none;
  line-height: 1.2;
  word-wrap: break-word;
  hyphens: auto;
}

/* Video-Container (Studio) */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 20px;
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Kinoformat */
.video-container.cinema-aspect {
  padding-bottom: 42.55%; /* ca. 2.35:1 */
}

.project-block {
  margin-bottom: 60px;
}

/* Studio: Mobile */
@media (max-width: 768px) {

  .artist-list {
    flex-direction: column;
    gap: 0;
  }

  .artist-column {
    margin: 0;
    padding: 0;
  }

  .artist-column:first-child {
    margin-bottom: 0;
  }

  .artist-column h2 {
    margin: 0 0 7px 0;
  }

  /* Normales Video */
  .video-container {
    padding-bottom: 56.25%;
  }

  /* Kinoformat NICHT überschreiben */
  .video-container.cinema-aspect {
    padding-bottom: 42.55%;
  }

}

/* =========================================================
   5) ÜBER UNS (ueberuns.php)
   ========================================================= */

.partner-block,
.history-block {
  margin-bottom: 30px;
}

/* Team-Sektionen */
.team-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.team-member img {
  width: 100%;
  max-width: 551px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 0;
}

.team-member .bio,
.team-member .team-bio {
  flex: 1;
  text-align: left;
}

.partner-link{
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.partner-link:hover,
.partner-link:focus,
.partner-link:active,
.partner-link:visited{
  color: inherit;
  text-decoration: none;
}

/* Über uns: Mobile (eigentlich schon global ok, aber hier bleibt’s zusammen) */
@media (max-width: 768px) {
  .team-member {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .team-member img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

