#explore {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 50px;
	gap: 150px;
}

.explore__type {
    
}

.explore__title {
    font-size: 50px;
}

.explore__list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 30px;
    width: fit-content;
}

.explore__item {
    display: flex;
    flex-direction: column;

    background-color: #111;
    border-radius: 15px;
    overflow: hidden;

    width: 150px;
    cursor: pointer;
}

.explore__item__cover {

}

.explore__item__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 70px;
    box-sizing: border-box;
}

.explore__item__name {
    margin: 0;
}

@media only screen and (max-width: 1200px) {
	#explore {
		flex-direction: column;
	}
}
