/* ============================================================
   DLC Department Content Boxes - v1.0.11
   Uses Bootstrap .container on outer wrapper
   Float-based layout matching live site .cta behavior exactly
   Breakpoints match corsetmaking.css custom media queries
   ============================================================ */

/* ── Section Wrapper ──────────────────────────────────────── */
.dlc-dept-cb {
	background-color: #ffffff;
	padding: 1.5em 0;
	box-sizing: border-box;
}

.dlc-dept-cb::after {
	content: "";
	display: table;
	clear: both;
}

/* ── Individual Box — 3 columns float left ────────────────── */
.dlc-dept-cb__box {
	float: left;
	width: 33.333%;
	padding: 0 15px;
	box-sizing: border-box;
	text-align: left;
	margin-bottom: 1.5em;
}

/* ── Image — fills column width ───────────────────────────── */
.dlc-dept-cb__image {
	width: 100%;
	display: block;
}

/* ── Heading ──────────────────────────────────────────────── */
.dlc-dept-cb__heading {
	font-family: "EB Garamond", Georgia, serif;
	font-style: normal;
	font-size: 16px;
	font-weight: normal;
	color: #d7b364;
	margin: 0.5em 0 0.25em;
	text-align: left;
}

.dlc-dept-cb__heading a,
.dlc-dept-cb__heading > a {
	color: #d7b364 !important;
	text-decoration: none;
}

.dlc-dept-cb__heading a:hover,
.dlc-dept-cb__heading > a:hover {
	color: #d7b364 !important;
	text-decoration: underline;
}

/* ── Description ──────────────────────────────────────────── */
.dlc-dept-cb__description {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 12px;
	color: #333333;
	width: 270px;
	max-width: 100%;
	margin-top: 10px;
	margin-bottom: 0.5em;
	line-height: 1.5;
	text-align: left;
}

/* ── Link ─────────────────────────────────────────────────── */
.dlc-dept-cb__link,
a.dlc-dept-cb__link {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 12px;
	color: #d7b364 !important;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	margin-top: 0.25em;
}

.dlc-dept-cb__link:hover,
a.dlc-dept-cb__link:hover {
	color: #d7b364 !important;
	text-decoration: underline;
}

/* ── Horizontal rule — hidden on desktop ──────────────────── */
.dlc-dept-cb__rule {
	display: none;
	clear: both;
}

/* ── 3 columns maintained down to 768px
      matching corsetmaking.css behavior for .cta ──────────── */
@media (min-width: 768px) and (max-width: 979px) {
	.dlc-dept-cb__box {
		float: left;
		width: 33.333%;
	}
}

/* ── Single column 480px to 767px ────────────────────────── */
@media (min-width: 480px) and (max-width: 767px) {
	.dlc-dept-cb__box {
		float: none;
		width: 300px;
		margin: 20px auto 0;
		padding: 0 0 20px;
		border-bottom: 1px solid #d7b364;
	}

	.dlc-dept-cb__rule {
		display: none;
	}
}

/* ── Single column below 480px ───────────────────────────── */
@media (max-width: 479px) {
	.dlc-dept-cb__box {
		float: none;
		width: 300px;
		margin: 20px auto 0;
		padding: 0 0 20px;
		border-bottom: 1px solid #d7b364;
	}

	.dlc-dept-cb__rule {
		display: none;
	}
}
