.property-about-section {
  width: min(100%, 1700px);
  margin: 0 auto;
  padding: 72px 0px;
  color: #111;
}

.property-about-inner {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: start;
}

.property-about-eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #111;
}

.property-about-heading {
  margin: 0;
  max-width: 760px;
  font-size: clamp(26px, 3.8vw, 48px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 400;
  color: #111;
  text-transform: none !important;
}

.property-about-intro {
  max-width: 760px;
  margin: 34px 0 0;
  font-size: clamp(22px, 1.05vw, 26px);
  line-height: 1.75;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.72);
}

.property-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.property-about-tag {
  padding: 10px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #f4f4f4;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  color: rgba(0, 0, 0, 0.72);
}

.property-about-accordion {
  height: 690px;
  background: #f4f4f4;
  overflow: hidden;
}

.property-accordion-list {
  height: 100%;
  padding: 34px 46px;
  display: flex;
  flex-direction: column;
}

.property-accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.property-accordion-item:last-child {
  border-bottom: 0;
}

.property-accordion-trigger {
  width: 100%;
  min-height: 68px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
}

.property-accordion-title {
  font-size: clamp(18px, 1.5vw, 28px);
  font-weight: 850;
  line-height: 1.15;
  color: #111;
}

.property-accordion-symbol {
  font-size: 34px;
  line-height: 1;
  font-weight: 300;
  color: #111;
}

.property-accordion-panel {
  display: none;
  padding: 0 32px 24px 0;
  overflow: auto;
}

.property-accordion-item.is-open .property-accordion-panel {
  display: block;
}

.property-accordion-text {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 550;
  color: rgba(0, 0, 0, 0.72);
}

.property-accordion-list-items {
  margin: 26px 0 0;
  padding-left: 22px;
}

.property-accordion-list-items li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.72);
}

@media (max-width: 900px) {
  .property-about-section {
    padding: 52px 24px;
  }

  .property-about-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .property-about-eyebrow {
    margin-bottom: 18px;
  }

  .property-about-heading {
    font-size: clamp(21px, 11vw, 31px);
    line-height: 1.02;
  }

  .property-about-intro {
    margin-top: 26px;
    font-size: 20px;
    line-height: 1.65;
  }

  .property-about-tags {
    gap: 10px;
    margin-top: 30px;
  }

  .property-about-tag {
    padding: 10px 16px;
    font-size: 13px;
  }

  .property-about-accordion {
    height: 780px;
  }

  .property-accordion-list {
    padding: 25px 28px;
  }

  .property-accordion-trigger {
    min-height: 78px;
  }

  .property-accordion-title {
    font-size: 22px;
  }

  .property-accordion-panel {
    padding: 0 0 32px;
  }

  .property-accordion-text {
    font-size: 18px;
    line-height: 1.7;
  }

  .property-accordion-list-items li {
    font-size: 17px;
  }
}