.ass-schema {
    width: 100%;
    font-family: inherit;
}

.ass-schema--empty {
    margin: 0;
}

.ass-schema--table {
    overflow-x: auto;
}

.ass-schema__table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.ass-schema__table th,
.ass-schema__table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e6e8ea;
    color: inherit;
    line-height: 1.35;
    text-align: left;
    vertical-align: middle;
}

.ass-schema__table thead th {
    background: #f5f7f5;
    color: #1f2a24;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.ass-schema__table tbody th {
    font-weight: 700;
}

.ass-schema__action {
    text-align: right;
    white-space: nowrap;
}

.ass-schema__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 6px;
    background: #0b7f31;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ass-schema__button:hover,
.ass-schema__button:focus {
    background: #096b2a;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(9, 38, 20, 0.16);
}

.ass-schema__button:focus-visible {
    outline: 2px solid #0b7f31;
    outline-offset: 3px;
}

.ass-schema--cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.ass-schema__card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border: 1px solid #e1e5e2;
    border-radius: 8px;
    background: #ffffff;
}

.ass-schema__title {
    margin: 0;
    font-size: 19px;
    line-height: 1.25;
}

.ass-schema__details {
    display: grid;
    gap: 10px;
    margin: 0;
}

.ass-schema__details div {
    display: grid;
    gap: 2px;
}

.ass-schema__details dt {
    color: #5b655f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.ass-schema__details dd {
    margin: 0;
}

.ass-schema__card .ass-schema__button {
    align-self: flex-start;
    margin-top: auto;
}

@media (max-width: 680px) {
    .ass-schema__table,
    .ass-schema__table thead,
    .ass-schema__table tbody,
    .ass-schema__table th,
    .ass-schema__table td,
    .ass-schema__table tr {
        display: block;
    }

    .ass-schema__table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .ass-schema__table tr {
        padding: 14px 0;
        border-bottom: 1px solid #e6e8ea;
    }

    .ass-schema__table th,
    .ass-schema__table td {
        padding: 5px 0;
        border-bottom: 0;
    }

    .ass-schema__table tbody th {
        margin-bottom: 6px;
        font-size: 17px;
    }

    .ass-schema__table td[data-label] {
        display: grid;
        grid-template-columns: minmax(110px, 38%) 1fr;
        gap: 10px;
    }

    .ass-schema__table td[data-label]::before {
        content: attr(data-label);
        color: #5b655f;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .ass-schema__action {
        margin-top: 8px;
        text-align: left;
        white-space: normal;
    }
}
