.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}

.profile-card {
    border: 1px solid #ccc;
    border-radius: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);

    a {
        text-decoration: none;
        color: black;
    }
}

.profile-card:hover {
    border-color: var(--primary-color);
}

.profile-info-div {
    padding: 0px 10px 10px 10px;
}

.profile-info-div a {
    display: flex;
    justify-content: center;
}

.profile-info {
    margin: 0.6rem 0px;
    padding: 0;

    p {
        margin-bottom: 0;
    }
}

.profile-image {
    object-fit: cover;
    object-position: 50% 25%;
    height: 18rem !important;
    width: -webkit-fill-available;
    padding: 0.5rem;
    border-radius: 0.8rem !important;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    margin: 0 5px;
    text-decoration: none;
    color: #0073aa;
}

.pagination .current-page {
    font-weight: bold;
    margin: 0 5px;
}
