/* =========================================
   STANDORT-ARCHIV – Pure You Care (kompakt)
========================================= */

.pyc-standorte-archive {
  background: #ffffff;
}

/* HERO */

.pyc-standorte-hero {
  padding-top: 3rem;
  padding-bottom: 1.6rem;
  background: #fff;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.pyc-standorte-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pyc-standorte-hero h1 {
  margin-bottom: 0.6rem;
}

.pyc-standorte-hero__text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* LISTING */

.pyc-standorte-listing {
  padding-top: 1.2rem;
  background: #ffffff;
}

/* GRID */

.pyc-standorte-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
}

/* CARD */

.pyc-standort-card {
  height: 100%;
}

.pyc-standort-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 12px 26px rgba(10, 44, 51, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pyc-standort-card__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(10, 44, 51, 0.10);
  border-color: rgba(7, 155, 171, 0.24);
}

/* IMAGE */

.pyc-standort-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(195, 228, 233, 0.55), rgba(7, 155, 171, 0.16));
}

.pyc-standort-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.pyc-standort-card__link:hover .pyc-standort-card__image {
  transform: scale(1.03);
}

.pyc-standort-card__image--placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.6), transparent 45%),
    linear-gradient(135deg, rgba(195,228,233,.9), rgba(7,155,171,.35));
}

/* CONTENT */

.pyc-standort-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.9rem 1rem 0.85rem;
}

.pyc-standort-card__title {
  margin: 0 0 0.35rem;
  color: var(--cyan-navy);
  font-size: 1.15rem;
  line-height: 1.15;
}

.pyc-standort-card__cta {
  margin-top: auto;
  padding-top: 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pure-teal);
  transition: gap 0.18s ease, color 0.18s ease;
}

.pyc-standort-card__link:hover .pyc-standort-card__cta {
  gap: 0.5rem;
  color: var(--deep-teal);
}

/* EMPTY */

.pyc-standorte-empty {
  max-width: 620px;
  margin: 0 auto;
  padding: 1.6rem 1.2rem;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(10,44,51,.06);
}

.pyc-standorte-empty h2 {
  margin-bottom: 0.5rem;
  color: var(--cyan-navy);
}

.pyc-standorte-empty p {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Letzten Abstand unten entfernen */

.pyc-standorte-archive .section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.pyc-standorte-archive .container:last-child {
  margin-bottom: 0;
}

.pyc-standorte-archive + .site-footer {
  margin-top: 0;
}

/* TABLET */

@media (max-width: 768px) {
  .pyc-standorte-hero {
    padding-top: 2.4rem;
    padding-bottom: 1.2rem;
  }

  .pyc-standorte-grid {
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .pyc-standort-card__media {
    height: 190px;
  }

  .pyc-standort-card__content {
    padding: 0.8rem 0.9rem 0.75rem;
  }
}

/* MOBILE */

@media (max-width: 480px) {
  .pyc-standorte-grid {
    grid-template-columns: 1fr;
  }

  .pyc-standort-card__media {
    height: 180px;
  }
}
