/* ==========================================================
   WOODCOTE INTRO & ACTION CARDS
   ========================================================== */

.wc-intro-action-cards {
	width: 100%;
	padding: 36px 24px;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.wc-intro-action-cards.wc-block--has-background-image {
	background-color: rgba(13, 12, 62, 0.7);
	background-blend-mode: multiply;
}


/* ==========================================================
   CONTAINER WIDTH
   ========================================================== */

.wc-intro-action-cards__container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}

.wc-intro-action-cards--width-narrow .wc-intro-action-cards__container {
	width: 70%;
	max-width: 900px;
}

.wc-intro-action-cards--width-standard .wc-intro-action-cards__container {
	width: 80%;
	max-width: 1200px;
}

.wc-intro-action-cards--width-full .wc-intro-action-cards__container {
	width: 100%;
	max-width: none;
}


/* ==========================================================
   HEADING
   ========================================================== */

.wc-intro-action-cards__title {
	margin: 0;
	color: inherit;
	line-height: 1.2;
	text-wrap: balance;
}


/* ==========================================================
   DIVIDER
   ========================================================== */

.wc-intro-action-cards .wc-divider {
	width: 64px;
	height: 4px;
	margin: 26px 0 0;
	border: 0;
	border-radius: 10px;
}

.wc-intro-action-cards .wc-divider--primary {
	background-color: var(--wc-primary-colour, #0d153e);
}

.wc-intro-action-cards .wc-divider--secondary {
	background-color: var(--wc-secondary-colour, #4bc3d6);
}

.wc-intro-action-cards .wc-divider--white {
	background-color: #ffffff;
}


/* ==========================================================
   INTRO CONTENT
   ========================================================== */

.wc-intro-action-cards__intro {
	max-width: 100%;
	margin-top: 22px;
	color: inherit;
	font-size: 18px;
	line-height: 1.65;
}

.wc-intro-action-cards__intro > :first-child {
	margin-top: 0;
}

.wc-intro-action-cards__intro > :last-child {
	margin-bottom: 0;
}

.wc-intro-action-cards__intro p {
	margin-top: 0;
	margin-bottom: 20px;
}

.wc-intro-action-cards__intro a {
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}


/* ==========================================================
   ACTION CARD LIST
   ========================================================== */

.wc-intro-action-cards__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin-top: 32px;
}


/* ==========================================================
   ACTION CARD
   ========================================================== */

.wc-intro-action-cards__item {
	position: relative;
	padding: 24px 28px;
	color: #334155;
	background-color: #ffffff;
	border-left: 5px solid var(--wc-secondary-colour, #4bc3d6);
	border-radius: 8px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
}

.wc-intro-action-cards__item-title {
	margin: 0 0 5px;
	color: var(--wc-primary-colour, #0d153e);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

.wc-intro-action-cards__item-description {
	color: #526078;
	font-size: 16px;
	line-height: 1.6;
}

.wc-intro-action-cards__item-description > :first-child {
	margin-top: 0;
}

.wc-intro-action-cards__item-description > :last-child {
	margin-bottom: 0;
}

.wc-intro-action-cards__item-description p {
	margin-top: 0;
	margin-bottom: 14px;
}

.wc-intro-action-cards__item-description strong {
	color: var(--wc-primary-colour, #0d153e);
}

.wc-intro-action-cards__item-description a {
	color: var(--wc-primary-colour, #0d153e);
	font-weight: 700;
	text-decoration: none;
}

.wc-intro-action-cards__item-description a:hover,
.wc-intro-action-cards__item-description a:focus {
	color: var(--wc-secondary-colour, #4bc3d6);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wc-intro-action-cards__item-description ul,
.wc-intro-action-cards__item-description ol {
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left: 22px;
}


/* ==========================================================
   EDITOR
   ========================================================== */

.editor-styles-wrapper .wc-intro-action-cards {
	box-sizing: border-box;
}


/* ==========================================================
   TABLET
   ========================================================== */

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

	.wc-intro-action-cards {
		padding: 60px 24px;
	}

	.wc-intro-action-cards--width-narrow .wc-intro-action-cards__container,
	.wc-intro-action-cards--width-standard .wc-intro-action-cards__container {
		width: 100%;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

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

	.wc-intro-action-cards {
		padding: 48px 16px;
	}

	.wc-intro-action-cards__intro {
		font-size: 16px;
		line-height: 1.6;
	}

	.wc-intro-action-cards__list {
		gap: 16px;
		margin-top: 28px;
	}

	.wc-intro-action-cards__item {
		padding: 22px 20px;
		border-left-width: 4px;
	}

	.wc-intro-action-cards__item-title {
		font-size: 17px;
	}

	.wc-intro-action-cards__item-description {
		font-size: 15px;
	}

}