@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f6f7fb;
    color: black;
    line-height: 1.6;
}

.subtitle
{
    font-weight: normal;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}

header {
    position: sticky;
}

/* layout */
.section-title { 
    font-size: 22px; 
    font-weight: 700; 
    margin: 32px;
}

.section-title--spaced { 
    margin-top: 24px; 
}

.muted { color: #777; }

/* profile */
.profile { 
    text-align: center; 
    width: 60%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
}

.profile-avatar {
  width: 150px; 
  height: 150px; 
  border-radius: 100px;
  display: block; 
  margin: 25px auto 8px; 
  object-fit: cover;
}

.profile-name { 
    font-size: 28px; 
    margin: 8px 0; 
}

.profile-business { 
    padding: 0 25px; 
}

.profile-description { 
    margin: 0 auto 8px; 
    text-wrap: balance;
    line-height: 1.4; 
}

.chip {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    padding: 6px 10px; 
    font-size: 16px; 
    border-radius: 999px;
    margin: 4px auto 0; 
    margin-bottom: 1rem;
    border: 1.8px solid #FF5900; 
    background: transparent; 
    color: #FF5900;
    font-family: 'Outfit', sans-serif;
}

.map-card {
    height: 400px; 
    border-radius: 16px; 
    overflow: hidden; 
    margin-top: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.map-card-iframe { 
    width: 100%; 
    height: 100%; 
    z-index: 0;
}

.sale-title {
    font-weight: bold;
}

.breadcrumbs {
    font-size: 0.8rem;
    color: var(--vm-text-soft);
    margin-bottom: 1rem;
    max-width: 1100px; margin: 0 auto;
    margin-top: 1.5rem;
    padding-left: 1.25rem;
}

.breadcrumbs a {
    color: var(--vm-text-soft);
}    

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 0.25rem;
}

.profile-cta {
    display: inline-block; 
    padding: 12px 24px; 
    background-color: #ff6a29; 
    color: white; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 600; 
    margin: 16px 0;
    margin-top: 50px;
    transition: background-color 0.3s;
}

.sale-card {
    border-radius: 16px; 
    overflow: hidden; 
    cursor: pointer;
    width: 300px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    background: #fff; 
    transition: transform 0.2s;
}

.sale-card img{
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
    display: block;
}

.listing-sales {
    display: flex;
    justify-content: space-evenly;
    gap: 0.8rem;
    row-gap: 3rem;
    flex-wrap: wrap;
}

.sale-title{
    padding: 10px; 
    text-align: center; 
    font-weight: 600; 
    font-size: 1rem; 
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {

    .profile {
        width: 100%;
    }
}