.heading-section {
  padding 48px 0;
  
  @media screen and (min-width: 576px) {
    padding: 48px;
	}
}
.heading-section[data-theme='dark'] {
	background-color: var(--navy-900);
}

.heading-section[data-theme='gray'] {
	background-color: var(--cool-gray-100, #f5f6fa);
}

.heading-eyebrow {
	margin-bottom: 24px;
}

.heading {
	margin-bottom: 0;
}
.heading p{
	margin-bottom: 0;
}
.subhead {
	margin-bottom: 0;
	margin-top: 16px;
	font-weight: 300;
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 16px;
	@media screen and (min-width: 576px) {
    max-width: 706px;
		font-weight: 400;
	}
}
.subhead p{
	margin-bottom: 0;
  font-weight: 300;
}
.subhead p span {
  font-weight: 300;
}
.subhead p br {
  @media screen and (max-width: 768px) {
    display: none;
  }
}

.layout-center .subhead {
	@media screen and (min-width: 1024px) {
		max-width: 1008px;
	}
}

.heading-content {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.heading-right-content {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.heading-right-content.layout-offset[data-content-align="left-center"] {
	@media screen and (min-width: 1024px) {
		justify-content: center;
		align-items: flex-start;
	}
}

.heading-right-content.layout-offset[data-content-align="bottom-right"] {
	@media screen and (min-width: 1024px) {
		justify-content: flex-end;
		align-items: flex-end;
		text-align: right;
	}
}

.layout-center,
.layout-offset,
.layout-left_with_cards{
	max-width: 1008px;
	margin: 0 auto;
	text-align: center;
	align-items: center;
}
.heading-content.layout-left_with_cards{
	@media screen and (min-width: 1024px) {
		max-width: 488px;
		margin-right: 32px;
	}
}
.layout-offset,
.layout-left_with_cards{
	@media screen and (min-width: 1024px) {
		text-align: left;
		align-items: start;
	}
}
.heading-content.layout-offset {
	@media screen and (min-width: 1024px) {
		max-width: 696px;
	}
}
.layout-left {
	max-width: 904px;
	text-align: left;
}
.heading-button-group {
	margin-top: 24px;
	width: 100%;
	@media screen and (min-width: 576px) {
		width: fit-content;
	}
}
.wrapper-offset,
.wrapper-left_with_cards {
	display: flex;
	flex-direction: column;
	align-items: center;
	@media screen and (min-width: 1024px) {
		flex-direction: row;
		align-items: unset;
		justify-content: space-between;
	}
}
.wrapper-offset .heading-right-content {
	@media screen and (min-width: 1024px) {
		max-width: 488px;
	}
}
.heading-card-list {
	display: flex;
	row-gap: 16px;
	flex-direction: column;
	margin-top: 32px;
	width: 100%;
	@media screen and (min-width: 576px) {
		flex-direction: row;
	}
	@media screen and (min-width: 1024px) {
		margin-top: 0;
	}
}
.heading-card {
	padding: 16px 32px;
	border-left: 1px solid var(--cool-gray-200);
	display: flex;
	gap: 16px;
	flex-direction: column;
	text-align: left;
}
[data-theme='dark'] .heading-card{
	border-color: var(--navy-500);
}

.heading-card h4,
.heading-card p {
	margin-bottom: 0;
}
