/* =========================================================
   WOODCOTE TWO COLUMN FEATURES
   ========================================================= */

.wc-two-column-features {
	width: 100%;
	padding: 24px;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.wc-two-column-features.wc-block--has-background-image {
	background-color: rgba(13, 12, 62, 0.7);
	background-blend-mode: multiply;
}


/* =========================================================
   OUTER CONTAINER
   ========================================================= */

.wc-two-column-features__container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}

.wc-two-column-features--width-narrow .wc-two-column-features__container {
	max-width: 900px;
}

.wc-two-column-features--width-standard .wc-two-column-features__container {
	max-width: 1200px;
	padding-top: 12px;
}

.wc-two-column-features--width-full .wc-two-column-features__container {
	max-width: none;
}


/* =========================================================
   GRID
   ========================================================= */

.wc-two-column-features__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 24px;
}


/* =========================================================
   COLUMN PANELS
   ========================================================= */

.wc-two-column-features__column {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 40px;
	color: #1e293b;
	background-color: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
	box-sizing: border-box;
}

.wc-two-column-features__header {
	margin-bottom: 24px;
}

.wc-two-column-features__title {
	margin: 0;
	color: inherit;
}


/* =========================================================
   DIVIDERS
   ========================================================= */

.wc-two-column-features .wc-divider {
	width: 64px;
	height: 4px;
	margin-top: 18px;
	border: 0;
}

.wc-two-column-features .wc-divider--primary {
	background-color: var(--wc-primary-colour, #0d153e);
}

.wc-two-column-features .wc-divider--secondary {
	background-color: var(--wc-secondary-colour, #4bc3d6);
}

.wc-two-column-features .wc-divider--left {
	margin-right: auto;
	margin-left: 0;
}


/* =========================================================
   FEATURE LIST
   ========================================================= */

.wc-two-column-features__list {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 16px;
}

.wc-two-column-features__feature {
	padding: 18px;
	color: #334155;
	background-color: #ffffff;
	border-left: 4px solid var(--wc-secondary-colour, #4bc3d6);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
	box-sizing: border-box;
}

.wc-two-column-features__feature-heading {
	margin: 0 0 5px;
	color: var(--wc-primary-colour, #0d153e);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
}

.wc-two-column-features__feature-description {
	color: #334155;
	font-size: 14px;
	line-height: 1.6;
}

.wc-two-column-features__feature-description > :first-child {
	margin-top: 0;
}

.wc-two-column-features__feature-description > :last-child {
	margin-bottom: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media screen and (max-width: 767px) {

	.wc-two-column-features {
		padding: 16px;
	}

	.wc-two-column-features__grid {
		grid-template-columns: 1fr;
	}

	.wc-two-column-features__column {
		padding: 28px 22px;
	}

}