@charset "utf-8";



.Pamphlets {
	
}

.Pamphlets__item {
	
}

.Pamphlets__item:not(first-child) {
	margin-top: 30px;
}

@media all and (min-width: 375px) {
	.Pamphlets {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 40px;
	}

	.Pamphlets__item {
		width: calc(50% - 20px);
	}

	.Pamphlets::before,
	.Pamphlets::after {
		display: block;
		content: "";
		width: calc(50% - 20px);
		height: 0;
		order: 2;
	}

}

@media all and (min-width: 768px) {

	.Pamphlets__item {
		width: calc(33.333% - 40px);
	}

	.Pamphlets::before,
	.Pamphlets::after {
		width: calc(33.333% - 40px);
	}

}

@media all and (min-width: 1280px) {

	.Pamphlets__item {
		width: calc(33.333% - 80px);
	}

	.Pamphlets::before,
	.Pamphlets::after {
		width: calc(33.333% - 80px);
	}

}


.Pamphlet {
	line-height: 1.5;
	font-feature-settings: "palt";
}

.Pamphlet a,
.Pamphlet .anchor {
	display: block;
	border-bottom: none;
}

.Pamphlet a[target="_blank"]::after {
	display: none;
}

.Pamphlet a > *:not(first-child)
.Pamphlet .anchor > *:not(first-child) {
	margin-top: 20px;
}

.Pamphlet__img {
	aspect-ratio: 1 / 1.414;
}

.Pamphlet__img img {
	display: block;
	width: auto;
	height: 100%;
	margin: auto;
}

a[href] .Pamphlet__img img {
	box-shadow: 0 1px 3px rgba(106,90,86,0.16), 0 1px 2px rgba(106,90,86,0.032);
	transition: box-shadow 0.2s ease;
}

a[href]:hover .Pamphlet__img img {
	box-shadow: 0 14px 28px rgba(106,90,86,0.20), 0 10px 10px rgba(106,90,86,0.17);
}

.Pamphlet__lbl {
	font-weight: bold;
	text-align: center;
}


@media all and (min-width: 768px) {

}

@media all and (min-width: 1280px) {

}