/**
 * Dispo Site Theme Custom Styles
 *
 * Supplements theme.json with styles that can't be expressed via blocks.
 */

/* ── Smooth scroll ── */
html {
	scroll-behavior: smooth;
}

/* ── Global link reset ── */
a {
	transition: color 0.2s;
}

/* ── Header nav ── */
.wp-block-navigation a {
	font-weight: 500;
	font-size: 0.95rem;
}

/* ── Hero section ── */
.dispo-hero {
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.dispo-hero h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.1;
	margin-bottom: 16px;
}

.dispo-hero p {
	font-size: clamp(1rem, 2vw, 1.25rem);
}

/* ── Section spacing ── */
.dispo-section {
	padding: 80px 0;
}

.dispo-section-title {
	text-align: center;
	margin-bottom: 48px;
}

.dispo-section-title h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	margin-bottom: 8px;
}

.dispo-section-title p {
	color: var(--dispo-text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* ── How It Works steps ── */
.dispo-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.dispo-step-number {
	width: 48px;
	height: 48px;
	background: var(--dispo-accent);
	color: #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
}

@media (max-width: 768px) {
	.dispo-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.dispo-steps {
		grid-template-columns: 1fr;
	}
}

/* ══════════════════════════════════════════
   Property Detail Page
   ══════════════════════════════════════════ */

.dispo-property-detail {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.dispo-property-detail h2 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--dispo-text-primary, #1a202c);
	margin: 0 0 16px;
}

.dispo-property-detail h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a202c;
	margin: 32px 0 12px;
}

.dispo-placeholder-text {
	color: #a0aec0;
	font-style: italic;
}

.dispo-text-success { color: #27ae60 !important; }
.dispo-text-accent { color: #e94560 !important; }

/* ── Hero Grid: 2-column ── */
.dispo-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

/* ── Gallery Carousel (inside hero left) ── */
.dispo-gallery-carousel {
	margin-bottom: 0;
}

.dispo-gallery-viewport {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
}

.dispo-gallery-track {
	display: flex;
	transition: transform 0.3s ease;
}

.dispo-gallery-slide {
	min-width: 100%;
	aspect-ratio: 4 / 3;
}

.dispo-gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

.dispo-gallery-prev,
.dispo-gallery-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.85);
	border: none;
	border-radius: 50%;
	font-size: 1.4rem;
	color: #1a202c;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	transition: background 0.2s;
	z-index: 2;
}

.dispo-gallery-prev { left: 10px; }
.dispo-gallery-next { right: 10px; }

.dispo-gallery-prev:hover,
.dispo-gallery-next:hover {
	background: #ffffff;
}

.dispo-gallery-counter {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: rgba(0,0,0,0.6);
	color: #fff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	z-index: 2;
}

.dispo-gallery-video-pill {
	position: absolute;
	bottom: 10px;
	right: 10px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	border: none;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	z-index: 2;
	backdrop-filter: blur(4px);
	transition: background 0.2s;
}

.dispo-gallery-video-pill:hover {
	background: rgba(0, 0, 0, 0.9);
}

.dispo-gallery-video-pill svg {
	flex-shrink: 0;
}

.dispo-gallery-thumbs {
	display: flex;
	gap: 6px;
	margin-top: 6px;
	overflow-x: auto;
	padding-bottom: 4px;
}

.dispo-gallery-thumb {
	flex-shrink: 0;
	width: 64px;
	height: 48px;
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	padding: 0;
	background: none;
	opacity: 0.6;
	transition: opacity 0.2s, border-color 0.2s;
}

.dispo-gallery-thumb.active,
.dispo-gallery-thumb:hover {
	opacity: 1;
	border-color: var(--dispo-navy, #1a202c);
}

.dispo-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ── Hero Info Panel (right side) ── */
.dispo-hero-info {
	padding: 4px 0;
}

.dispo-hero-info .dispo-status-badge {
	position: static;
	display: inline-block;
	margin-bottom: 12px;
}

.dispo-hero-street {
	font-size: 2rem;
	font-weight: 800;
	color: #1a202c;
	margin: 0 0 4px;
	line-height: 1.15;
}

.dispo-hero-location {
	color: #718096;
	font-size: 1rem;
	margin-bottom: 20px;
}

.dispo-view-address {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
	margin-left: 8px;
}

.dispo-view-address:hover {
	text-decoration: underline;
}

.dispo-hero-price {
	font-size: 1.15rem;
	color: #1a202c;
	margin-bottom: 20px;
}

.dispo-hero-price strong {
	font-weight: 700;
}

/* 2-column stat list (like inspo) */
.dispo-hero-stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 24px;
	margin-bottom: 24px;
	font-size: 0.95rem;
	color: #4a5568;
}

.dispo-hero-stat {
	padding: 6px 0;
	border-bottom: 1px solid #f0f0f0;
}

/* Hero action buttons */
.dispo-hero-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

.dispo-hero-actions .dispo-btn-primary {
	padding: 14px 32px;
	font-size: 1rem;
}

.dispo-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 20px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	color: #4a5568;
	cursor: pointer;
	font-size: 0.9rem;
	font-family: inherit;
	transition: background 0.2s, border-color 0.2s;
}

.dispo-share-btn:hover {
	background: #f7f8fa;
	border-color: #cbd5e0;
}

/* ── Access Section (right below hero) ── */
.dispo-access-section {
	margin: 32px 0;
	padding: 24px 0;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}

.dispo-access-section h2 {
	font-size: 1.6rem;
	margin: 0 0 4px;
}

.dispo-access-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.dispo-access-section-header p {
	color: #718096;
	margin: 4px 0 0;
	font-size: 1rem;
}

.dispo-btn-access-toggle {
	flex-shrink: 0;
	padding: 10px 20px;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: inherit;
	background: var(--dispo-accent, #e94560);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s;
}

.dispo-btn-access-toggle:hover {
	background: #d63651;
}

/* ── Property Description ── */
.dispo-description-section {
	margin: 32px 0;
	padding-bottom: 32px;
	border-bottom: 1px solid #e2e8f0;
}

.dispo-description-section .dispo-overview {
	color: #4a5568;
	line-height: 1.7;
	font-size: 0.95rem;
}

/* ── Tab intro text ── */
.dispo-tab-intro {
	color: #718096;
	font-size: 0.95rem;
	margin: 0 0 24px;
	line-height: 1.6;
}

/* ── Content Tabs ── */
.dispo-content-tabs {
	margin: 40px 0;
}

.dispo-tab-nav {
	display: flex;
	border-bottom: 2px solid #e2e8f0;
	gap: 0;
	margin-bottom: 32px;
}

.dispo-tab-btn {
	padding: 14px 28px;
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	font-size: 1.05rem;
	font-weight: 600;
	font-family: inherit;
	color: #a0aec0;
	cursor: pointer;
	transition: color 0.2s, border-color 0.2s;
}

.dispo-tab-btn:hover {
	color: #4a5568;
}

.dispo-tab-btn.active {
	color: #1a202c;
	border-bottom-color: #1a202c;
}

.dispo-tab-panel {
	display: none;
}

.dispo-tab-panel.active {
	display: block;
}

/* ── Stat boxes (used inside tabs) ── */
.dispo-stats-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 16px 0;
}

.dispo-stats-row--compact {
	margin: 12px 0;
}

.dispo-stat-box {
	flex: 1;
	min-width: 100px;
	background: #f7f8fa;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 14px;
	text-align: center;
}

.dispo-stat-value {
	font-size: 1.35rem;
	font-weight: 700;
	color: #1a202c;
	line-height: 1.2;
}

.dispo-stat-label {
	font-size: 0.75rem;
	color: #a0aec0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 4px;
}

/* ── Info tables ── */
.dispo-info-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

.dispo-info-table th,
.dispo-info-table td {
	padding: 12px 16px;
	border-bottom: 1px solid #e2e8f0;
	text-align: left;
	font-size: 0.95rem;
}

.dispo-info-table th {
	color: #718096;
	font-weight: 500;
	width: 40%;
}

.dispo-info-table td {
	color: #1a202c;
	font-weight: 600;
}

/* ── Comp cards ── */
.dispo-comp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 16px;
}

.dispo-comp-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 16px;
}

.dispo-comp-card h4 {
	margin: 0 0 8px;
	font-size: 0.8rem;
	color: #a0aec0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.dispo-comp-card--subject {
	border-color: #1a202c;
	border-width: 2px;
	background: #f7f8fa;
}

.dispo-comp-card--subject h4 {
	color: #1a202c;
	font-weight: 700;
}

.dispo-comp-address {
	font-weight: 600;
	color: #1a202c;
	margin-bottom: 4px;
	font-size: 0.9rem;
}

.dispo-comp-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: #27ae60;
}

.dispo-comp-detail {
	font-size: 0.85rem;
	color: #718096;
	margin-top: 4px;
}

.dispo-comp-link {
	display: inline-block;
	margin-top: 8px;
	font-size: 0.85rem;
	color: var(--dispo-accent, #e94560);
	text-decoration: none;
}

.dispo-comp-link:hover {
	text-decoration: underline;
}

.dispo-comp-map {
	border-radius: 12px;
	overflow: hidden;
	margin-top: 24px;
	aspect-ratio: 16 / 7;
	border: 1px solid #e2e8f0;
}

.dispo-comp-map iframe {
	width: 100%;
	height: 100%;
	border: none;
}

@media (max-width: 900px) {
	.dispo-comp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.dispo-comp-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Video click-to-play ── */
.dispo-video-container {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	background: #000;
}

/* Video slide in gallery */
.dispo-gallery-slide--video {
	position: relative;
	cursor: pointer;
	background: #000;
}

.dispo-gallery-slide--video img {
	opacity: 0.85;
}

.dispo-video-play-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 2;
	transition: transform 0.2s;
}

.dispo-video-play-overlay:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.dispo-gallery-slide--video iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Video thumbnail indicator */
.dispo-gallery-thumb--video {
	position: relative;
}

.dispo-thumb-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 16px;
	text-shadow: 0 1px 3px rgba(0,0,0,0.6);
	pointer-events: none;
}

.dispo-video-player {
	position: relative;
	aspect-ratio: 16 / 9;
	cursor: pointer;
}

.dispo-video-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dispo-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: transform 0.2s;
}

.dispo-video-play:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.dispo-video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}

.dispo-video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ── Repair budget table ── */
.dispo-budget-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 16px;
}

.dispo-budget-table th {
	text-align: left;
	padding: 8px 12px;
	color: #a0aec0;
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-bottom: 2px solid #e2e8f0;
}

.dispo-budget-table td {
	padding: 8px 12px;
	border-bottom: 1px solid #e2e8f0;
	color: #1a202c;
	font-size: 0.9rem;
}

.dispo-budget-table tfoot td {
	font-weight: 700;
	border-top: 2px solid #e2e8f0;
	color: var(--dispo-accent, #e94560);
}

/* ── Offer section ── */
.dispo-offer-section {
	margin: 48px 0;
	padding-top: 48px;
	border-top: 1px solid #e2e8f0;
	max-width: 700px;
}

.dispo-sold-note {
	color: #718096;
	margin-bottom: 20px;
}

.dispo-metrics-bar {
	display: flex;
	gap: 24px;
	background: #f7f8fa;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 16px 20px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.dispo-metric {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dispo-metric-label {
	font-size: 0.75rem;
	color: #a0aec0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.dispo-metric-value {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a202c;
}

.dispo-contact-cta {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e2e8f0;
}

.dispo-contact-cta span {
	display: block;
	color: #a0aec0;
	font-size: 0.85rem;
	margin-bottom: 4px;
}

.dispo-contact-cta a {
	color: var(--dispo-accent, #e94560);
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
}

/* ── Lightbox (for gallery pop-out) ── */
.dispo-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.92);
	z-index: 99999;
	cursor: pointer;
	justify-content: center;
	align-items: center;
}

.dispo-lightbox img {
	max-width: 90vw;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 8px;
}

/* ── Floating mobile CTA ── */
.dispo-floating-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: #ffffff;
	border-top: 1px solid #e2e8f0;
	padding: 12px 16px;
	padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
	gap: 12px;
	box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

.dispo-floating-cta .dispo-btn-primary,
.dispo-floating-cta .dispo-btn-outline {
	flex: 1;
	padding: 12px;
	font-size: 0.9rem;
	text-align: center;
	text-decoration: none;
}

/* ── Property Detail Responsive ── */
@media (max-width: 900px) {
	.dispo-hero-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.dispo-access-section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.dispo-tab-btn {
		padding: 12px 16px;
		font-size: 0.95rem;
	}
}

@media (max-width: 768px) {
	.dispo-floating-cta {
		display: flex;
	}

	.dispo-property-detail {
		padding-bottom: 80px;
	}

	.dispo-hero-street {
		font-size: 1.5rem;
	}

	.dispo-hero-stats-grid {
		grid-template-columns: 1fr;
	}

	.dispo-hero-actions {
		flex-direction: column;
	}

	.dispo-hero-actions .dispo-btn-primary {
		width: 100%;
		text-align: center;
	}
}

/* ══════════════════════════════════════════
   Static Pages (About, Contact, FAQ, Privacy)
   Tighter typography to match property detail
   ══════════════════════════════════════════ */

.dispo-page {
	font-size: 0.95rem;
	line-height: 1.6;
}

.dispo-page h1 {
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.dispo-page h2 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.dispo-page h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.dispo-page > p,
.dispo-page .has-text-secondary-color {
	font-size: 0.95rem;
}

.dispo-page .wp-block-separator {
	margin: 20px 0;
	opacity: 1;
}

.dispo-page .wp-block-columns {
	gap: 32px;
}

/* Contact card */
.dispo-contact-card h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.dispo-contact-card p {
	margin-bottom: 12px;
	line-height: 1.5;
}

.dispo-contact-card strong {
	color: var(--wp--preset--color--accent, #e94560);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   FAQ Accordion
   ══════════════════════════════════════════ */

.dispo-faq-item {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	margin-bottom: 8px;
	overflow: hidden;
}

.dispo-faq-question {
	width: 100%;
	padding: 16px 20px;
	background: #f7f8fa;
	border: none;
	color: #1a202c;
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: inherit;
}

.dispo-faq-question:hover {
	background: #edf2f7;
}

.dispo-faq-question::after {
	content: '+';
	font-size: 1.25rem;
	color: var(--dispo-accent, #e94560);
	transition: transform 0.2s;
}

.dispo-faq-item.open .dispo-faq-question::after {
	content: '−';
}

.dispo-faq-answer {
	display: none;
	padding: 16px 20px;
	color: #4a5568;
	line-height: 1.7;
}

.dispo-faq-item.open .dispo-faq-answer {
	display: block;
}

/* ══════════════════════════════════════════
   About Page
   ══════════════════════════════════════════ */

.dispo-about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 40px 0;
}

.dispo-about-stat {
	text-align: center;
	padding: 24px;
	background: #f7f8fa;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
}

.dispo-about-stat-value {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--dispo-accent, #e94560);
	line-height: 1;
}

.dispo-about-stat-label {
	font-size: 0.9rem;
	color: #a0aec0;
	margin-top: 8px;
}

@media (max-width: 600px) {
	.dispo-about-stats {
		grid-template-columns: 1fr;
	}
}

/* ══════════════════════════════════════════
   CTA Sections
   ══════════════════════════════════════════ */

.dispo-cta-section {
	background: #f7f8fa;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 48px;
	text-align: center;
}

.dispo-cta-section h2 {
	margin-bottom: 12px;
}

.dispo-cta-section p {
	color: #4a5568;
	margin-bottom: 24px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* ══════════════════════════════════════════
   Homepage CTA
   ══════════════════════════════════════════ */

.dispo-home-cta {
	text-align: center;
}

.dispo-home-cta h2,
.dispo-home-cta p {
	max-width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center;
}

.dispo-home-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.dispo-home-cta-buttons .dispo-btn-primary {
	display: inline-flex;
	align-items: center;
	padding: 14px 32px;
	background: transparent;
	color: #ffffff;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.2s;
}

.dispo-home-cta-buttons .dispo-btn-primary:hover {
	background: rgba(255,255,255,0.1);
}

.dispo-home-cta-buttons .dispo-btn-outline {
	display: inline-flex;
	align-items: center;
	padding: 14px 32px;
	background: transparent;
	color: #ffffff;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 8px;
	transition: background 0.2s, border-color 0.2s;
}

.dispo-home-cta-buttons .dispo-btn-outline:hover {
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════
   Utility
   ══════════════════════════════════════════ */

.text-center { text-align: center; }
.text-highlight { color: var(--dispo-accent, #e94560); }
.text-success { color: #27ae60; }
.text-muted { color: #a0aec0; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
