.tf-section {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tf-category {
    margin-bottom: 40px;
}

.tf-category-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.tf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.tf-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.tf-card:hover {
    background: white;
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tf-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e2e8f0;
    flex-shrink: 0;
    
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 12px;
}

.tf-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.admin-mode .tf-photo:hover::after {
    content: '변경';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.tf-info {
    flex: 1;
}

.tf-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1e293b;
   
}


.tf-dept {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 2px;
    
    font-weight: bold;
}

.tf-role {
    font-size: 13px;
    color: #94a3b8;
   
    word-break: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.tf-contact {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
