
/* ==========================================================================
   Inoculant Comparison Widget — compare.css
   ========================================================================== */

/* ── GRID CONTAINER — makes the 3-column grid ───────────────────────── */
.icw-grid-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
	overflow: hidden;
}

/* ── GRID WRAP — each individual column ────────────────────────────── */
.icw-grid-wrap {
	display: flex;
	flex-direction: column;
}

/* ── COLUMN DIVIDERS — left border on cols 2 & 3, !important beats reset */
.icw-grid-wrap:not(:first-child) {
	border-left: 1px solid transparent !important;
	border-top: none !important;
	border-right: none !important;
	border-bottom: none !important;
}

.icw-grid-wrap:first-child {
	border: none !important;
}

/* ── HEADER CELL ────────────────────────────────────────────────────── */
.icw-col-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.6rem 1.4rem 1.5rem;
	box-sizing: border-box;
}

/* ── BODY CELL ──────────────────────────────────────────────────────── */
.icw-col-body {
	padding: 1.5rem 1.4rem;
	box-sizing: border-box;
	flex: 1;
}

/* ── IMAGE ──────────────────────────────────────────────────────────── */
.icw-col-image {
	display: block;
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin: 0 auto 12px;
}

/* ── PRODUCT NAME / TYPE ────────────────────────────────────────────── */
.icw-product-name {
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 700;
	line-height: 1.2;
}

.icw-product-type {
	font-size: .78rem;
	font-weight: 400;
}

/* ── BULLET LIST ────────────────────────────────────────────────────── */
.icw-bullets {
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: .55rem;
}

.icw-bullets li {
	font-size: .87rem;
	line-height: 1.5;
	list-style: none !important;
}

/* ── MOBILE ─────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
	.icw-grid-container {
		grid-template-columns: 1fr;
	}
	
	.icw-grid-wrap:not(:first-child) {
		border-left: none !important;
		border-top: 1px solid transparent !important;
	}
}
