/**
 * Capital Coil CTA Box grid styles.
 * Responsive grid of clickable boxes: image, title, and a trailing icon.
 */

.ccc-cta-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	width: 100%;
}

.ccc-cta-box {
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	padding: 22px 26px;
	background-color: #ffffff;
	border-radius: 4px;
	text-decoration: none;
	box-sizing: border-box;
	transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ccc-cta-media {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.ccc-cta-media img {
	display: block;
	width: 64px;
	height: auto;
	max-width: 100%;
}

.ccc-cta-title {
	flex: 1 1 auto;
	min-width: 0;
	color: #1b2a6b;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	transition: color 0.25s ease;
}

.ccc-cta-icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.ccc-cta-icon svg {
	width: 16px;
	height: 16px;
	fill: #1b2a6b;
	transition: fill 0.25s ease;
}

.ccc-cta-icon i {
	font-size: 16px;
	color: #1b2a6b;
	transition: color 0.25s ease;
}
