/* =========================================================================
 * CCW Reading Delivery — bordered info band: header + row of pink-circle icon
 * features with thin gold dividers. Soft pink + gold, fully editable.
 * ===================================================================== */

.ccw-rdel { position: relative; width: 100%; }
.ccw-rdel__inner {
	position: relative;
	margin: 0 auto;
	padding: 30px 28px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(201, 162, 75, 0.45);
	border-radius: 16px;
}

.ccw-rdel__title {
	text-align: center;
	font-family: var(--ccw-font-body);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ccw-rose-deep);
	margin: 0 0 22px;
}

/* ---- Grid ---- */
.ccw-rdel__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

.ccw-rdel__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 8px 24px;
}

/* Thin vertical divider between items (only when enabled). */
.ccw-rdel--dividers .ccw-rdel__item + .ccw-rdel__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 1px;
	background: rgba(201, 162, 75, 0.4);
}

.ccw-rdel__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #D6246E;
	color: #fff;
	font-size: 24px;
	box-shadow: 0 8px 20px rgba(214, 36, 110, 0.32);
}
.ccw-rdel__icon svg { width: 1em; height: 1em; fill: currentColor; }
.ccw-rdel__icon i { font-size: inherit; }

.ccw-rdel__name {
	font-family: var(--ccw-font-body);
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ccw-rose-deep);
	margin: 0;
}
.ccw-rdel__desc { font-size: 0.9rem; line-height: 1.6; color: #5A4F58; margin: 0; max-width: 26ch; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.ccw-rdel__grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
	.ccw-rdel--dividers .ccw-rdel__item + .ccw-rdel__item::before { display: none; }
	.ccw-rdel--dividers .ccw-rdel__item:nth-child(even)::before {
		content: "";
		position: absolute;
		left: 0;
		top: 6px;
		bottom: 6px;
		width: 1px;
		background: rgba(201, 162, 75, 0.4);
	}
}
@media (max-width: 600px) {
	.ccw-rdel__grid { grid-template-columns: 1fr; }
	.ccw-rdel--dividers .ccw-rdel__item::before { display: none !important; }
	.ccw-rdel__desc { max-width: 36ch; }
}
