.personnel-detail-section {
    background: #f8f9fa;
}

.personnel-detail-card {
    background: white;
}

.personnel-detail-image-wrapper {
    position: relative;
}

.personnel-detail-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.personnel-detail-image-placeholder {
    width: 100%;
    max-width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    border-radius: 10px;
    color: #6c757d;
    font-size: 5rem;
    margin: 0 auto;
}

.personnel-detail-name {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.personnel-detail-position {
    font-size: 1.25rem;
    color: #6c757d;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: var(--primary-color, #007bff);
    font-size: 1.1rem;
}

.info-content {
    flex: 1;
}

.info-content strong {
    color: #495057;
    margin-right: 0.5rem;
}

.info-content a {
    color: var(--primary-color, #007bff);
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.description-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color, #007bff);
}

.description-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    white-space: pre-line;
}

.related-personnel-card {
    background: white;
}

.related-personnel-image-wrapper {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    background: #e9ecef;
}

.related-personnel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-personnel-image-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    border-radius: 50%;
    color: #6c757d;
    font-size: 1.5rem;
}

.related-personnel-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.related-personnel-info h6 a {
    color: #212529;
    font-weight: 600;
}

.related-personnel-info h6 a:hover {
    color: var(--primary-color, #007bff);
}

@media (max-width: 768px) {
    .personnel-detail-name {
        font-size: 1.5rem;
    }

    .personnel-detail-position {
        font-size: 1rem;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

