.StaffInfoContainer {
    display: grid;
    gap: 20px;
    padding: 20px 0px;
}

.StaffInfoContainer .StaffNameCard {
    display: flex;
    flex-flow: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.StaffInfoContainer .StaffNameCard .AvatarImg {
    width: 60px;
    object-fit: contain;
}

.StaffInfoContainer .StaffNameCard .Name {
    font-size: 15px;
    color: #555;
}

.StaffInfoContainer .SendYellButtonBox {
    display: flex;
    justify-content: center;
}

.StaffInfoContainer .Title {
    padding: 15px 0 0 10px;
    font-size: 17px;
    font-weight: bold;
    color: #555;
}

.StaffInfoContainer .RecentInstaList {
    display: grid;
    gap: 20px;
    padding: 0 10px;
}

.RecentInstaList {
    display: grid;
    gap: 30px;
    padding: 20px;
}

.RecentInstaList .Card {
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 0.5px solid #ccc;
    border-radius: 5px;
}

.RecentInstaList .Card .Caption {
    font-size: 13px;
    color: #555;
    font-weight: 300;
    word-break: break-all;
    white-space: pre-wrap;
}
.RecentInstaList .Card .EmptyCaption {
    font-size: 13px;
    color: #777;
    text-align: center;
}

.RecentInstaList .Card .MediaURL {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.RecentInstaList .Card .Permalink {
    text-decoration: none;
    font-size: 13px;
    justify-self: end;
}