/* Profiles Section Block Styles */
.profiles-section {
    padding-top: clamp(20px, 3vw, 34px);
    padding-bottom: clamp(20px, 3vw, 34px);
    position: relative;
    min-height: auto;
}

.profiles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    box-sizing: border-box;
}

/* Profile Item */
.profile-item {
    display: flex;
    flex-direction: column;
}

/* Profile Header */
.profile-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Headshot */
.profile-headshot {
    width: 136px;
    max-width: 136px;
    height: auto;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.profile-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Preview Placeholder */
.profile-preview {
    opacity: 0.7;
}

.profile-headshot-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-headshot-placeholder::before {
    content: "👤";
    font-size: 48px;
    opacity: 0.5;
}

/* Profile Info */
.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Name */
.profile-name {
    color: #FFFFFF;
    font-family: Lexend, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
}

/* Title/Profession */
.profile-title {
    color: #2ECC71;
    font-family: Lexend, sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* Biography Wrapper */
.profile-biography-wrapper {
    margin-top: 5px;
}

/* Biography Content */
.profile-biography {
    position: relative;
}

.biography-content {
    color: #FFFFFF;
    font-family: Lexend, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

.biography-content p {
    margin: 0 0 16px 0;
}

.biography-content p:last-child {
    margin-bottom: 0;
}

/* Empty State */
.profiles-empty-state {
    padding: 60px 20px;
    text-align: center;
    min-height: 200px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin: 20px 0;
}

.profiles-empty-text {
    color: #FFFFFF !important;
    font-family: Lexend, sans-serif;
    font-size: 24px !important;
    font-weight: 600 !important;
    margin: 0 0 15px 0 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profiles-empty-hint {
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: Lexend, sans-serif;
    font-size: 16px !important;
    font-weight: 400 !important;
    margin: 0 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .profiles-container {
        padding: 0 40px;
        gap: 50px;
    }
    
    .profile-headshot {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .profiles-section {
        padding: 60px 0;
    }
    
    .profiles-container {
        padding: 0 30px;
        gap: 40px;
    }
    
    .profile-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .profile-headshot {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-title {
        font-size: 16px;
    }
    
    .biography-content {
        font-size: 14px;
    }
}

