.an-doc-children {
width: 100%;
margin: 24px 0 0;
}
.an-doc-children__grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 28px 32px;
}
.an-doc-child {
min-width: 0;
}
.an-doc-child__title {
margin: 0 0 10px;
font-size: 16px;
font-weight: 500;
line-height: 1.4;
text-transform: none;
}
.an-doc-child__title a {
color: #18334c;
text-decoration: none;
}
.an-doc-child__title a:hover,
.an-doc-child__title a:focus-visible {
color: #c56300;
text-decoration: underline;
text-underline-offset: 3px;
}
.an-doc-child__summary {
margin: 0 0 12px;
color: #61758a;
font-size: 14px;
font-weight: 400;
line-height: 1.65;
}
.an-doc-child__link {
color: #c56300;
font-size: 14px;
font-weight: 500;
text-decoration: none;
text-transform: uppercase;
}
.an-doc-child__link:hover,
.an-doc-child__link:focus-visible {
text-decoration: underline;
text-underline-offset: 3px;
}
@media (max-width: 820px) {
.an-doc-children__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 560px) {
.an-doc-children {
margin-top: 18px;
}
.an-doc-children__grid {
grid-template-columns: 1fr;
gap: 22px;
}
}