    /* ------------------------------------
       Property Card Main Container
    ------------------------------------ */
    .property-card {
      width: 100%;
      max-width: 1200px;
      background-color: #ffffff;
      box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
      overflow: hidden;
	margin: 0 auto;
    }

    /* ------------------------------------
       Header Section (Green Gradient)
    ------------------------------------ */
    .card-header {
      background: linear-gradient(135deg, #2d5a44 0%, #3a7258 50%, #204332 100%);
      color: #ffffff;
      text-align: center;
      padding: 1rem 0.75rem 0.75rem;
    }

    .header-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-bottom: 0.5rem;
      border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.4);
    }

    .label-new {
      font-size: 0.9rem;
      letter-spacing: 0.15em;
      font-weight: 400;
      opacity: 0.95;
    }

    .property-number {
      font-size: 2.5rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      line-height: 1.1;
      margin-top: 0.125rem;
      display: block;
    }

    .header-bottom {
      padding-top: 0.5rem;
    }

    .plan-title {
      font-size: 1.35rem;
      letter-spacing: 0.06em;
      font-weight: 500;
      white-space: nowrap;
    }

    /* ------------------------------------
       Body Section (Area Details) - SP Layout
    ------------------------------------ */
    .card-body {
      padding: 1.5rem 0.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      align-items: center;
      background-color: #fff;
    }

    .area-item {
      display: flex;
      align-items: baseline;
      justify-content: center;
      color: #2b5742;
      width: 100%;
      white-space: nowrap;
    }

    .area-label {
      font-size: clamp(0.8rem, 3.8vw, 1.05rem);
      letter-spacing: 0.05em;
      color: #333333;
      margin-right: clamp(0.125rem, 1vw, 0.375rem);
      font-weight: 500;
      flex-shrink: 0;
    }

    .area-value-group {
      display: flex;
      align-items: baseline;
      flex-shrink: 0;
    }

    .area-integer {
      font-size: clamp(1.8rem, 8vw, 2.6rem);
      font-weight: 500;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .area-decimal {
      font-size: clamp(1.2rem, 5vw, 1.8rem);
      font-weight: 500;
      line-height: 1;
    }

    .area-unit {
      font-size: clamp(0.9rem, 3.5vw, 1.2rem);
      margin-left: 0.0625rem;
      margin-right: clamp(0.0625rem, 0.75vw, 0.1875rem);
      font-weight: 400;
    }

    .area {
      font-size: clamp(0.75rem, 3.2vw, 0.95rem);
      color: #333333;
      letter-spacing: 0.02em;
      flex-shrink: 0;
    }

    .area .num {
      font-weight: 600;
    }

    /* ------------------------------------
       Responsive Design (Desktop View)
    ------------------------------------ */
    @media (min-width: 768px) {
      .card-header {
        padding: 1rem 2.5rem 0.75rem;
      }

      .header-top {
        flex-direction: row;
        gap: 1.25rem;
        padding-bottom: 0.5rem;
      }

      .label-new {
        font-size: 1.1rem;
      }

      .property-number {
        font-size: 2.6rem;
      }

      .plan-title {
        font-size: 2.1rem;
        letter-spacing: 0.12em;
      }

      .card-body {
        flex-direction: row;
        justify-content: center;
  	    gap: 20px;
        padding: 45px 30px;
      }

      .area-item {
        width: auto;
      }

      .area-label {
        font-size: 1.15rem;
        margin-right: 0.5rem;
	      }

      .area-integer {
        font-size: 3.4rem;
      }

      .area-decimal {
        font-size: 2.2rem;
      }

      .area-unit {
        font-size: 1.4rem;
        margin-right: 0.3125rem;
      }

      .area {
        font-size: 1.05rem;
      }
    }