.clip-tech {
    /* Cắt góc tạo cảm giác cyber */
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.border-tech {
    position: relative;
}
.border-tech::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid rgba(240, 90, 53, 0.3);
    pointer-events: none;
    transition: all 0.3s ease;
}
.border-tech:hover::before {
    border-color: rgba(240, 90, 53, 0.8);
    box-shadow: inset 0 0 20px rgba(240, 90, 53, 0.2);
}

/* Member Card Typography */
.member-name {
    font-family: "Rajdhani", system-ui, sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75rem;
    margin-bottom: 0.25rem; /* mb-1 */
}

.member-name-sm {
    font-family: "Rajdhani", system-ui, sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem; /* text-base */
    line-height: 1.5rem;
}

.member-role {
    font-family: "Inter", system-ui, sans-serif;
    color: #9ca3af; /* text-gray-400 */
    font-size: 0.75rem; /* text-xs */
    line-height: 1rem;
}

.member-role-dark {
    font-family: "Inter", system-ui, sans-serif;
    color: #6b7280; /* text-gray-500 */
    font-size: 0.75rem; /* text-xs */
    line-height: 1rem;
}


.member-name-xl {
    font-family: "Rajdhani", system-ui, sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.25rem; /* text-xl */
    line-height: 1.75rem;
    margin-bottom: 0.25rem; /* mb-1 */
}
.member-name-2xl {
    font-family: "Rajdhani", system-ui, sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.5rem; /* text-2xl */
    line-height: 2rem;
    margin-bottom: 0.25rem; /* mb-1 */
}
.dept-title {
    font-family: "Rajdhani", system-ui, sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.5rem; /* text-2xl */
    line-height: 2rem;
    text-transform: uppercase;
}


/* Card Components */
.member-card {
    background-color: #151520; /* bg-surface */
    border: 1px solid #1f2937; /* border-gray-800 */
    padding: 1.5rem; /* p-6 */
    border-radius: 0.375rem; /* rounded-md */
    text-align: center;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.member-card-row {
    background-color: #151520; /* bg-surface */
    border: 1px solid #1f2937; /* border-gray-800 */
    padding: 1rem; /* p-4 */
    border-radius: 0.375rem; /* rounded-md */
    display: flex;
    align-items: center;
    gap: 1rem; /* gap-4 */
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

