.price-table-desktop {
  overflow: hidden;
  border: 1px solid rgba(51, 44, 35, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.55);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  padding: clamp(0.75rem, 1.5vw, 1.1rem);
  border-bottom: 1px solid rgba(51, 44, 35, 0.16);
  text-align: center;
}
.price-table thead {
  background: rgba(51, 44, 35, 0.04);
}
.price-table thead th {
  color: #332c23;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-table thead th:nth-child(-n+2) {
  text-align: left;
}
.price-table tbody:last-of-type tr:last-child > * {
  border-bottom: 0;
}
.price-table tbody + tbody tr:first-child > * {
  border-top: 2px solid rgba(180, 158, 33, 0.35);
}
.price-table tbody th[scope=row] {
  font-weight: 400;
}

.price-table__period-label {
  width: 18%;
  background: rgba(180, 158, 33, 0.08);
  color: #332c23;
  font-weight: 600;
  text-align: left !important;
  vertical-align: middle;
  white-space: nowrap;
}

.price-table__value {
  white-space: nowrap;
}

.price-list-mobile {
  display: none;
}

@media (max-width: 767px) {
  .price-table-desktop {
    display: none;
  }
  .price-list-mobile {
    display: grid;
    gap: 2rem;
  }
  .price-period {
    display: grid;
    gap: 0.75rem;
    border: 1px solid rgba(51, 44, 35, 0.16);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.55);
  }
  .price-period__title {
    margin: 0;
    padding: 2rem 0.75rem 0rem 0.75rem;
    color: #332c23;
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
  }
  .price-period__apartments {
    display: grid;
    gap: 0.75rem;
  }
  .price-apartment {
    overflow: hidden;
  }
  .price-apartment__title {
    margin: 0;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(51, 44, 35, 0.16);
    color: #332c23;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .price-apartment__values {
    margin: 0;
  }
  .price-apartment__values div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 1rem;
  }
  .price-apartment__values div + div {
    border-top: 1px solid rgba(51, 44, 35, 0.16);
  }
  .price-apartment__values dt,
  .price-apartment__values dd {
    margin: 0;
  }
  .price-apartment__values dt {
    color: rgba(51, 44, 35, 0.75);
  }
  .price-apartment__values dd {
    color: #332c23;
    font-weight: 600;
    white-space: nowrap;
  }
}/*# sourceMappingURL=preise.css.map */