.armoury-art-page .armoury-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.armoury-art-page .armoury-item-card {
    background: #02060c;
    border: 1px solid #17304c;
    min-width: 0;
    overflow: hidden;
}

.armoury-art-page .armoury-item-art {
    aspect-ratio: 16 / 5.4;
    background: #000;
    border-bottom: 1px solid #17304c;
    overflow: hidden;
    position: relative;
}

.armoury-art-page .armoury-item-art::after {
    background: linear-gradient(to bottom, transparent 65%, rgba(0, 0, 0, 0.42));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.armoury-art-page .armoury-item-art img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.armoury-art-page .armoury-disruptors-art img {
    object-position: center 48%;
}

.armoury-art-page .armoury-enforcers-art img {
    object-position: center 43%;
}

.armoury-art-page .armoury-item-content {
    padding: 18px;
}

.armoury-art-page .armoury-item-content .item-name {
    font-size: 25px;
}

.armoury-art-page .armoury-item-stats {
    border-bottom: 1px solid #13243a;
    border-top: 1px solid #13243a;
    display: grid;
    gap: 0 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 15px 0 16px;
}

.armoury-art-page .armoury-item-stats > div {
    align-items: center;
    border-bottom: 1px solid #0d1b2d;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    min-width: 0;
    padding: 9px 0;
}

.armoury-art-page .armoury-item-stats span {
    color: #7598c7;
}

.armoury-art-page .armoury-item-stats strong {
    color: #f4f7ff;
    text-align: right;
}

.armoury-art-page .armoury-item-content .buy-row {
    grid-template-columns: minmax(100px, 1fr) auto auto;
}

.armoury-art-page .armoury-item-content .buy-row button {
    white-space: nowrap;
}

@media (max-width: 1250px) {
    .armoury-art-page .armoury-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .armoury-art-page .armoury-item-art {
        aspect-ratio: 16 / 7;
    }

    .armoury-art-page .armoury-item-stats {
        grid-template-columns: 1fr;
    }

    .armoury-art-page .armoury-item-content .buy-row {
        grid-template-columns: 1fr 1fr;
    }

    .armoury-art-page .armoury-item-content .buy-row input {
        grid-column: 1 / -1;
    }
}
