.dacc {
    width: 100%;
}
.dacc__item + .dacc__item {
    margin-top: 12px;
}
.dacc__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 14px 20px;
    background-color: #f07a1e;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    line-height: 1.3;
    transition: background-color 0.2s ease;
}
.dacc__header:hover {
    filter: brightness(0.95);
}
.dacc__header-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.dacc__header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}
.dacc__header-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.dacc__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}
.dacc__inner {
    padding: 16px 20px;
}
.dacc__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dacc__doc-item {
    margin: 0;
}
.dacc__doc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    margin: 0 -10px;
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.2s ease;
}
.dacc__doc:hover {
    color: #f07a1e;
}
.dacc__doc:hover .dacc__doc-icon {
    color: inherit;
}
.dacc__doc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d84a4a;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s ease;
}
.dacc__doc-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.dacc__doc-title {
    word-break: break-word;
}
