.angebote-page {
  background: #F7F5F2;
  color: #152F38;
}

.angebote-container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.angebote-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 110px 0 72px;
  background:
    linear-gradient(90deg, rgba(21, 47, 56, 0.88), rgba(21, 47, 56, 0.58)),
    url("../images/hero/hero-rathaus-maschsee.webp") center/cover;
  color: #fff;
}

.angebote-hero__inner {
  max-width: 790px;
}

.angebote-eyebrow {
  margin: 0 0 12px;
  color: #C29A6B;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.angebote-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  line-height: 1.08;
}

.angebote-hero p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.13rem;
  line-height: 1.7;
}

.angebote-section {
  padding: clamp(48px, 7vw, 88px) 0;
}

.angebote-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.angebote-toolbar h2 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.angebote-toolbar p {
  max-width: 620px;
  margin: 0;
  color: #5a6d73;
}

.angebote-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.angebote-filter button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(21, 47, 56, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #152F38;
  font-weight: 700;
  cursor: pointer;
}

.angebote-filter button.is-active,
.angebote-filter button:hover {
  border-color: #A67C52;
  background: #A67C52;
  color: #fff;
}

.angebote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.angebot-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(21, 47, 56, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(21, 47, 56, 0.08);
}

.angebot-card[hidden] {
  display: none;
}

.angebot-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #152F38;
}

.angebot-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.angebot-card__placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(166, 124, 82, 0.62), rgba(21, 47, 56, 0.92)),
    #152F38;
}

.angebot-card:hover .angebot-card__media img {
  transform: scale(1.035);
}

.angebot-card__status {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #A67C52;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.angebot-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
}

.angebot-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 6px;
  color: #A67C52;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.angebot-card__ort {
  color: #5a6d73;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50%;
}

.angebot-card h3 {
  margin: 0 0 8px;
  color: #152F38;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.25;
}

.angebot-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}

.angebot-card__facts div {
  padding: 9px 10px;
  border-radius: 6px;
  background: #F7F5F2;
}

.angebot-card__facts dt {
  margin: 0 0 2px;
  color: #5a6d73;
  font-size: 0.75rem;
}

.angebot-card__facts dd {
  margin: 0;
  color: #152F38;
  font-weight: 800;
  font-size: 0.92rem;
}

.angebot-card__text {
  margin: 0 0 14px;
  color: #334b52;
  font-size: 0.9rem;
  line-height: 1.6;
}

.angebot-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
}

.angebot-card__actions .btn--primary {
  color: #fff;
}

.angebot-card__actions .btn--secondary {
  color: #152F38;
  border-color: #152F38;
}

.angebot-card--quiet {
  border-style: dashed;
}

/* ── Promo-Kachel (Buchempfehlung) ──────────────────────────────────────────── */
.angebot-promo-card {
  grid-column: 1 / -1;
  background: #152F38;
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(21, 47, 56, 0.22);
}

.angebot-promo-card__inner {
  display: flex;
  min-height: 230px;
  height: 100%;
}

.angebot-promo-card__cover {
  flex: 0 0 190px;
  overflow: hidden;
}

.angebot-promo-card__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.angebot-promo-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 30px 36px;
}

.angebot-promo-card__eyebrow {
  margin: 0;
  color: #C29A6B;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.angebot-promo-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.angebot-promo-card p:not(.angebot-promo-card__eyebrow) {
  margin: 0;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Schriftfarben in der Promo-Kachel hochziehen — uebersteuert .standortseite a */
.angebot-promo-card .btn--primary {
  color: var(--weiss);
}
.angebot-promo-card .btn--secondary-light {
  color: var(--creme);
  border-color: var(--creme);
}
.angebot-promo-card .btn--secondary-light:hover {
  color: var(--petrol-dark);
  background-color: var(--creme);
}

.angebot-promo-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

@media (max-width: 600px) {
  .angebot-promo-card__cover {
    display: none;
  }
  .angebot-promo-card__body {
    padding: 24px 20px;
  }
}

.angebote-empty {
  margin-top: 24px;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 38px rgba(21, 47, 56, 0.08);
}

.angebote-empty h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
}

.angebote-empty p {
  max-width: 560px;
  margin: 0 auto 20px;
  color: #5a6d73;
}

.angebote-cta {
  padding: clamp(48px, 7vw, 82px) 0;
  background: #152F38;
  color: #fff;
  text-align: center;
}

.angebote-cta h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.angebote-cta p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.angebote-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.angebote-cta__actions .btn {
  color: #fff;
}

@media (max-width: 880px) {
  .angebote-toolbar,
  .angebote-grid {
    grid-template-columns: 1fr;
  }

  .angebote-toolbar {
    display: grid;
    align-items: start;
  }

  .angebote-filter {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .angebote-container {
    width: min(100% - 28px, 1180px);
  }

  .angebot-card__facts {
    grid-template-columns: 1fr;
  }

  .angebot-card__actions .btn {
    flex: 1;
  }
}
