/* No external framework or font is required; the site theme supplies the base font. */
.nozhan-directory-search,
.nozhan-directory,
.nozhan-index-directory,
.nozhan-property-list-directory,
.nozhan-property-single {
    --nozhan-navy: #17364d;
    --nozhan-blue: #1f4e78;
    --nozhan-teal: #0e9fa1;
    --nozhan-green: #238b37;
    --nozhan-orange: #e58b27;
    --nozhan-ink: #263746;
    --nozhan-muted: #6c7c88;
    --nozhan-line: #e3edf2;
    --nozhan-surface: #ffffff;
    --nozhan-soft: #f4f9fb;
    box-sizing: border-box;
    color: var(--nozhan-ink);
    font-family: inherit;
}

.nozhan-directory-search *,
.nozhan-directory *,
.nozhan-index-directory *,
.nozhan-property-list-directory *,
.nozhan-property-single * {
    box-sizing: border-box;
}

.nozhan-directory-search {
    align-items: end;
    background: var(--nozhan-surface);
    border: 1px solid var(--nozhan-line);
    border-radius: 12px;
    box-shadow: 0 7px 24px rgba(23, 54, 77, .06);
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(220px, 1.6fr) repeat(6, minmax(105px, 1fr)) auto;
    margin: 0 0 22px;
    padding: 15px;
}

.nozhan-directory-search label,
.nozhan-settings-form label,
.nozhan-import-options label {
    display: grid;
    gap: 6px;
}

.nozhan-directory-search label span,
.nozhan-settings-form label span,
.nozhan-import-options label span {
    color: var(--nozhan-muted);
    font-size: 12px;
    font-weight: 600;
}

.nozhan-directory-search input,
.nozhan-directory-search select {
    background: #fff;
    border: 1px solid #cfdee6;
    border-radius: 8px;
    color: var(--nozhan-ink);
    font: inherit;
    min-height: 42px;
    padding: 8px 11px;
    width: 100%;
}

.nozhan-directory-search input:focus,
.nozhan-directory-search select:focus {
    border-color: var(--nozhan-teal);
    box-shadow: 0 0 0 3px rgba(14, 159, 161, .12);
    outline: none;
}

.nozhan-directory-search button,
.nozhan-link {
    align-items: center;
    background: var(--nozhan-blue);
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 42px;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.nozhan-directory-search button:hover,
.nozhan-link:hover {
    background: var(--nozhan-navy);
    color: #fff;
    transform: translateY(-1px);
}

.nozhan-directory {
    background: var(--nozhan-soft);
    border: 1px solid #e5eff3;
    border-radius: 14px;
    margin: 0 auto;
    max-width: 1240px;
    padding: clamp(18px, 3vw, 30px);
}

.nozhan-directory__head {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.nozhan-directory__eyebrow {
    color: var(--nozhan-teal);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 5px;
}

.nozhan-directory h1,
.nozhan-directory h2,
.nozhan-property-single h1,
.nozhan-property-single h2 {
    color: var(--nozhan-navy);
    margin: 0;
}

.nozhan-directory__head h2 {
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.4;
}

.nozhan-directory__head p {
    color: var(--nozhan-muted);
    font-size: 13px;
    margin: 5px 0 0;
}

.nozhan-directory__count {
    background: #e6f5f5;
    border-radius: 999px;
    color: var(--nozhan-teal);
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 13px;
}

.nozhan-index-directory {
    margin: 0 auto;
    max-width: 1240px;
    padding: clamp(12px, 2vw, 22px) 0;
}

.nozhan-index-directory__head,
.nozhan-property-list-directory__head {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.nozhan-index-directory__head h2,
.nozhan-property-list-directory__head h2 {
    color: var(--nozhan-navy);
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.5;
    margin: 0;
}

.nozhan-index-directory__all {
    align-items: center;
    background: #f2f7f8;
    border: 1px solid var(--nozhan-line);
    border-radius: 9px;
    color: var(--nozhan-blue);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 800;
    min-height: 34px;
    padding: 7px 12px;
    text-decoration: none;
}

.nozhan-index-directory__all:hover {
    background: #e7f2f4;
    color: var(--nozhan-navy);
}

.nozhan-index-directory__all span {
    margin-right: 7px;
}

.nozhan-index-track {
    --nozhan-index-visible: 5;
    align-items: stretch;
    cursor: grab;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 1px 2px 8px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    touch-action: pan-y;
}

.nozhan-index-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.nozhan-index-card {
    background: #fff;
    border: 1px solid var(--nozhan-line);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(23, 54, 77, .06);
    flex: 0 0 calc((100% - (var(--nozhan-index-visible) - 1) * 14px) / var(--nozhan-index-visible));
    min-width: 0;
    overflow: hidden;
    scroll-snap-align: start;
    transition: box-shadow .2s ease, transform .2s ease;
}

.nozhan-index-card:hover {
    box-shadow: 0 12px 27px rgba(23, 54, 77, .12);
    transform: translateY(-2px);
}

.nozhan-index-card__image {
    background: linear-gradient(135deg, #edf7f8, #d9ecf2);
    display: block;
    height: 155px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.nozhan-index-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
    width: 100%;
}

.nozhan-index-card:hover .nozhan-index-card__image img {
    transform: scale(1.025);
}

.nozhan-index-card__image .nozhan-property-card__placeholder {
    align-items: center;
    color: var(--nozhan-blue);
    display: flex;
    font-size: 22px;
    font-weight: 800;
    height: 100%;
    justify-content: center;
}

.nozhan-index-card__body {
    padding: 11px 10px 10px;
}

.nozhan-index-card h3 {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 7px;
    min-height: 48px;
}

.nozhan-index-card h3 a,
.nozhan-list-item h3 a {
    color: var(--nozhan-navy);
    text-decoration: none;
}

.nozhan-index-card h3 a:hover,
.nozhan-list-item h3 a:hover {
    color: var(--nozhan-teal);
}

.nozhan-index-card__meta {
    border-bottom: 1px solid var(--nozhan-line);
    color: var(--nozhan-muted);
    display: grid;
    font-size: 11px;
    gap: 5px;
    padding-bottom: 9px;
}

.nozhan-index-card__price {
    align-items: baseline;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    margin: 9px 0;
}

.nozhan-index-card__price span {
    color: var(--nozhan-muted);
    font-size: 10px;
    white-space: nowrap;
}

.nozhan-index-card__price strong {
    color: var(--nozhan-green);
    font-size: 11px;
    text-align: left;
}

.nozhan-index-card__link {
    align-items: center;
    background: #f0f3f4;
    border-radius: 7px;
    color: var(--nozhan-navy);
    display: flex;
    font-size: 11px;
    font-weight: 800;
    justify-content: center;
    min-height: 32px;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.nozhan-index-card__link:hover {
    background: #e3eff1;
    color: var(--nozhan-blue);
}

.nozhan-property-list-directory {
    background: var(--nozhan-soft);
    border: 1px solid #e5eff3;
    border-radius: 14px;
    margin: 0 auto;
    max-width: 1240px;
    padding: clamp(18px, 3vw, 30px);
}

.nozhan-property-list-directory__head p {
    color: var(--nozhan-muted);
    font-size: 13px;
    margin: 5px 0 0;
}

.nozhan-list-layout {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
}

.nozhan-list-layout--full {
    grid-template-columns: 1fr;
}

.nozhan-list-main {
    min-width: 0;
}

.nozhan-list-sidebar {
    background: #fff;
    border: 1px solid var(--nozhan-line);
    border-radius: 11px;
    box-shadow: 0 7px 24px rgba(23, 54, 77, .06);
    padding: 14px;
    position: sticky;
    top: 20px;
}

.nozhan-list-sidebar__head {
    border-bottom: 1px solid var(--nozhan-line);
    margin-bottom: 13px;
    padding-bottom: 10px;
}

.nozhan-list-sidebar__head h3 {
    color: var(--nozhan-navy);
    font-size: 16px;
    margin: 0;
}

.nozhan-list-sidebar__head p {
    color: var(--nozhan-muted);
    font-size: 11px;
    line-height: 1.8;
    margin: 4px 0 0;
}

.nozhan-list-sidebar .nozhan-directory-search {
    align-items: stretch;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
}

.nozhan-list-sidebar .nozhan-directory-search label:first-child,
.nozhan-list-sidebar .nozhan-directory-search button {
    grid-column: auto;
}

.nozhan-list-group-title {
    align-items: center;
    border-right: 3px solid var(--nozhan-teal);
    color: var(--nozhan-navy);
    display: flex;
    font-size: 17px;
    gap: 12px;
    justify-content: space-between;
    margin: 24px 0 10px;
    padding-right: 9px;
}

.nozhan-list-group-title span {
    color: var(--nozhan-muted);
    font-size: 11px;
    font-weight: 500;
}

.nozhan-list-items {
    display: grid;
    gap: 12px;
}

.nozhan-list-item {
    background: #fff;
    border: 1px solid var(--nozhan-line);
    border-radius: 11px;
    box-shadow: 0 6px 20px rgba(23, 54, 77, .05);
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
}

.nozhan-list-item__image {
    background: linear-gradient(135deg, #edf7f8, #d9ecf2);
    display: block;
    min-height: 180px;
    overflow: hidden;
    position: relative;
}

.nozhan-list-item__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.nozhan-list-item__image .nozhan-property-card__placeholder {
    align-items: center;
    color: var(--nozhan-blue);
    display: flex;
    font-size: 24px;
    font-weight: 800;
    height: 100%;
    justify-content: center;
}

.nozhan-list-item__body {
    min-width: 0;
    padding: 14px;
}

.nozhan-list-item__top {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.nozhan-list-item h3 {
    font-size: 17px;
    line-height: 1.7;
    margin: 7px 0 5px;
}

.nozhan-list-item__meta {
    border-bottom: 1px solid var(--nozhan-line);
    color: var(--nozhan-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 11px;
    gap: 6px 14px;
    padding-bottom: 10px;
}

.nozhan-list-item__excerpt {
    color: var(--nozhan-muted);
    font-size: 12px;
    line-height: 1.8;
    margin: 10px 0;
}

.nozhan-list-item__bottom {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.nozhan-list-item__price span {
    color: var(--nozhan-muted);
    display: block;
    font-size: 10px;
}

.nozhan-list-item__price strong {
    color: var(--nozhan-green);
    display: block;
    font-size: 13px;
    margin-top: 2px;
}

.nozhan-list-item__bottom .nozhan-link {
    min-height: 34px;
    min-width: 145px;
    width: auto;
}

.nozhan-property-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(var(--nozhan-columns, 3), minmax(0, 1fr));
}

.nozhan-property-card {
    background: var(--nozhan-surface);
    border: 1px solid var(--nozhan-line);
    border-radius: 11px;
    box-shadow: 0 6px 22px rgba(23, 54, 77, .06);
    min-width: 0;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
}

.nozhan-property-card:hover {
    box-shadow: 0 12px 28px rgba(23, 54, 77, .12);
    transform: translateY(-2px);
}

.nozhan-property-card__image {
    background: linear-gradient(135deg, #edf7f8, #d9ecf2);
    display: block;
    height: 205px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.nozhan-property-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
    width: 100%;
}

.nozhan-property-card:hover .nozhan-property-card__image img {
    transform: scale(1.025);
}

.nozhan-property-card__placeholder {
    align-items: center;
    color: var(--nozhan-blue);
    display: flex;
    font-size: 22px;
    font-weight: 800;
    height: 100%;
    justify-content: center;
}

.nozhan-badge {
    background: var(--nozhan-orange);
    border-radius: 999px;
    bottom: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    left: 10px;
    padding: 5px 10px;
    position: absolute;
}

.nozhan-badge--static {
    display: inline-flex;
    margin-top: 10px;
    position: static;
}

.nozhan-badge--sold {
    background: #607d8b;
}

.nozhan-property-card__body {
    padding: 14px;
}

.nozhan-property-card__top,
.nozhan-property-single__head,
.nozhan-progress-head {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.nozhan-property-card__code {
    color: var(--nozhan-teal);
    font-size: 11px;
    font-weight: 800;
}

.nozhan-favorite {
    align-items: center;
    background: #edf7f8;
    border: 1px solid #cce7e9;
    border-radius: 50%;
    color: var(--nozhan-teal);
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    height: 32px;
    justify-content: center;
    line-height: 1;
    padding: 0 0 2px;
    width: 32px;
}

.nozhan-favorite[aria-pressed="true"] {
    background: var(--nozhan-teal);
    color: #fff;
}

.nozhan-favorite--large {
    flex: 0 0 auto;
    font-size: 25px;
    height: 42px;
    width: 42px;
}

.nozhan-property-card h3 {
    font-size: 16px;
    line-height: 1.7;
    margin: 9px 0 2px;
}

.nozhan-property-card h3 a {
    color: var(--nozhan-navy);
    text-decoration: none;
}

.nozhan-property-card h3 a:hover {
    color: var(--nozhan-teal);
}

.nozhan-property-card__location {
    color: var(--nozhan-muted);
    font-size: 12px;
    margin: 0 0 10px;
}

.nozhan-property-card__stats {
    border-bottom: 1px solid var(--nozhan-line);
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    padding-bottom: 11px;
}

.nozhan-property-card__stats span {
    color: var(--nozhan-muted);
    font-size: 11px;
}

.nozhan-property-card__price {
    display: flex;
    gap: 6px;
    justify-content: space-between;
    margin: 11px 0;
}

.nozhan-property-card__price span {
    color: var(--nozhan-muted);
    font-size: 11px;
}

.nozhan-property-card__price strong {
    color: var(--nozhan-green);
    font-size: 12px;
}

.nozhan-link {
    font-size: 12px;
    min-height: 36px;
    padding: 7px 11px;
    width: 100%;
}

.nozhan-link span {
    margin-right: 7px;
}

.nozhan-empty {
    background: #fff;
    border: 1px dashed #cbdde5;
    border-radius: 10px;
    color: var(--nozhan-muted);
    padding: 26px;
    text-align: center;
}

.nozhan-pagination {
    margin-top: 25px;
    text-align: center;
}

.nozhan-pagination .page-numbers {
    align-items: center;
    display: inline-flex;
    gap: 5px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nozhan-pagination li {
    display: inline-flex;
}

.nozhan-pagination a,
.nozhan-pagination span {
    align-items: center;
    border: 1px solid var(--nozhan-line);
    border-radius: 7px;
    color: var(--nozhan-blue);
    display: inline-flex;
    font-size: 12px;
    justify-content: center;
    min-height: 34px;
    min-width: 34px;
    padding: 4px 9px;
    text-decoration: none;
}

.nozhan-pagination .current {
    background: var(--nozhan-blue);
    border-color: var(--nozhan-blue);
    color: #fff;
}

.nozhan-property-single {
    margin: 0 auto;
    max-width: 1180px;
}

.nozhan-property-single__head {
    margin-bottom: 20px;
}

.nozhan-property-single__head h1 {
    font-size: clamp(23px, 3vw, 35px);
    line-height: 1.5;
}

.nozhan-property-single__location {
    color: var(--nozhan-muted);
    font-size: 13px;
    margin: 5px 0 9px;
}

.nozhan-property-single__layout {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}

.nozhan-gallery,
.nozhan-property-single__summary,
.nozhan-property-section {
    background: var(--nozhan-surface);
    border: 1px solid var(--nozhan-line);
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(23, 54, 77, .05);
}

.nozhan-gallery {
    overflow: hidden;
}

.nozhan-gallery__stage {
    background: #eaf4f6;
    min-height: 360px;
    position: relative;
}

.nozhan-gallery__stage img {
    display: block;
    height: min(62vw, 560px);
    max-height: 560px;
    min-height: 360px;
    object-fit: cover;
    width: 100%;
}

.nozhan-gallery__stage button {
    align-items: center;
    background: rgba(23, 54, 77, .72);
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 27px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
}

.nozhan-gallery__stage [data-nozhan-gallery-prev] {
    right: 14px;
}

.nozhan-gallery__stage [data-nozhan-gallery-next] {
    left: 14px;
}

.nozhan-gallery__thumbs {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 10px;
}

.nozhan-gallery__thumbs button {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 7px;
    cursor: pointer;
    flex: 0 0 72px;
    height: 58px;
    overflow: hidden;
    padding: 0;
}

.nozhan-gallery__thumbs button.is-active {
    border-color: var(--nozhan-teal);
}

.nozhan-gallery__thumbs img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.nozhan-gallery__empty {
    align-items: center;
    color: var(--nozhan-muted);
    display: flex;
    min-height: 260px;
    justify-content: center;
    padding: 30px;
}

.nozhan-property-single__summary {
    padding: 16px;
    position: sticky;
    top: 20px;
}

.nozhan-price-box {
    background: #eff9f4;
    border: 1px solid #d7eee0;
    border-radius: 10px;
    padding: 14px;
}

.nozhan-price-box span {
    color: var(--nozhan-muted);
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

.nozhan-price-box strong {
    color: var(--nozhan-green);
    display: block;
    font-size: 17px;
    line-height: 1.8;
}

.nozhan-price-box--featured {
    background: #edf9f4;
    border-color: #ccebd9;
    padding: 17px;
}

.nozhan-price-box--featured strong {
    font-size: clamp(21px, 2.4vw, 28px);
    font-weight: 900;
    letter-spacing: -.02em;
}

.nozhan-price-box--featured strong em {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

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

.nozhan-property-facts div {
    background: var(--nozhan-soft);
    border-radius: 8px;
    padding: 9px;
}

.nozhan-property-facts span,
.nozhan-property-facts strong {
    display: block;
}

.nozhan-property-facts span {
    color: var(--nozhan-muted);
    font-size: 10px;
}

.nozhan-property-facts strong {
    color: var(--nozhan-navy);
    font-size: 13px;
    margin-top: 3px;
}

.nozhan-contact-box {
    border-top: 1px solid var(--nozhan-line);
    margin-top: 15px;
    padding-top: 14px;
}

.nozhan-contact-box > span {
    color: var(--nozhan-muted);
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
}

.nozhan-contact-box div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.nozhan-contact-box a {
    background: #eaf5f6;
    border-radius: 7px;
    color: var(--nozhan-blue);
    font-size: 12px;
    padding: 7px 9px;
    text-decoration: none;
}

.nozhan-contact-box a:hover {
    background: #dceff1;
    color: var(--nozhan-navy);
}

.nozhan-action-button,
.nozhan-detail-action {
    align-items: center;
    background: var(--nozhan-blue);
    border: 1px solid var(--nozhan-blue);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    gap: 7px;
    justify-content: center;
    min-height: 40px;
    padding: 9px 13px;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.nozhan-action-button:hover,
.nozhan-detail-action:hover {
    background: var(--nozhan-navy);
    border-color: var(--nozhan-navy);
    color: #fff;
    transform: translateY(-1px);
}

.nozhan-action-button--phone,
.nozhan-detail-action--phone {
    background: var(--nozhan-green);
    border-color: var(--nozhan-green);
}

.nozhan-action-button--phone:hover,
.nozhan-detail-action--phone:hover {
    background: #176d2a;
    border-color: #176d2a;
}

.nozhan-property-section {
    margin-top: 18px;
    padding: 18px;
}

.nozhan-property-section h2 {
    border-right: 3px solid var(--nozhan-teal);
    font-size: 18px;
    margin-bottom: 13px;
    padding-right: 9px;
}

.nozhan-property-content {
    color: var(--nozhan-ink);
    font-size: 14px;
    line-height: 2.1;
}

.nozhan-property-content p:last-child {
    margin-bottom: 0;
}

.nozhan-details-grid {
    display: grid;
    gap: 0 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.nozhan-details-grid div {
    border-bottom: 1px solid var(--nozhan-line);
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(90px, .4fr) 1fr;
    padding: 10px 0;
}

.nozhan-details-grid dt {
    color: var(--nozhan-muted);
    font-size: 12px;
}

.nozhan-details-grid dd {
    color: var(--nozhan-navy);
    font-size: 13px;
    margin: 0;
    overflow-wrap: anywhere;
}

.nozhan-amenities-grid {
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nozhan-amenity {
    background: var(--nozhan-soft);
    border: 1px solid #e4eff2;
    border-radius: 9px;
    min-width: 0;
    padding: 10px;
}

.nozhan-amenity span,
.nozhan-amenity strong {
    display: block;
}

.nozhan-amenity span {
    color: var(--nozhan-muted);
    font-size: 11px;
}

.nozhan-amenity strong {
    color: var(--nozhan-navy);
    font-size: 13px;
    margin-top: 4px;
    overflow-wrap: anywhere;
}

.nozhan-amenity--features {
    grid-column: 1 / -1;
}

.nozhan-amenity--features ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 7px 0 0;
    padding: 0;
}

.nozhan-amenity--features li {
    background: #fff;
    border: 1px solid #d7e8ed;
    border-radius: 999px;
    color: var(--nozhan-blue);
    font-size: 11px;
    padding: 5px 9px;
}

.nozhan-map-frame {
    background: #eaf4f6;
    border: 1px solid var(--nozhan-line);
    border-radius: 10px;
    min-height: 310px;
    overflow: hidden;
}

.nozhan-map-frame iframe {
    border: 0;
    display: block;
    height: 310px;
    width: 100%;
}

.nozhan-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.nozhan-map-actions a {
    background: #eaf5f6;
    border-radius: 7px;
    color: var(--nozhan-blue);
    font-size: 12px;
    padding: 7px 10px;
    text-decoration: none;
}

.nozhan-map-actions a:hover {
    background: #dceff1;
    color: var(--nozhan-navy);
}

.nozhan-map-address {
    color: var(--nozhan-muted);
    font-size: 12px;
    line-height: 1.9;
    margin: 10px 0 0;
}

.nozhan-virtual-tour__note {
    color: var(--nozhan-muted);
    font-size: 12px;
    line-height: 1.9;
    margin: 0 0 12px;
}

.nozhan-history {
    overflow-x: auto;
}

.nozhan-history__row {
    border-bottom: 1px solid var(--nozhan-line);
    display: grid;
    gap: 12px;
    grid-template-columns: 1.2fr 1fr 1fr;
    min-width: 430px;
    padding: 10px 0;
}

.nozhan-history__row:last-child {
    border-bottom: 0;
}

.nozhan-history__row span {
    font-size: 12px;
}

.nozhan-history__row--head span {
    color: var(--nozhan-muted);
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 1050px) {
    .nozhan-index-track {
        --nozhan-index-visible: 4;
    }

    .nozhan-directory-search {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .nozhan-directory-search label:first-child {
        grid-column: span 3;
    }

    .nozhan-directory-search button {
        grid-column: span 3;
    }
}

@media (max-width: 900px) {
    .nozhan-index-track {
        --nozhan-index-visible: 2;
    }

    .nozhan-list-layout {
        grid-template-columns: 1fr;
    }

    .nozhan-list-sidebar {
        position: static;
    }

    .nozhan-list-item {
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .nozhan-amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nozhan-property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nozhan-property-single__layout {
        grid-template-columns: 1fr;
    }

    .nozhan-property-single__summary {
        position: static;
    }
}

@media (max-width: 620px) {
    .nozhan-directory-search {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nozhan-directory-search label:first-child,
    .nozhan-directory-search button {
        grid-column: span 2;
    }

    .nozhan-directory,
    .nozhan-property-single,
    .nozhan-index-directory,
    .nozhan-property-list-directory {
        border-radius: 10px;
        padding: 14px;
    }

    .nozhan-directory__head {
        align-items: start;
        flex-direction: column;
    }

    .nozhan-index-directory__head,
    .nozhan-property-list-directory__head {
        align-items: start;
        flex-direction: column;
    }

    .nozhan-index-track {
        gap: 12px;
        padding-bottom: 4px;
    }

    .nozhan-index-card {
        flex: 0 0 78vw;
        max-width: 300px;
        scroll-snap-align: start;
    }

    .nozhan-index-card__image {
        height: 175px;
    }

    .nozhan-list-item {
        grid-template-columns: 1fr;
    }

    .nozhan-list-item__image {
        height: 200px;
        min-height: 0;
    }

    .nozhan-list-item__bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .nozhan-list-item__bottom .nozhan-link {
        width: 100%;
    }

    .nozhan-property-grid,
    .nozhan-amenities-grid,
    .nozhan-details-grid {
        grid-template-columns: 1fr;
    }

    .nozhan-property-card__image {
        height: 190px;
    }

    .nozhan-gallery__stage,
    .nozhan-gallery__stage img {
        min-height: 250px;
    }

    .nozhan-action-button--tour {
        width: 100%;
    }
}
