
.property-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.property-cover {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--white);
}

.property-cover--image {
  isolation: isolate;
  background: #0f172a;
  padding-bottom: 54px;
}

.property-cover__image,
.property-cover__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.property-cover__image {
  z-index: 0;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.04);
}

.property-cover__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.28)),
    linear-gradient(90deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.04));
}

.property-cover > :not(.property-cover__image):not(.property-cover__shade) {
  position: relative;
  z-index: 2;
}

.property-cover__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.property-cover--image .property-cover__content {
  padding-bottom: 42px;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.86);
}

.property-image-disclaimer {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(15, 23, 42, 0.5);
  font-size: 0.66rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-cover--drawer {
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.property-cover--drawer .property-cover__shade {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.24)),
    linear-gradient(90deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.04));
}

.property-cover__badges,
.drawer-status-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.badge--discount,
.chip--discount {
  color: #064e3b;
  background: rgba(220, 252, 231, 0.9);
  border-color: rgba(5, 150, 105, 0.18);
  font-weight: 700;
}

.property-public-stamp {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  max-width: 100%;
  padding: 10px 26px;
  border: 4px solid rgba(220, 38, 38, 0.94);
  border-radius: 12px;
  color: #c1121f;
  background:
    radial-gradient(ellipse at 30% 36%, rgba(220, 38, 38, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 16px 28px rgba(15, 23, 42, 0.22),
    0 3px 0 rgba(220, 38, 38, 0.16),
    inset 0 0 0 2px rgba(220, 38, 38, 0.2),
    inset 0 0 18px rgba(220, 38, 38, 0.1);
  font-family: "Arial Black", Arial, system-ui, sans-serif;
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.5),
    0 1px 0 rgba(185, 28, 28, 0.16);
  transform: rotate(-9deg);
  transform-origin: center;
  opacity: 0.96;
  isolation: isolate;
  overflow: hidden;
  pointer-events: none;
}

.property-public-stamp::before {
  content: "";
  position: absolute;
  inset: 6px;
  pointer-events: none;
  border: 2px solid rgba(220, 38, 38, 0.58);
  border-radius: 8px;
  opacity: 0.85;
}

.property-public-stamp::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 28%, rgba(255, 255, 255, 0.9) 0 1.4px, transparent 1.8px),
    radial-gradient(circle at 39% 67%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 68% 35%, rgba(185, 28, 28, 0.16) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 86% 76%, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.5px);
  background-size:
    21px 19px,
    29px 23px,
    31px 27px,
    25px 29px;
  mix-blend-mode: normal;
  opacity: 0.18;
}

.property-public-stamp--delivered {
  max-width: min(100%, 520px);
  min-height: 72px;
  padding-inline: 20px;
  font-size: 1.55rem;
  line-height: 1.12;
  transform: rotate(-7deg);
}

.property-cover__badges .property-public-stamp {
  position: absolute;
  top: 26px;
  right: 18px;
  transform: rotate(-9deg);
  width: min(62%, 340px);
}

.property-cover__badges .property-public-stamp--delivered {
  top: 22px;
  right: 14px;
  width: min(86%, 500px);
  transform: rotate(-7deg);
}

.drawer-status-row .property-public-stamp {
  margin: 6px 0;
}

@media (max-width: 640px) {
  .property-cover__badges .property-public-stamp {
    top: 24px;
    right: 12px;
    width: min(68%, 280px);
    min-height: 52px;
    padding: 8px 16px;
    border-width: 3px;
    font-size: 1.55rem;
  }

  .property-cover__badges .property-public-stamp--delivered {
    top: 22px;
    right: 10px;
    width: min(90%, 340px);
    min-height: 66px;
    font-size: 1rem;
  }
}

.tone-navy {
  background: linear-gradient(145deg, #0f172a, #1d4ed8);
}

.tone-cobalt {
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
}

.tone-sky {
  background: linear-gradient(145deg, #1d4ed8, #60a5fa);
}

.property-card__body {
  padding: 20px;
}

.property-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.property-facts div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(248, 251, 255, 0.86);
}

.property-facts .property-fact--highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(220, 252, 231, 0.92), rgba(239, 246, 255, 0.96));
  border-color: rgba(5, 150, 105, 0.18);
}

.property-fact--highlight strong {
  color: #064e3b;
}

.property-facts span {
  display: block;
  margin-bottom: 4px;
  color: var(--slate-500);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.property-facts strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.property-card__body p,
.explain-point p,
.clarity-card p,
.section-card p,
.dashboard-card p,
.drawer p,
.auth-card p {
  line-height: 1.55;
}

.property-address-line {
  color: var(--slate-700);
  overflow-wrap: anywhere;
}

.explain-grid,
.education-grid,
.case-grid {
  grid-template-columns: 1fr 1fr;
}

.explain-points {
  grid-template-columns: 1fr 1fr;
}

.explain-point h3,
.clarity-card h3,
.education-video h3 {
  margin: 0 0 8px;
}

.clarity-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.clarity-card,
.notice-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.clarity-card {
  padding: 22px;
  box-shadow: var(--shadow);
}

.clarity-card--blue {
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(239, 246, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.clarity-card--inline {
  box-shadow: none;
}

.notice-card {
  margin-top: 14px;
  padding: 14px;
  color: var(--slate-700);
  background: rgba(239, 246, 255, 0.76);
}

.privacy-section {
  scroll-margin-top: 120px;
}

.privacy-card {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.privacy-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.privacy-card summary::-webkit-details-marker {
  display: none;
}

.privacy-card summary strong {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
}

.privacy-toggle {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--blue-900);
  background: rgba(37, 99, 235, 0.08);
}

.privacy-card[open] .privacy-toggle {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.privacy-copy {
  display: grid;
  gap: 14px;
  padding: 0 24px 26px;
  color: var(--slate-700);
  line-height: 1.65;
}

.privacy-copy h3 {
  margin: 16px 0 0;
  color: var(--blue-950);
  font-size: 1.05rem;
}

.privacy-copy p {
  margin: 0;
}

.privacy-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.privacy-copy a {
  color: var(--blue-800);
}

.clean-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--slate-700);
  line-height: 1.45;
}
