.people-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    padding: 20px;
}

.person-card {
    display: flex;
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    border: 2px solid #3366cc;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    gap: 15px;
}

.person-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.person-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #ff9900;
}

.person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.person-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.person-info h3 {
    color: #3366cc;
    margin: 0 0 8px 0;
    font-size: 18px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.person-info strong {
    color: #666666;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}

.person-info p {
    color: #333333;
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 12px 0;
    flex-grow: 1;
}

.person-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.person-actions button {
    background: linear-gradient(to bottom, #3366cc, #2244aa);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid #1a3366;
}

.person-actions button:hover {
    background: linear-gradient(to bottom, #4488ee, #3366cc);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}
