/**
 * topic_list_two_col_section.css
 *
 * Cream BG. 2-col on desktop. Left = stack of topic labels separated by
 * hairline dividers. Right = serif heading + stack of paragraphs.
 */

.ncm-topic-two-col {
	background: #FCFAF8;
	padding: 120px 0 0;
}

.ncm-topic-two-col.ncm-topic-two-col--last {
    padding-bottom: 120px;
}

body.page-template-page-flexible>.wrapper,
body.single-service>.wrapper {
	overflow: visible !important;
}

.ncm-topic-two-col__row {
	display: grid;
	grid-template-columns: 414px 1fr;
	gap: 104px;
	align-items: stretch;
}

.ncm-topic-two-col__row.ncm-topic-two-col__row--full {
    display: block;
}

.ncm-topic-two-col__left {
	align-self: stretch;
}

.ncm-topic-two-col__sticky {
	position: sticky;
	top: 120px;
	align-self: start;
}

.ncm-topic-two-col__intro ul, .ncm-topic-two-col__para ul {
	list-style: disc;
	margin-left: 40px;
	margin-bottom: 20px;
}

.ncm-topic-two-col__intro ol, .ncm-topic-two-col__para ol {
	list-style: auto;
	margin-left: 40px;
	margin-bottom: 20px;
}

.ncm-topic-two-col__intro ul li:not(:last-of-type), .ncm-topic-two-col__para ul li:not(:last-of-type), .ncm-topic-two-col__intro ol li:not(:last-of-type), .ncm-topic-two-col__para ol li:not(:last-of-type) {
    margin-bottom: 10px;
}

.ncm-topic-two-col__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ncm-topic-two-col__item {
	padding: 20px 0;
	border-bottom: 1px solid #2F3E3440;
}

.ncm-topic-two-col__item:first-child {
	border-top: 1px solid #2F3E3440;
}

.ncm-topic-two-col__link,
.ncm-topic-two-col__label {
	font-family: var(--ff-primary);
	font-weight: 700;
	font-size: 21px;
	line-height: 24px;
	color: var(--clr-fg-dark);
	text-decoration: none;
}

.ncm-topic-two-col__heading span, .ncm-topic-two-col__content-section .ncm-topic-two-col__section-title span {
    font-family: 'Marcellus', serif;
    font-weight: inherit;
    font-size: 0.92em;
    display: inline-block;
}

.ncm-topic-two-col__link:hover,
.ncm-topic-two-col__link.is-active {
	color: var(--clr-accent);
}

.ncm-topic-two-col__heading {
	font-family: var(--ff-display);
	font-weight: 400;
	color: var(--clr-fg-dark);
	margin: 0 0 30px;
	font-size: 36px;
	line-height: 40px;
	letter-spacing: 0%;
}

.ncm-topic-two-col__intro {
	font-family: var(--ff-primary);
	font-size: 21px;
	line-height: 24px;
}

.ncm-topic-two-col__intro p {
	margin-bottom: 18px;
}

.ncm-topic-two-col__heading a, .ncm-topic-two-col__intro a, .ncm-topic-two-col__para a {
	color: var(--clr-b18258);
}

.ncm-topic-two-col__section-title.ncm-topic-two-col__section-title--first {
    margin-top: 0px;
}

.ncm-topic-two-col__para,
.ncm-topic-two-col__para p {
	font-family: var(--ff-primary);
	font-weight: 400;
	color: var(--clr-fg-dark);
	margin: 0 0 18px;
	font-size: 21px;
	line-height: 24px;
	letter-spacing: 0%;
}

.ncm-topic-two-col__para a.wp-block-button__link.wp-element-button {
    background: #E9DDCE;
    color: var(--clr-bg-dark);
}

.ncm-topic-two-col__section-title {
	margin-top: 50px;
	font-weight: 400;
}

h2.ncm-related-service__heading {
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
	.ncm-topic-two-col__heading {
		font-size: 26px;
		line-height: normal;
	}

	.ncm-topic-two-col__section-title {
		font-size: 24px;
		line-height: normal;
	}

	.ncm-topic-two-col {
		padding-block: 80px 0;
	}
    
    .ncm-topic-two-col.ncm-topic-two-col--last {
        padding-bottom: 80px;
    }
}

@media (max-width: 900px) {
	.ncm-topic-two-col__row {
		grid-template-columns: 1fr !important;
		gap: 40px;
	}

	.ncm-topic-two-col__sticky {
		position: static;
	}

	.ncm-topic-two-col__left {
		order: -1;
	}
}

@media (max-width: 991px) {
	.ncm-topic-two-col__section-title {
        font-size: 26px;
        line-height: normal;
    }
}

@media (max-width: 1200px) {
	.ncm-topic-two-col__row {
		grid-template-columns: 350px 1fr;
		gap: 70px;
	}
}