/* Magazine widgets: normalize cover/issue image sizing across all breakpoints */
.magazine-cover-box {
	position: relative;
	width: 140px;
	height: 190px;
	overflow: hidden;
	flex-shrink: 0;
}

.magazine-mini-cover-box {
	position: relative;
	width: 100px;
	height: 150px;
	overflow: hidden;
	flex-shrink: 0;
}

.magazine-issue-box {
	position: relative;
	width: 130px;
	height: 175px;
	overflow: hidden;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.magazine-cover-box {
		width: 220px;
		height: 300px;
	}

	.magazine-issue-box {
		width: 220px;
		height: 300px;
	}
}

.magazine-mini-cover-img,
.magazine-issue-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* The magazine cover must be shown in full (not cropped), it can only shrink on mobile */
.magazine-cover-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
