/* page_explore_people.css */

.explore-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.explore-header {
    margin-bottom: 20px;
}

.explore-header h2 {
    margin: 0 0 5px 0;
    color: #fff;
}

.explore-header p {
    margin: 0;
    color: #888;
    font-size: 14px;
}

/* Responsive CSS Grid: 1 column on mobile, auto-expands on larger screens */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.person-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.person-card:hover {
    border-color: #ff9900;
    transform: translateY(-2px);
}

.person-avatar-container {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
}

.person-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff9900;
}

.person-avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #2a2a2a;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #888;
}

.person-details {
    flex-grow: 1;
    width: 100%;
    margin-bottom: 15px;
}

.person-name {
    margin: 0 0 2px 0;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.person-handle {
    display: block;
    font-size: 12px;
    color: #ff9900;
    margin-bottom: 8px;
}

.person-tagline {
    font-size: 13px;
    color: #aaa;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.person-card-actions {
    width: 100%;
}

.btn-view-profile {
    width: 100%;
    padding: 8px 12px;
    background: #2a2a2a;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s ease;
}

.btn-view-profile:hover {
    background: #ff9900;
    border-color: #ff9900;
    color: #000;
}




