/* ======================================
   ORT – elegante Version
====================================== */

.ort-area{
  display: grid;
  grid-template-columns: calc(100% - 654px) 640px;
  gap: 14px;
  align-items: start;
}

/* Linke Spalte */
.ort-left{
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

/* Karten / Blöcke */
.ort-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

/* Kopfbereich */
.ort-section-head{
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
}

.ort-section-head h2{
  margin: 0 0 6px;
  font-size: 2rem;
  line-height: 1.1;
  color: #e6eaee;
  font-weight: 700;
}

.ort-section-head p{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
  color: #aeb7bf;
}

/* Karte */
.ort-map-wrap{
  width: 100%;
  height: 540px;
  background: #1e2328;
}

.ort-map-wrap iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Infokarte */
.ort-info-card{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 22px;
}

.ort-info-text h3{
  margin: 0 0 10px;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #7ce9ec;
  font-weight: 500;
}

.ort-info-text p{
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.25;
  color: #9bc7f3;
}

/* Buttons */
.ort-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.ort-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  background: #8a1111;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #b11d1d;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ort-btn:hover{
  background: #a31616;
  border-color: #cb2a2a;
  transform: translateY(-1px);
}

.ort-btn-secondary{
  background: transparent;
  color: #d8dee4;
  border: 1px solid rgba(255,255,255,0.18);
}

.ort-btn-secondary:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
}

/* Responsive */
@media (max-width: 1200px){
  .ort-area{
    grid-template-columns: 1fr;
  }

  .ort-left{
    order: 1;
  }

  .tiles{
    order: 2;
    margin-left: 0;
  }
}

@media (max-width: 820px){
  .ort-map-wrap{
    height: 420px;
  }

  .ort-info-card{
    flex-direction: column;
    align-items: flex-start;
  }

  .ort-actions{
    justify-content: flex-start;
  }

  .ort-section-head h2{
    font-size: 1.7rem;
  }

  .ort-info-text h3{
    font-size: 1.35rem;
  }

  .ort-info-text p{
    font-size: 1.08rem;
  }
}