.agent-card-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    margin-bottom: 22px;
}

.agent-profile-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.agent-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 28px;
}

.agent-detail-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

@media (max-width: 900px) {
    .agent-detail-grid {
        grid-template-columns: 1fr;
    }

    .agent-card-photo {
        height: 260px;
    }
}


.agent-profile-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .agent-profile-photo {
        height: 320px;
    }
}
