.unit-title {
    color: var(--Preto, #000);
    font-family: Poppins;
    font-size: 51px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; 
}

.unit-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.unit-link:hover {
    text-decoration: none;
    color: inherit;
}

.unit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.unit-line {
    min-height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
    cursor: pointer;
    height: 80px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.unit-line:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.unit-bar {
    width: 5px;
    height: 100%;
    margin-right: 12px;
    flex-shrink: 0;
}

.unit-info {
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.unit-name {
   color: var(--Cinza-default, #49454F);
   font-family: Poppins;
   font-size: 18px;
   font-style: normal;
   font-weight: 500;
   line-height: normal;
}

.unit-endereco {
   color: var(--Cinza-default, #49454F);
   font-family: Poppins;
   font-size: 12px;
   font-style: normal;
   font-weight: 300;
   line-height: normal;
   text-transform: uppercase;
}

.unit-arrow {
    font-size: 20px;
    color: #ccc;
    margin-left: 12px;
    align-self: center;
}

.no-units-message {
    text-align: center;
    padding: 40px;
    color: #666;
    font-family: Poppins;
    font-size: 16px;
} 