#unhooking-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

#unhooking-content p {
    line-height: 22px;
}

.unhooking-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.unhooking-item:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.25);
}

.unhooking-item-top-columns {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.unhooking-item-top-columns > div {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 16px;
}

.unhooking-item-top-columns > div > p {
    font-size: 16px;
}

.unhooking-item-top-columns > div > p:nth-child(2n+1) {
    font-weight: bold;
}

.unhooking-item-top-columns > div > p:nth-child(4n):not(:last-child) {
    margin-bottom: 8px;
}

.unhooking-item-addresses {
    display: flex;
    flex-direction: column;
}

.unhooking-item-addresses > p {
    font-weight: bold;
    font-size: 16px;
}

.unhooking-item-addresses > div {
    display: flex;
    flex-direction: column;
}

.unhooking-item-addresses > div > p {
    font-size: 16px;
}

@media (max-width: 864px) {
/*@media (max-width: 1056px) {*/
    .unhooking-item-top-columns > div {
        grid-template-columns: 1fr;
    }

    .unhooking-item-top-columns > div > p:nth-child(4n):not(:last-child) {
        margin-bottom: initial;
    }

    .unhooking-item-top-columns > div > p:nth-child(2n):not(:last-child) {
        margin-bottom: 8px;
    }
}