/* Treasures Untold - home app CSS styling (slideshow) */
.slideshow-container {
	position: relative;
	width: 232px;
	height: 232px;
	overflow: hidden;
}

.new-slide,
.featured-slide {
	position: absolute;
	width: 100%;
	opacity: 0;
	transition: opacity 2s ease-in-out;
}

.new-slide img,
.featured-slide img {
	border-radius: 20px;
	width: 100%;
	object-fit: cover;
}

.new-slide.active,
.featured-slide.active {
	opacity: 1;
}

/* Media queries for larger screens. */
@media screen and (min-width: 768px) {
	.slideshow-container {
		width: 300px;
		height: 300px;
	}
}
