/* ===== Reset ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== Page ===== */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(circle at top, #14183a, #0b0e1d 70%);
    color: #ffffff;
    padding: 40px;
}

/* ===== Headings ===== */
h1 {
    font-size: 32px;
    margin-bottom: 30px;
}

/* ===== Section Titles ===== */
.section-title {
    margin: 40px 0 20px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 22px;
    font-weight: 600;
    color: inherit;
    text-decoration: none;

    padding-left: 12px;
    border-left: 4px solid #6f7dff;
}

.section-link:hover:not(.static) {
    text-decoration: underline;
    cursor: pointer;
}

.section-link.static {
    cursor: default;
}

/* ===== Grid ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

/* ===== Cards ===== */
.card {
    background: linear-gradient(145deg, #1c2144, #12152d);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.55);
}

.card.clickable {
    cursor: pointer;
}

.card.clickable:hover {
    box-shadow: 0 0 0 2px rgba(120,140,255,0.5),
                0 18px 36px rgba(0,0,0,0.7);
}

/* ===== Card Content ===== */
.name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    background: #2d3370;
    color: #ffffff;
    text-decoration: none;
}
