/**
 * OBL leather-style table — frontend.
 */

.my-obl-lst {
	--my-obl-logo-color: #b12f33;
	margin: 0 auto 40px;
}

.my-obl-lst__inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 15px;
}

.my-obl-lst__intro {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 30px;
}

.my-obl-lst__intro-title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	color: #111111;
}

.my-obl-lst__intro-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #333333;
}

.my-obl-lst__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.my-obl-lst-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 24px 18px 20px;
	background: #f4f4f4;
	border-radius: 4px;
	box-sizing: border-box;
}

.my-obl-lst-card__code {
	margin: 0 0 6px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #666666;
}

.my-obl-lst-card__title {
	margin: 0;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	color: #111111;
}

.my-obl-lst-card__divider {
	width: 100%;
	max-width: 150px;
	height: 1px;
	margin: 14px auto 16px;
	background: rgba(17, 17, 17, 0.18);
}

.my-obl-lst-card__desc {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.7;
	color: #333333;
}

.my-obl-lst-card__specs {
	display: grid;
	gap: 8px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.my-obl-lst-card__spec {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.my-obl-lst-card__spec-label {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #111111;
}

.my-obl-lst-dots {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.my-obl-lst-dot {
	display: inline-block;
	width: 11px;
	height: 11px;
	padding: 0;
	border: 1.5px solid var(--my-obl-lst-dot, #b12f33);
	border-radius: 50%;
	background: transparent;
	box-sizing: border-box;
	vertical-align: middle;
}

.my-obl-lst-dot.is-on {
	background: var(--my-obl-lst-dot, #b12f33);
}

.my-obl-lst-card__photos {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: auto;
}

.my-obl-lst-card__photos--single {
	grid-template-columns: minmax(0, 1fr);
}

.my-obl-lst-card__photo {
	margin: 0;
	overflow: hidden;
	border-radius: 4px;
	background: #ffffff;
}

.my-obl-lst-card__photo img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

@media (max-width: 849px) {
	.my-obl-lst__intro-title {
		font-size: 18px;
	}

	.my-obl-lst__intro-text {
		font-size: 14px;
	}

	.my-obl-lst__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.my-obl-lst-card {
		padding: 16px 10px 14px;
	}

	.my-obl-lst-card__title {
		font-size: 16px;
	}

	.my-obl-lst-card__divider {
		margin: 10px auto 12px;
	}

	.my-obl-lst-card__desc {
		margin-bottom: 12px;
		font-size: 12px;
		line-height: 1.6;
	}

	.my-obl-lst-card__specs {
		margin-bottom: 12px;
		gap: 6px;
	}

	.my-obl-lst-card__spec-label {
		font-size: 12px;
	}

	.my-obl-lst-dot {
		width: 9px;
		height: 9px;
	}

	.my-obl-lst-card__photos {
		gap: 6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.my-obl-lst-card * {
		transition: none;
	}
}
