.max-width-theme.docs {margin-bottom: 0;}
.docs .heading {text-align: center;}
.docs_wrapper {flex-wrap: wrap;gap: 10px 0;justify-content: space-between;}
.docs_wrapper > div {flex-basis: 49%;border: 1px solid #D7E6F2;border-radius: 14px;padding: 20px;gap: 10px;display: grid;grid-template-columns: 64px auto;column-gap: 16px;}
.docs_wrapper > div a:hover {/*text-shadow: var(--light-blue-color) 1px 0 10px;*/text-decoration: underline;}
.docs_wrapper .img_wrapper {background-color: #ffffff;border-radius: 10px;width: 64px;height: 64px;display: flex;justify-content: center;align-items: center;}
.docs_wrapper .img_wrapper img {height: 32px;max-width: unset;}
.docs_wrapper .text_wrapper {justify-content: space-between;}
.docs_wrapper .text_wrapper a {color: var(--gray-color);}
.docs_wrapper .text_wrapper > div:last-child {font-size: 12px;color: var(--text-color);}
@media (max-width: 900px) {
    .docs_wrapper .img_wrapper {width: 48px;height: 48px;}
    .docs_wrapper .text_wrapper {font-size: 13px;gap: 12px;}
    .docs_wrapper .img_wrapper img{height:28px;}
    .docs_wrapper > div{grid-template-columns: 48px auto;}
}
@media (max-width: 520px) {
    .docs_wrapper {flex-direction: column;}
    .docs_wrapper .img_wrapper {padding: 6px;width: 32px;height: 32px;}
    .docs_wrapper .img_wrapper img{height:18px;}
    .docs_wrapper .text_wrapper {font-size: 12px;gap: 12px;}
    .docs_wrapper > div{grid-template-columns: 32px auto;column-gap: 16px;max-width: 100%;}
    .docs_wrapper .text_wrapper a{word-break:break-word;}
}
