.devs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.devs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17em, 1fr));
    gap: 1rem;
    justify-items: center;
}

.devs-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.dev-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    padding: 1rem;
    gap: 15px;
    --lg-br: 25px;
    width: 20rem;
    min-height: 24rem;
}

.dev-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.dev-avatar {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.dev-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dev-info {
    display: flex;
    flex: 1;
    min-width: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    gap: 1rem;
}

.dev-names {
    display: flex;
    flex-direction: column;
    line-height: 100%;
    font-weight: 500;
}

.dev-surname {
    display: flex;
    font-size: 12px;
    opacity: .6;
    overflow-wrap: break-word;
    white-space: normal;
}

.dev-name {
    display: flex;
    font-size: 18px;
    overflow-wrap: break-word;
    white-space: normal;
}

.dev-role-badge {
    padding: 7px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.dev-role {
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    font-weight: 500;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.2;
}

.dev-role::before,
.dev-role::after {
    display: flex;
    position: relative;
    color: #3B82F6;
    font-weight: 600;
    font-size: 20px;
}

.dev-role::before {
    content: '⌞';
    bottom: -3px;
}

.dev-role::after {
    content: '⌝';
    top: -3px;
}

.devs-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.devs-group-title {
    display: flex;
    justify-content: center;
    position: relative;
    font-size: 2rem;
    font-weight: 500;
}

.devs-group-title::before {
    content: '';
    position: absolute;
    width: 10%;
    height: 2px;
    background: currentColor;
    opacity: .2;
    bottom: -5px;
    border-radius: 50px;
}