.lrds-cot {
	--lrds-cot-gap: 24px;
	--lrds-cot-card-bg: #ffffff;
	--lrds-cot-border-color: #e6eaf0;
	--lrds-cot-border-width: 1px;
	--lrds-cot-border-radius: 12px;
	--lrds-cot-shadow-color: rgba(15, 23, 42, 0.08);
	--lrds-cot-shadow-blur: 24px;
	--lrds-cot-shadow-x: 0px;
	--lrds-cot-shadow-y: 10px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.lrds-cot__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--lrds-cot-gap);
	width: 100%;
	padding: 20px 0;
}

.lrds-cot-card {
	display: block;
	flex: 0 0 calc((100% - (var(--lrds-cot-gap) * 4)) / 5);
	width: calc((100% - (var(--lrds-cot-gap) * 4)) / 5);
	max-width: 100%;
	text-decoration: none;
	outline: none;
}

.lrds-cot-card__inner {
	display: block;
	border-radius: var(--lrds-cot-border-radius);
	border: var(--lrds-cot-border-width) solid var(--lrds-cot-border-color);
	box-shadow: var(--lrds-cot-shadow-x) var(--lrds-cot-shadow-y) var(--lrds-cot-shadow-blur) var(--lrds-cot-shadow-color);
	overflow: hidden;
	background: var(--lrds-cot-card-bg);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lrds-cot-cover {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.25s ease, filter 0.25s ease;
}

.lrds-cot-card:hover .lrds-cot-cover,
.lrds-cot-card:focus-visible .lrds-cot-cover {
	transform: scale(1.05);
}

.lrds-cot--effect-none .lrds-cot-card:hover .lrds-cot-cover,
.lrds-cot--effect-none .lrds-cot-card:focus-visible .lrds-cot-cover {
	transform: none;
	filter: none;
}

.lrds-cot--effect-vivid .lrds-cot-card:hover .lrds-cot-cover,
.lrds-cot--effect-vivid .lrds-cot-card:focus-visible .lrds-cot-cover {
	filter: saturate(1.4) contrast(1.05);
}

.lrds-cot--effect-darken .lrds-cot-card:hover .lrds-cot-cover,
.lrds-cot--effect-darken .lrds-cot-card:focus-visible .lrds-cot-cover {
	filter: brightness(0.92) contrast(1.06);
}

.lrds-cot--effect-grayscale .lrds-cot-cover {
	filter: grayscale(0.2);
}

.lrds-cot--effect-grayscale .lrds-cot-card:hover .lrds-cot-cover,
.lrds-cot--effect-grayscale .lrds-cot-card:focus-visible .lrds-cot-cover {
	filter: grayscale(1);
}

.lrds-cot--effect-hue .lrds-cot-card:hover .lrds-cot-cover,
.lrds-cot--effect-hue .lrds-cot-card:focus-visible .lrds-cot-cover {
	filter: hue-rotate(20deg) saturate(1.3);
}

.lrds-cot--effect-sepia .lrds-cot-card:hover .lrds-cot-cover,
.lrds-cot--effect-sepia .lrds-cot-card:focus-visible .lrds-cot-cover {
	filter: sepia(0.35) contrast(1.1) saturate(1.2);
}

.lrds-cot--effect-lift .lrds-cot-card:hover .lrds-cot-card__inner,
.lrds-cot--effect-lift .lrds-cot-card:focus-visible .lrds-cot-card__inner {
	transform: translateY(-4px);
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.lrds-cot--effect-lift .lrds-cot-card:hover .lrds-cot-cover,
.lrds-cot--effect-lift .lrds-cot-card:focus-visible .lrds-cot-cover {
	filter: brightness(1.05) contrast(1.05);
}

@media (max-width: 1024px) {
	.lrds-cot-card {
		flex: 0 0 calc((100% - (var(--lrds-cot-gap) * 2)) / 3);
		width: calc((100% - (var(--lrds-cot-gap) * 2)) / 3);
	}
}

@media (max-width: 767px) {
	.lrds-cot__grid {
		padding: 20px 16px;
	}

	.lrds-cot-card {
		flex: 0 0 calc((100% - var(--lrds-cot-gap)) / 2);
		width: calc((100% - var(--lrds-cot-gap)) / 2);
		max-width: none;
	}
}

@media (max-width: 480px) {
	.lrds-cot__grid {
		padding: 20px 20px;
	}
}
