.example-picker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 24px;
    color: #718079;
    font-size: 13px;
}

.required-mark {
    color: #a23d3d;
}

.example-picker select {
    max-width: 240px;
    padding: 6px 30px 6px 9px;
    border: 1px solid #d4ddd8;
    border-radius: 7px;
    background: #fff;
    color: #365b4d;
    font: inherit;
}

.link-button {
    padding: 4px;
    border: 0;
    background: transparent;
    color: #416c5c;
    font-size: 13px;
}

.link-button:hover {
    background: transparent;
    color: #294b3e;
    text-decoration: underline;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-table {
    width: 100%;
    align-self: start;
    overflow: hidden;
    border: 1px solid #dce3df;
    border-collapse: separate;
    border-radius: 11px;
    border-spacing: 0;
    background: #fff;
}

.form-table caption {
    padding: 19px 20px;
    border-bottom: 1px solid #e3e8e5;
    color: #24312c;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.form-table th,
.form-table td {
    display: block;
    width: 100%;
    border: 0;
    text-align: left;
    vertical-align: top;
}

.form-table th {
    padding: 16px 20px 7px;
    background: transparent;
    font-size: 14px;
}

.form-table td {
    padding: 0 20px 16px;
}

.form-table tr + tr th {
    border-top: 1px solid #edf0ee;
}

.form-table tfoot td {
    padding: 4px 20px 20px;
}

input,
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5d0;
    border-radius: 7px;
    background: #fff;
    color: #24312c;
    font: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus,
textarea:focus {
    border-color: #759b8c;
    box-shadow: 0 0 0 3px rgb(117 155 140 / 14%);
    outline: 0;
}

input.input-error,
textarea.input-error {
    border-color: #bd5b5b;
}

input.input-error:focus,
textarea.input-error:focus {
    box-shadow: 0 0 0 3px rgb(189 91 91 / 12%);
}

input::placeholder,
textarea::placeholder {
    color: #929e99;
}

textarea {
    resize: vertical;
}

small {
    display: block;
    margin-top: 7px;
    color: #718079;
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #a23d3d;
    font-size: 13px;
}

.secondary-button {
    border-color: #c2d2cb;
    background: #edf4f0;
    color: #365b4d;
}

.secondary-button:hover {
    background: #e2ede7;
}

.article-result {
    margin-top: 9px;
    padding: 9px 11px;
    border-radius: 7px;
    background: #f3f5f4;
    color: #5f6d67;
    font-size: 13px;
}

.loaded-article summary {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    list-style: none;
}

.loaded-article summary::-webkit-details-marker {
    display: none;
}

.article-badge {
    flex: none;
    padding: 3px 7px;
    border-radius: 999px;
    background: #dcece4;
    font-size: 11px;
    font-weight: 650;
}

.article-title {
    min-width: 0;
    flex: 1;
    color: #294b3e;
    font-weight: 650;
}

.article-chevron {
    flex: none;
    font-size: 18px;
    transition: transform 0.15s;
}

.loaded-article[open] .article-chevron {
    transform: rotate(180deg);
}

.article-content {
    display: grid;
    gap: 16px;
    max-height: 420px;
    margin-top: 12px;
    padding-top: 12px;
    overflow-y: auto;
    border-top: 1px solid #dce8e1;
    color: #34443d;
    line-height: 1.55;
}

.article-content section {
    display: grid;
    gap: 7px;
}

.article-content h4,
.article-content p {
    margin: 0;
}

.article-content h4 {
    font-size: 14px;
}

.article-result.pending {
    color: #6a736f;
}

.article-result.success {
    background: #edf6f1;
    color: #326048;
}

.article-result.error {
    border: 0;
    background: #fff0f0;
    color: #8c2020;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
