.top-auctioneer-link {
    font-size: 1rem;
    font-weight: normal;
    color: var(--az-link-primary-color);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    outline: none;
    -webkit-text-decoration: underline 2px rgba(0, 0, 0, 0);
    text-decoration: underline 2px rgba(0, 0, 0, 0);
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.top-auctioneer-link:hover {
    color: var(--az-link-primary-hover-color);
    -webkit-text-decoration-color: var(--az-link-primary-hover-underline);
    text-decoration-color: var(--az-link-primary-hover-underline);
}

.top-auctioneer-link:focus {
    color: var(--az-link-primary-focus-color);
    -webkit-text-decoration-color: var(--az-link-primary-focus-underline);
    text-decoration-color: var(--az-link-primary-focus-underline);
}

.top-auctioneer-wrapper {
    width: 100%;
    max-width: 900px;
}

.top-auctioneer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.top-auctioneer__photo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(25% - 12px);
    flex: 0 0 calc(25% - 12px);
}

.top-auctioneer__photo-link {
    min-width: 120px;
    height: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    background-color: var(--az-body-bg);
    border: 1px solid var(--az-border-color);
    border-top: 3px solid var(--az-primary) !important;
    border-radius: 0.25rem !important;
    cursor: pointer;
}

.top-auctioneer__photo-link:focus-visible {
    outline-color: var(--az-primary);
    outline-style: solid;
    outline-width: 3px;
    outline-offset: -2px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.top-auctioneer__photo--img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.top-auctioneer__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.top-auctioneer__body--city,
.top-auctioneer__body--phone {
    font-size: 1rem !important;
    font-weight: normal !important;
    line-height: normal !important;
}

.top-auctioneer__body--links {
    list-style-type: none;
    margin: 1rem 0 0 0;
    padding: 0;
}

@media only screen and (max-width: 1199px) {
    .top-auctioneer__photo--img {
        height: 130px;
    }
}

@media only screen and (max-width: 991px) {
    .top-auctioneer__photo {
        padding: 0.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .top-auctioneer {
        gap: 0.625rem;
    }

    .top-auctioneer__body--company,
    .top-auctioneer__body--auctioneer-name {
        font-size: 1.125rem !important;
    }

    .top-auctioneer__body--links {
        margin-top: 0.25rem;
    }
}

@media only screen and (max-width: 350px) {
    .top-auctioneer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
    .top-auctioneer__photo {
        margin: 0 auto;
        width: 240px;
        height: 240px;
    }

    .top-auctioneer__photo--img {
        max-height: calc(240px - 1rem);
    }
}