/* ======================================
   DIES & DAS – Layout + Links im Bild
   passend zu diesunddas.php (Klassen!)
====================================== */

/* Gesamtbereich: links flexibel, rechts Kacheln ~640px */
.diesunddas-area{
  display: grid;
  grid-template-columns: calc(100% - 654px) 640px;
  gap: 14px;
  align-items: start;
}

/* Linke Spalte – NUR auf der Seite "diesunddas" */
body.diesunddas .diesunddas-left{
  display: flex;
  height: 100%;
}

/* Bildblock – NUR auf der Seite "diesunddas" */
body.diesunddas .diesunddas-hero{
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}

body.diesunddas .diesunddas-hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Links im Bild (oben rechts) – NUR auf der Seite "diesunddas" */
body.diesunddas .diesunddas-links{
  position: absolute;
  top: 40px;
  right: 50px;

  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
}

body.diesunddas .diesunddas-links a{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #a9d4cf;
  text-decoration: none;
  transition: all 0.2s ease;
  text-shadow: 0 2px 6px rgba(0,0,0,.75);
  line-height: 12px;
}

body.diesunddas .diesunddas-links a:hover{
  color: #d8ff00;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width:1100px){
  .diesunddas-area{
    grid-template-columns: 1fr;
  }

  body.diesunddas .diesunddas-hero{
    height: 420px;
  }
}

@media (max-width:650px){
  body.diesunddas .diesunddas-hero{
    height: 340px;
  }

  body.diesunddas .diesunddas-links{
    top: 25px;
    right: 25px;
  }

  body.diesunddas .diesunddas-links a{
    font-size: 1.3rem;
  }
}