.single__nav {
margin-block: 100px;
font-size: 20px;
display: flex;
justify-content: space-between;
text-decoration: underline;
text-underline-offset: 4px;
}
.single__featured {
margin-block-end: 20px;
}
.single__featured img {
width: 100%;
}
.single__related-title {
margin-block-start: 80px;
}
.single__related-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-block-end: 150px;
}
@media only screen and (max-width: 600px) {
.single__related-grid {
grid-template-columns: 1fr;
}
}