.loan-list-page {
    width: 100%;
}

.loan-list-heading {
    min-height: 52px;
    margin: 0 0 14px;
    padding: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 2px solid #f0c545;
}

.loan-list-heading h1 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.1;
}

.loan-list-heading__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b9c1da;
    font-size: 13px;
    font-weight: 700;
}

.loan-list-heading__actions a {
    min-width: 74px;
    padding: 8px 12px;
    border: 1px solid #45558a;
    background: #162b6f;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
}

.loan-list-heading__actions a:hover,
.loan-list-heading__actions a:focus {
    border-color: #f0c545;
    color: #f0c545;
    outline: none;
}

.loan-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.loan-card {
    min-width: 0;
    border: 1px solid #2c3866;
    background: #101b3d;
}

.loan-card__player {
    min-height: 72px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #2c3866;
    background: #162b6f;
}

.loan-card__player img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border: 1px solid #45558a;
    background: #0d1837;
}

.loan-card__player h2 {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #f0c545;
    font-size: 15px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.loan-card__player-placeholder {
    width: 52px;
    height: 52px;
    display: block;
    border: 1px solid #45558a;
    background: #0d1837;
}

.loan-card__move {
    min-height: 92px;
    padding: 11px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
    align-items: center;
    gap: 6px;
}

.loan-club {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.loan-club img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.loan-club span {
    width: 100%;
    overflow: hidden;
    color: #d7dcef;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.loan-card__arrow {
    color: #f0c545;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

.loan-list-message {
    padding: 18px;
    border: 1px solid #33457f;
    background: #101b3d;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
}

.loan-list-message--error {
    border-color: #7b3850;
    background: #35172a;
}
