.makler-page {
    padding: 2rem 0 4rem;
}
.makler-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}
.makler-avatar {
    flex-shrink: 0;
}
.makler-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.makler-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
}
.makler-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}
.makler-location {
    color: #666;
    margin: 0.5rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.makler-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}
.makler-section {
    margin-bottom: 2rem;
}
.makler-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.makler-description {
    color: #444;
    line-height: 1.6;
    white-space: pre-wrap;
}

.makler-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.makler-listing-card {
    display: block;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s;
}
.makler-listing-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.makler-listing-img {
    aspect-ratio: 4/3;
    background: #f3f3f3;
}
.makler-listing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.makler-listing-noimg {
    width: 100%;
    height: 100%;
    background: #eee;
}
.makler-listing-body {
    padding: 0.75rem;
}
.makler-listing-body h3 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.makler-listing-meta {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 0.4rem;
}
.makler-listing-price {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.makler-contact-box {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.25rem;
    position: sticky;
    top: 1rem;
}
.makler-contact-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem;
}
.makler-contact-item {
    margin: 0 0 1rem;
    font-size: 0.9rem;
}
.makler-contact-item strong {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.makler-contact-item a {
    color: #e2001a;
    text-decoration: none;
    word-break: break-word;
}

@media (max-width: 768px) {
    .makler-grid {
        grid-template-columns: 1fr;
    }
    .makler-contact-box {
        position: static;
    }
}
.contact-owner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.contact-owner-avatar {
    flex-shrink: 0;
}
.contact-owner-avatar img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}
.contact-owner-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}
.contact-owner-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.contact-owner-name {
    font-weight: 700;
    color: #111;
    text-decoration: none;
    font-size: 1rem;
}
a.contact-owner-name:hover {
    color: #e2001a;
}
.contact-owner-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    font-weight: 600;
}
