@charset "utf-8";


.lat_toto {
	width:100%;
	display: flex;
	flex-wrap: wrap;
	margin: 5px -10px; /* 간격 상쇄용 */
}

.lat_toto > div {
	flex: 0 0 24.333%; /* 3칸으로 균등 분할 */
    align-items: center;
    display: flex;
	justify-content:center;
}

.lat_toto > div a {
	display: block;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}


.lat_toto > div img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* 모바일에서도 3칸 유지 */
@media (max-width: 768px) {
	.lat_toto > div {
		flex: 0 0 33.333%; /* 모바일에서도 3칸 유지 */
	}
	
	/* 필요하다면 패딩 조정 */
	.lat_toto > div {
		padding: 5px;
	}
	
	.lat_toto {
		margin: 0 -5px;
	}
}