/* ===== ABOUT (unverändert aus deinem Look) ===== */
.about{
  background: rgba(43,32,26,.3);
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  border: 2px solid #000;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
  max-width: 1200px;
}
.about:hover{
  border: 3px solid rgba(46,55,70,.7);
  box-shadow: 0 0 10px var(--pink), 0 4px 8px rgba(0,0,0,.2);
  animation: pulseGlow 1.5s infinite alternate ease-in-out;
}

/* Innenlayout */
.aboutbox{
  width: 90%;
  max-width: 950px;
  margin: auto;
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: space-between;
  overflow-x: auto;
}
.abouttxtbox{
  width: 60%;
  min-width: 350px;
  height: 390px;
  background: #3f5068;
  padding: 20px;
  border: 2px solid #000;
  border-radius: 5px;
}
.abouttxt-inner{         /* ersetzt dein div mit margin-top:-20px */
  margin-top: -20px;
}
.aboutjpgbox{
  width: 30%;
  min-width: 200px;
  height: 390px;
  background: #3f5068;
  padding: 20px;
  border: 2px solid #000;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutjpgbox img{
  border-radius: 30px;
  display: block;
  border: 1px solid rgba(0,0,0,.3);
  opacity: .7;
  max-width: 100%;
  height: auto;
}

/* ----- Spacer unter ABOUT (aufgeräumt) ----- */
.about-spacer-row{
  display: flex;
  gap: 20px;
}
.about-spacer-img{
  border-radius: 3px;
  display: block;
  border: 0;               /* entspricht deinem border-color: transparent */
  opacity: .7;
  max-width: 100%;
  height: 100%;
}

/* ===== About combo box (text + image in one frame) ===== */
.about .about-combo{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 360px; /* Text | Bild */
  gap: 18px;
  background: linear-gradient(180deg,#485363 0%, #4f5c6f 100%);
  border: 2px solid rgba(0,0,0,.65);
  border-radius: 18px;
  box-shadow:
    0 0 22px rgba(84,101,129,.35),
    0 0 44px rgba(204,156,154,.25),
    0 0 66px rgba(250,181,184,.18);
}

.about .abouttxt{
  color:#ffe8e9;
}
.about .abouttxt h2{
  margin-top:0;
  color:#fab5b8;
  letter-spacing:.4px;
}
.about .aboutimg{
  border: 2px solid rgba(0,0,0,.65);
  border-radius: 16px;
  background:#3f5068;
  padding: 8px;
  display:flex; align-items:center; justify-content:center;
}
.about .aboutimg img{
  width:100%; height:auto; display:block;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px){
  .about .about-combo{
    grid-template-columns: 1fr;   /* untereinander */
  }
}
