/* Zillow-style agent profile – GlovatoReal custom version */
/* Tento soubor ponechává stránku funkční a nedělá žádné zásahy do layoutu,
   dokud nepřidáme finální styly. Slouží hlavně k odstranění chyby 404. */

.agent-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.agent-header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-header h1 {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
}

.agent-header p {
    margin: 4px 0;
}

.agent-listings {
    margin-top: 30px;
}

.agent-listings h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

.agent-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
