div.main > h2 {
    display: none;
}

.SAuthorListBox {
    display: none;
}

div.Csheet {
    --card-bg: #eeede1;
    --card-edge: #d8d4be;
    --table-bg: #f7f6ee;
    --line: #d5d2bf;
    --label-bg: #eceadb;
    --title: #2b2a22;
    --link: #0d5f96;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
    width: calc(100% + 14rem);
    max-width: 62rem;
    margin-right: -14rem;
    gap: 1rem;
    margin-top: 0.5rem;
}

div.Ccolumn {
    display: flex;
    min-width: 0;
    margin: 0;
    flex-direction: column;
    gap: 1rem;
}

div.Csection {
    background: var(--card-bg);
    border: 1px solid var(--card-edge);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(31, 30, 23, 0.08);
    padding: 0.45rem 0.45rem 0.7rem;
    margin-bottom: 0;
}

div.Csection > h1 {
    color: var(--title);
    font-weight: 800;
    font-size: 1.65rem;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(43, 42, 34, 0.18);
    letter-spacing: 0.01em;
}

div.Cgroup {
    margin-top: 0.25rem;
}

div.Cgroup > h2 {
    font-weight: 700;
    font-size: 1.1em;
    margin: 0;
    padding-top: 0.35rem;
}

div.Cgroup > table {
    background: var(--table-bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    border-collapse: separate;
    border-spacing: 0;
    width: max-content;
    min-width: 100%;
    font-size: 95%;
}

div.Cgroup > table td {
    border: 1px solid var(--line);
    padding: 0.25rem 0.42rem;
    vertical-align: middle;
}

div.Cgroup > table td:first-child {
    width: 6.75em;
    white-space: normal;
    line-height: 1.15;
    background: var(--label-bg);
    color: #1f1f19;
    font-weight: 600;
}

div.Cgroup > table td:nth-child(2) {
    width: 100%;
    white-space: nowrap;
}

div.Cgroup > table td:nth-child(2) a {
    color: var(--link);
    font-weight: 600;
    font-size: 0.93rem;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.12em;
    white-space: nowrap;
    display: block;
    line-height: 1.35;
    transition: color 120ms ease-in-out;
}

div.Cgroup > table td:nth-child(2) a:hover {
    color: #083e63;
}


div.Cgroup > table tr:nth-child(even) {
    background: #faf9f2;
}

@media (max-width: 900px) {
    div.Csheet {
        grid-template-columns: minmax(0, 1fr);
    }
}
