.ecoexpert-docs-list {
    display: grid;
    gap: 0;
}
.ecoexpert-doc-item {
    display: grid;
    grid-template-columns: 64px 1px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    text-decoration: none !important;
    color: var(--theme-text-color, #163a68);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.ecoexpert-doc-item:first-child {
    padding-top: 6px;
}
.ecoexpert-doc-item:last-child {
    border-bottom: 0;
}
.ecoexpert-doc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    color: #d63638;
    transition: transform .2s ease;
}
.ecoexpert-doc-icon svg {
    display: block;
    width: 46px;
    height: auto;
}
.ecoexpert-doc-divider {
    width: 1px;
    min-height: 58px;
    height: 100%;
    background: rgba(0, 0, 0, .12);
}
.ecoexpert-doc-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.ecoexpert-doc-title {
    display: block;
    font-size: 1.08em;
    font-weight: 700;
    line-height: 1.3;
    color: var(--theme-palette-color-1, #005ea3);
    transition: color .2s ease;
}
.ecoexpert-doc-description {
    display: block;
    color: var(--theme-text-color, #4f5b66);
    line-height: 1.55;
}
.ecoexpert-doc-item:hover .ecoexpert-doc-title,
.ecoexpert-doc-item:focus .ecoexpert-doc-title {
    color: var(--theme-palette-color-3, #62b22f);
}
.ecoexpert-doc-item:hover .ecoexpert-doc-icon,
.ecoexpert-doc-item:focus .ecoexpert-doc-icon {
    transform: translateY(-2px);
}
@media (max-width: 689px) {
    .ecoexpert-doc-item {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        padding: 16px 0;
    }
    .ecoexpert-doc-divider {
        display: none;
    }
    .ecoexpert-doc-icon {
        width: 44px;
    }
    .ecoexpert-doc-icon svg {
        width: 40px;
    }
}
