﻿.inl-profile-container {
    position: relative;
    max-width: 300px;
    min-width: 250px;
    height: 160px;
    background: linear-gradient(45deg, #ffffff, #f5f5f5);
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

    .inl-profile-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

.inl-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.inl-profile-type {
    font-weight: 600;
    color: #1976D2;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.inl-profile-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.inl-profile-body {
    display: flex;
    align-items: center;
    gap: 15px;
}

.inl-profile-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.inl-profile-photo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.inl-profile-info {
    flex: 1;
}

.inl-profile-name {
    margin: 0;
    font-size: 1.2rem;
    color: #212121;
}

.inl-profile-status-text {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #757575;
}

.inl-profile-container-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

    .inl-profile-container-wrapper > * {
        flex: 1 1 300px;
        max-width: calc(33.33% - 20px);
    }

@media (max-width: 768px) {
    .inl-profile-container-wrapper {
        flex-direction: column;
        padding: 10px;
    }

        .inl-profile-container-wrapper > * {
            max-width: none;
            flex-basis: auto;
            width: 100%;
        }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .inl-profile-container-wrapper > * {
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .inl-profile-container {
        width: 100%;
        max-width: none;
        height: auto;
        padding: 15px;
    }

    .inl-profile-photo {
        width: 50px;
        height: 50px;
    }

    .inl-profile-name {
        font-size: 1.1rem;
    }
}
