.networking-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.networking-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
}

.networking-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

#searchInput {
    width: 100%;
    padding: 15px 45px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#searchInput:focus {
    outline: none;
    border-color: #9c8a7c;
    box-shadow: 0 0 10px rgba(156, 138, 124, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9c8a7c;
}

.guests-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0;
}

.guest-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    align-items: stretch;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 1px solid #f0f0f0;
}

.guest-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #e8e8e8;
}

.guest-photo {
    width: 140px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    border-right: 1px solid #f0f0f0;
}

.guest-info {
    flex: 1;
    min-width: 0;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guest-info h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.occupation {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.bio {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.view-profile {
    color: #9c8a7c;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 10px;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.guest-card:hover .view-profile {
    opacity: 1;
}

@media (max-width: 768px) {
    .networking-container {
        margin: 20px auto;
    }

    .networking-title {
        font-size: 2rem;
    }

    .guest-card {
        padding: 0;
    }

    .guest-photo {
        width: 110px;
    }

    .guest-info {
        padding: 14px 16px;
    }

    .guest-info h3 {
        font-size: 1.1rem;
    }

    .bio {
        font-size: 0.9rem;
    }
} 