.keys-category {
    font-size: 25px;
    font-family: 'DM Sans';
    font-weight: 500;
    letter-spacing: -0.75px;
    margin-top: 48px;
}

.key-item {
    margin: 36px 0;
    display: flex;
    gap: 24px;
}

.key-image img {
    width: 106px;
    height: 106px;
    object-fit: cover;
    object-position: center;
    min-width: 106px;
    border-radius: 8px;
}

.key-title {
    font-family: 'DM Sans';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 10px;
}

.key-description {
    color: rgba(26, 25, 30, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; 
    margin-bottom: 10px;
}

.key-action {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media screen and (max-width: 620px) {
    .keys-category {
        text-align: center;
    }
    .key-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .key-action {
        justify-content: center;
    }
}

.copy-to-clipboard-input {
    position: absolute;
    left: -9999px;
}