
/* ====== CREDITS ====== */

.section-guest-artists {
    padding-block: 60px;
}

.section-guest-artists h2 {
    margin-bottom: 40px;
    font-size: clamp(1.2rem, 4vw, 2.2rem);
}

.credits-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.credits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}

.credit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.credit-role {
    font-size: clamp(11px, 1.2vw, 14px);
    color: #000;
    background-color: var(--bright-orange);
    padding: 3px 10px;
    border-radius: var(--radius);
    border: 2px solid #000;
    box-shadow: var(--shadow);
    text-align: center;
    white-space: nowrap;
}

.credit-pfp {
    width: 135px;
    height: 135px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 3px solid var(--bright-orange);
    box-shadow: var(--shadow), var(--inset-shadow);
    outline: 2px solid #000;
    background-color: var(--light-orange);
}

.credit-name {
    font-family: 'NerkoOne', sans-serif;
    font-size: clamp(20px, 1.5vw, 26px);
    color: #000;
    text-align: center;
    -webkit-text-stroke: 3px #000;
    paint-order: stroke fill;
    text-shadow: var(--shadow);
    text-decoration: none;
}

.credits-guest-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    gap: 10px 40px;
    margin: 20px auto 0;
    max-width: 700px;
}

.credits-guest-list span {
    font-size: clamp(1rem, 4vw, 1.3rem);
    -webkit-text-stroke: 3px #000;
    paint-order: stroke fill;
    color: #fff;
    text-shadow: var(--shadow);
    text-align: left;
}

.guest-item a {
    text-decoration: none;
    color: #fff;
}

.guest-item a:hover {
    color: var(--light-orange);
}