.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.card {
    flex-basis: 49%;
    max-width: 700px;
}

.card__image {
    border-radius: 15px 15px 0 0;
    vertical-align: middle;
    width: 100%;
    height: auto;
}

.card-body__title {
    font-size: 24px;
}

.card__card-body {
    border: #666666 solid 1px;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 15px;
    background-color: #292B34;
    color: white;
}

.card-body__content {
    /*margin-top: 5px;*/
}

.fields {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
}

.field__name {
    /*flex: 0 0 35%;*/
    /*max-width: 35%;*/
    color: #66ffff;
    font-weight: 600;
}

.field__value, .field__value a {
    /*flex: 0 0 60%;*/
    /*max-width: 60%;*/
    color: white;
}

.content__url a {
    color: #66ffff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.content__url a:hover {
    color: #4dbdbd;
}

.spoiler-custom {
    margin-top: 8px;
}

.spoiler-custom__title {
    user-select: none;
    cursor: pointer;
    font-weight: 600;
}

.spoiler-custom__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.table-custom {
    border-collapse: collapse;
    border: none;
    border-radius: 0 0 10px 10px;

    table-layout: fixed;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    /*margin-top: 5px;*/
}

.table-custom thead {
    /*background-color: #BA2720;*/
    background-color: #9f251f;
}

.table-custom thead tr {
    box-sizing: border-box;
    border-top: 0.5px solid #353848;
}

.table-custom thead tr th {
    border-bottom: none;
    text-align: left;
}

.table-custom thead tr th:last-child {
    text-align: right;
    padding-right: 15px;
}

.table-custom thead tr th:first-child {
    padding-left: 15px;
    width: 40%;
}

.table-custom tbody {
    background-color: #353848;
}

.table-custom tbody tr {
    box-sizing: border-box;
}

.table-custom tbody tr td div.crop {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table-custom tbody tr td a {
    color: white;
}

.table-custom tbody td:first-child {
    padding-left: 15px;
    border-left: none;
}

.table-custom tbody tr td:last-child {
    text-align: right;
    padding-right: 15px;
}

.table-custom thead th:nth-child(2) {
    width: 30%;
}

.spoiler-custom__title {
    border-radius: 7px;
    text-align: center;
    line-height: 28px;
    text-decoration: none;
    color: white;
    background-color: #BA2720;
    transition: 0.2s;
}

@media (max-width: 876px) {
    .card {
        flex-basis: 100%;
        max-width: 100%;
    }
}
