.talent-credits {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.talent-credits-item {
    border: 1px solid #1A1A1A;
    padding: 20px;
}

.talent-credits-item .production_type {
    color: #888888;
}

.talent-credits-item .year {
    color: #888888;
}

.talent-credits-row {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
}

.talent-credits-row p {
    margin: 0;
}

.talent-credits-col {
    flex: 0 0 auto;
}

.talent-credits-col-1 {
    width: 5%;
}

.talent-credits-col-2 {
    width: 87%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 4px;
}

.talent-credits-col-3 {
    width: 8%;
}

.talent-credits-col svg {
    color: #CC9602;
}

@media screen and (max-width: 600px) {
    .talent-credits-col-1 {
        width: 15%;
    }

    .talent-credits-col-2 {
        width: 70%;
    }

    .talent-credits-col-3 {
        width: 15%;
    }
}