.hero-airbnb-logo {
    width: 200px;
    max-width: min(200px, 70vw);
    height: auto;
    display: inline-block;
    vertical-align: -0.12em;
    margin: 0.1em 0.15em;
}

@media (max-width: 639px) {
    .hero-airbnb-logo {
        width: min(200px, 55vw);
    }
}

.hero-preview-root {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-preview-root {
        max-width: 20rem;
    }
}

@media (min-width: 1024px) {
    .hero-preview-root {
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-preview-stage {
    display: grid;
}

.hero-preview-panel {
    grid-area: 1 / 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-preview-panel.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-listing-preview-image {
    height: 10.5rem;
}

@media (min-width: 640px) {
    .hero-listing-preview-image {
        height: 12rem;
    }
}

.hero-listing-preview-body {
    padding: 1rem 1.125rem;
}

@media (min-width: 640px) {
    .hero-listing-preview-body {
        padding: 1.125rem 1.25rem;
    }
}

.hero-listing-preview h3 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.hero-listing-preview .text-4xl {
    font-size: 1.75rem;
    line-height: 2rem;
}

.hero-listing-preview .text-lg {
    font-size: 0.95rem;
}

.hero-listing-preview .hero-listing-preview-body > p {
    margin-bottom: 0.875rem;
}

.hero-listing-preview .hero-listing-preview-body > div {
    margin-bottom: 0.875rem;
}

.hero-listing-preview button[type="button"].rounded-2xl {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.875rem;
}

.hero-preview-indicator {
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.hero-preview-indicator.is-active {
    background-color: rgb(249 115 22);
    color: white;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.hero-preview-indicator.is-active:hover {
    background-color: rgb(234 88 12);
}
