:root {
    --primary: #3b5cff;
    --primary-soft: #e7eafe;
    --text-main: #111827;
    --usan-text-sub: #6b7280;
    --radius-card: 16px;
}

.home-page {
    background: #f2f2f2;
    padding-top: 24px;
    padding-bottom: 103px;
}

.home-page__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 0 16px;
}

.home-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    padding: 8px 0 0 0;
    background: #ffffff;
    overflow: hidden;
}

.home-card__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 27px 32px;
}

.home-card__title {
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: #262626;
}

.home-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-card__listing-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 20px;
    border-radius: 20px;
    border: 1px solid #E7EAFE;
    background: #F6F7FF;
}

.home-card__listing-item {
    display: flex;
    gap: 8px;
}

.home-card__listing-number {
    font-weight: 600;
    font-size: 18px;
    color: #262626;
}

.home-card__listing-name {
    font-weight: 600;
    font-size: 18px;
    color: #262626;
    padding-left: 8px;
    border-left: 1px solid #E7EAFE;
}

.home-card__addr-wrapper {
    display: flex;
    gap: 4px;
    align-items: center;
}

.home-card__addr-icon {
    width: 24px;
    height: 24px;
    mask: url("../img/24x24-home-filled.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-home-filled.svg") center/contain no-repeat;
    background-color: #0d0d0d;
}

.home-card__addr {
    font-weight: 400;
    font-size: 18px;
    color: #262626;
}

.home-card__nearby {
    height: 40px;
    font-weight: 500;
    font-size: 20px;
    color: #262626;
}

.home-card__text {
    font-weight: 400;
    font-size: 20px;
    color: #737373;
}

.home-card__img {
    width: 100px;
    height: auto;
    align-self: center;
}

.home-card__bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

#agent-section {
    border-radius: 16px;
    padding: 16px 0;
}

.nearby-agent--logout {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nearby-agent__title {
    font-weight: 600;
    font-size: 20px;
    color: #000000;
}

.nearby-agent--login {
    font-weight: 600;
    font-size: 20px;
    color: #000000;
}

.home-block__desc {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-top: 8px;
    margin-bottom: 10px;
}

.home-block__nearby {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    margin-top: 16px;
}

.nearby-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nearby-agent {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nearby-agent__item {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 16px;
    border-radius: var(--radius-card);
    background-color: #ffffff;
}

.nearby-agent__left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 79px;
}

.nearby-agent__name {
    font-weight: 500;
    font-size: 20px;
    color: #0d0d0d;
}

.nearby-agent__address-wrapper {
    display: flex;
    gap: 8px;
}

.nearby-agent__address {
    font-weight: 400;
    font-size: 16px;
    color: #595959;
}

.nearby-agent__expand-btn {
    width: 20px;
    height: 20px;
    mask: url("../img/24x24-expand.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-expand.svg") center/contain no-repeat;
    background-color: #8c8c8c;
}

.nearby-agent__hr {
    border-top: 1px dashed #d9d9d9;
}

.nearby-agent__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.nearby-agent__empty-text {
    font-size: 14px;
    color: #8c8c8c;
    text-align: center;
}

.nearby-agent__more-wrapper {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    height: 60px;
    cursor: pointer;
}

.nearby-agent__more-btn {
    width: 20px;
    height: 20px;
    mask: url("../img/24x24-expand.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-expand.svg") center/contain no-repeat;
    background-color: #262626;
}

.nearby-agent__more-text {
    font-weight: 500;
    font-size: 16px;
    color: #262626;
}

.nearby-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.nearby-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(242, 242, 242, 0.6);
    backdrop-filter: blur(2px);
    border-radius: var(--radius-card);
}

.dot-indicator {
    display: flex;
    justify-content: center;
    align-self: center;
    gap: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d9d9d9;
    cursor: pointer;
}

.dot.is-active {
    background: #505050;
}

.tip-bubble {
    position: relative;
    z-index: 3;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    text-align: center;
    width: 90%;
}

.tip-bubble__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 29px;
}