/* 
other-cpt-items.css
Styles for Section Other Items on Single page
*/

.other-cpts-items {
    padding: 6rem 0;
}

.other-cpts-items-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    margin: 2% 10%; 
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .other-cpts-items-row {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .other-cpts-items-row {
        grid-template-columns: 1fr; 
    }
}

.other-cpts-items h2 {
	text-align:center;
	margin-bottom:2rem;
}
