/* =====================================================================
 * Pillar Page — pillar-page.css
 * Loaded only on page-template-pillar-page.php
 * ===================================================================== */

/* -----------------------------------------------------------------------
 * Reset / base scoping
 * --------------------------------------------------------------------- */
.pillar-page-wrap {
	font-family: 'proxima-nova', 'Montserrat', Helvetica, Arial, sans-serif;
	color: #4f4f4f;
}

/* -----------------------------------------------------------------------
 * Hero
 * --------------------------------------------------------------------- */
.pillar-hero {
	background-color: rgba(52, 160, 208, 0.10);
	overflow: hidden;
}

.pillar-hero__inner {
	display: flex;
	align-items: stretch;
	min-height: 420px;
}

.pillar-hero__left {
	flex: 0 0 58%;
	max-width: 58%;
	padding: 60px 40px 60px max(20px, calc((100vw - 1140px) / 2));
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	box-sizing: border-box;
	text-align: left;
}

h1.pillar-hero__title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	color: #243065;
	margin-bottom: 20px;
}

.pillar-hero__intro {
	font-size: 16px;
	line-height: 1.7;
	color: #4f4f4f;
	margin-bottom: 28px;
}

.pillar-hero__meta {
	font-size: 13px;
	color: rgba(79, 79, 79, 0.85);
	line-height: 1.5;
	margin-bottom: 14px;
}

.pillar-hero__source {
	margin: 4px 0 16px;
}

.pillar-hero__chips {
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pillar-hero__chip {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: #243065;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(36, 48, 101, 0.2);
	border-radius: 100px;
	padding: 5px 12px;
	line-height: 1.4;
}

.pillar-hero__cta {
	margin-top: auto;
}

.pillar-hero__btn.btn {
	display: inline-block;
	background: #243065;
	color: #fff;
	padding: 14px 32px;
	border-radius: 100px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: background 0.2s ease;
}

.pillar-hero__btn.btn:hover {
	background: #1a2449;
}

/* -----------------------------------------------------------------------
 * Breadcrumb bar (above hero)
 * --------------------------------------------------------------------- */
.pillar-breadcrumb-bar {
	background: #fff;
	border-bottom: 1px solid #ebebeb;
}

.pillar-breadcrumb-bar__inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 40px;
	height: 60px;
	display: flex;
	align-items: center;
}

#page .pillar-breadcrumb-bar__inner .crumbs {
	font-family: 'proxima_novamedium', 'proxima-nova', Helvetica, Arial, sans-serif;
	font-size: 11px;
	font-weight: 400;
	color: rgb(66, 66, 66);
	text-transform: uppercase;
	line-height: 11px;
	text-align: left;
	margin: 0;
	height: auto;
	padding: 0;
}

#page .pillar-breadcrumb-bar__inner .crumbs a {
	color: rgb(66, 66, 66);
	text-decoration: none;
}

#page .pillar-breadcrumb-bar__inner .crumbs a:hover {
	text-decoration: underline;
}

#page .pillar-breadcrumb-bar__inner .crumbs .current {
	color: #243065;
}

.pillar-hero__right {
	flex: 1;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	border-top-left-radius: 125px;
}

.pillar-hero__right img.pillar-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	display: block;
	border-radius: 0;
}

/* -----------------------------------------------------------------------
 * 3-column layout wrapper
 * --------------------------------------------------------------------- */
.pillar-layout {
	background: #fff;
}

.pillar-layout__inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: 240px 1fr 260px;
	gap: 0;
	align-items: start;
	box-sizing: border-box;
}

/* -----------------------------------------------------------------------
 * TOC rail
 * --------------------------------------------------------------------- */
.pillar-toc__toggle {
	display: none;
}

.pillar-toc {
	position: sticky;
	top: 180px;
	background: #fff;
	border-radius: 0;
	padding: 0 20px 20px;
	margin-top: 36px;
	margin-bottom: 0;
	align-self: start;
	text-align: left;
	max-height: calc(100vh - 212px);
	overflow-y: auto;
	scrollbar-gutter: stable;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.pillar-toc::-webkit-scrollbar {
	width: 4px;
}

.pillar-toc::-webkit-scrollbar-track {
	background: transparent;
}

.pillar-toc::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 2px;
}

.pillar-toc__heading {
	font-size: 14px;
	font-weight: 700;
	color: #292929;
	margin: 0 0 12px 0;
}

.pillar-toc__divider {
	border: none;
	border-top: 1px solid #d4d4d4;
	margin: 0 0 12px 0;
}

#pillar-toc-nav + .pillar-toc__heading {
	margin-top: 24px;
}

.pillar-toc__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pillar-toc__nav > ul > li {
	margin-bottom: 0;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 4px;
	padding-top: 4px;
}

.pillar-toc__nav > ul > li:first-child {
	padding-top: 0;
}

.pillar-toc__nav > ul > li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.pillar-toc__nav a {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	color: #34a0d0;
	text-decoration: none;
	text-transform: none;
	padding: 4px 6px;
	border-radius: 4px;
	transition: background 0.15s ease, color 0.15s ease;
}

.pillar-toc__nav a:hover {
	background: rgba(209, 210, 212, 0.25);
	color: #34a0d0;
	font-weight: 700;
}

.pillar-toc__nav a.is-active {
	background: rgba(209, 210, 212, 0.25);
	color: #34a0d0;
	font-weight: 600;
}

/* -----------------------------------------------------------------------
 * Center body
 * --------------------------------------------------------------------- */
.pillar-body {
	background: #f5f5f5;
	padding: 0;
	min-width: 0;
	text-align: left;
}

/* Single white card wrapping content, FAQ, and CTA — eliminates gray gaps.
   No overflow:hidden — that causes scroll-margin-top to be ignored in Chromium
   (https://bugs.chromium.org/p/chromium/issues/detail?id=1281003). Child sections
   have no own background so the rounded corners don't need clipping. */
.pillar-body__panel {
	background: #fff;
	border-radius: 0;
	margin-bottom: 0;
	padding-bottom: 36px;
}

/* Match the H2 rhythm (56px total before border-top) between panel sections.
   PHP adds .has-next to each section when a sibling follows, setting padding-bottom: 0
   so the gap is: 0pb + 0pt + 40px heading margin-top + 16px last-child margin-bottom = 56px,
   identical to the content H2 rhythm. */
.pillar-body__content.has-next,
.pillar-faq.has-next {
	padding-bottom: 0;
}

.pillar-body__content {
	padding: 36px 40px;
}

/* Offset anchor-jump targets so fixed nav doesn't cover them on click */
.pillar-body__content h2,
.pillar-body__content h3,
.pillar-faq__heading {
	scroll-margin-top: 160px;
}

/* H2 step headings inside the editor content */
.pillar-body__content h2 {
	font-size: 24px;
	font-weight: 700;
	color: #243065;
	margin-top: 40px;
	margin-bottom: 16px;
	margin-left: -20px;
	margin-right: -20px;
	padding-top: 40px;
	padding-left: 20px;
	padding-right: 20px;
	background-image: linear-gradient(#008255, #008255);
	background-size: 100% 2px;
	background-position: left top;
	background-repeat: no-repeat;
}

.pillar-body__content h2:first-child {
	margin-top: 0;
	margin-left: 0;
	margin-right: 0;
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
	background-image: none;
}

.pillar-body__content h3 {
	font-size: 19px;
	font-weight: 700;
	color: #292929;
	margin-top: 28px;
	margin-bottom: 12px;
}

.pillar-body__content p {
	font-size: 16px;
	line-height: 1.75;
	color: #4f4f4f;
	margin-bottom: 16px;
}

.pillar-body__content ul,
.pillar-body__content ol {
	margin: 0 0 20px 0;
	padding: 0 0 0 24px;
}

.pillar-body__content ul {
	list-style: disc;
}

.pillar-body__content ol {
	list-style: decimal;
}

.pillar-body__content li {
	font-size: 16px;
	line-height: 1.75;
	color: #4f4f4f;
	margin-bottom: 8px;
}

/* Tables inside editor content */
/* Scrollable wrapper injected by JS — allows wide tables to scroll horizontally */
.pillar-table-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 24px;
}

.pillar-table-scroll table {
	width: auto;
	min-width: 100%;
	margin-bottom: 0;
}

.pillar-body__content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	margin-bottom: 24px;
}

.pillar-body__content th {
	background: #243065;
	color: #fff;
	font-weight: 600;
	text-align: left;
	padding: 10px 14px;
	font-size: 12px;
}

.pillar-body__content td {
	padding: 10px 14px;
	border-bottom: 1px solid #e4e4e4;
	color: #4f4f4f;
	vertical-align: top;
	font-size: 13px;
}

.pillar-body__content tr:nth-child(even) td {
	background: #f9f9f9;
}

.pillar-body__content td.col-center {
	text-align: center;
}

/* Callout / tip box */
.pillar-callout {
	background: #fff;
	border-left: 4px solid #0d6e9e;
	border-radius: 6px;
	padding: 16px 20px;
	margin: 24px 0;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.pillar-callout p:last-child {
	margin-bottom: 0;
}

/* Key Takeaways callout */
.pillar-key-takeaways {
	border-left: 4px solid #243065;
	background: #eef0f6;
	border-radius: 6px;
	padding: 20px 24px;
	margin-bottom: 28px;
}

.pillar-key-takeaways__heading {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #243065;
	margin: 0 0 12px 0;
}

.pillar-key-takeaways__list {
	margin: 0 0 0 20px;
	padding: 0;
}

.pillar-key-takeaways__list li {
	font-size: 15px;
	line-height: 1.7;
	color: #4f4f4f;
	margin-bottom: 8px;
}

.pillar-key-takeaways__list li:last-child {
	margin-bottom: 0;
}

.pillar-key-takeaways .pillar-key-takeaways__source {
	font-size: 10px;
	color: #6b6b6b;
	margin: 10px 0 0;
	text-align: left;
}

.pillar-key-takeaways .pillar-key-takeaways__source a {
	color: #6b6b6b;
	text-decoration: underline;
}

/* -----------------------------------------------------------------------
 * Related guides (full-width, outside 3-column layout)
 * --------------------------------------------------------------------- */
.pillar-related-guides {
	background: #fff;
	padding: 32px 0 0;
}

.pillar-related-guides__inner {
	max-width: 1140px;
	margin: 0 auto;
	background: #fff;
	padding: 0 24px 48px;
}

.pillar-related-guides__heading {
	font-size: 24px;
	font-weight: 700;
	color: #243065;
	margin: 0 0 20px;
	padding-top: 40px;
	border-top: 2px solid #008255;
	scroll-margin-top: 160px;
}

.pillar-guides-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.pillar-guide-card {
	background: #fff;
	border: 1px solid #d4d4d4;
	border-radius: 8px;
	padding: 20px;
}

.pillar-guide-card__title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #0d6e9e;
	text-decoration: none;
	margin-bottom: 8px;
	line-height: 1.4;
}

.pillar-guide-card__title:hover {
	color: #2180b0;
	text-decoration: underline;
}

span.pillar-guide-card__title {
	color: #0d6e9e;
}

.pillar-guide-card__excerpt {
	font-size: 13px;
	line-height: 1.6;
	color: #4f4f4f;
	margin: 0;
}

/* -----------------------------------------------------------------------
 * FAQ section
 * --------------------------------------------------------------------- */
.pillar-faq {
	padding: 0 40px 36px;
}

.pillar-faq__heading {
	font-size: 24px;
	font-weight: 700;
	color: #243065;
	padding-top: 40px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 40px -20px 16px;
	background-image: linear-gradient(#008255, #008255);
	background-size: 100% 2px;
	background-position: left top;
	background-repeat: no-repeat;
}

.pillar-faq__item {
	border: 1px solid #d4d4d4;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 10px;
}

.pillar-faq__item summary.pillar-faq__question {
	padding: 16px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #292929;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.pillar-faq__item summary.pillar-faq__question::-webkit-details-marker {
	display: none;
}

.pillar-faq__item summary.pillar-faq__question::after {
	content: '+';
	font-size: 22px;
	line-height: 1;
	flex-shrink: 0;
	color: #292929;
}

.pillar-faq__item[open] summary.pillar-faq__question::after {
	content: '\2212';
}

.pillar-faq__answer {
	padding: 0 20px 16px;
	font-size: 15px;
	line-height: 1.75;
	color: #4f4f4f;
}

.pillar-faq__answer p:last-child {
	margin-bottom: 0;
}

/* -----------------------------------------------------------------------
 * Right sidebar
 * --------------------------------------------------------------------- */
.pillar-sidebar {
	position: sticky;
	top: 180px;
	margin-top: 36px;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-self: start;
	max-height: calc(100vh - 212px);
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.pillar-sidebar::-webkit-scrollbar {
	width: 4px;
}

.pillar-sidebar::-webkit-scrollbar-track {
	background: transparent;
}

.pillar-sidebar::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 2px;
}

/* Sidebar cards (top, middle stats, bottom) */
.pillar-sidebar__card {
	border-radius: 12px;
	padding: 12px 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pillar-sidebar__card--top {
	background: #243065;
}

.pillar-sidebar__card--bottom {
	background: #008255;
}

.pillar-sidebar__stars {
	color: #f58121;
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 1;
}

.pillar-sidebar__star-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pillar-sidebar__pass-rate {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.85);
	margin: -4px 0 0;
	line-height: 1.4;
}

.pillar-sidebar__card-heading {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 4px 0 0 0;
	line-height: 1.3;
}

.pillar-sidebar__card-sub {
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0 4px;
	font-size: 12px;
	color: #fff;
	margin: 0;
	line-height: 1.5;
	text-align: center;
}

.pillar-sidebar__card-sub span {
	font-size: 12px;
	font-weight: 600;
	color: #fff;
}

.pillar-sidebar__enroll-btn.btn {
	display: block;
	background: #f58121;
	color: #fff;
	padding: 12px 20px;
	border-radius: 100px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: background 0.2s ease;
	text-align: center;
}

.pillar-sidebar__enroll-btn.btn:hover {
	background: #d96e10;
	color: #fff;
}

.pillar-sidebar__advisor-block {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.pillar-sidebar__advisor-heading {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.pillar-sidebar__advisor-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 10px;
}

/* Stats section (middle white card) */
.pillar-sidebar__stats {
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e0e0e0;
	padding: 4px 10px;
	display: flex;
	flex-direction: column;
}

.pillar-sidebar__stat {
	padding: 5px 0;
	text-align: center;
}

.pillar-sidebar__stat:first-child {
	padding-top: 0;
}

.pillar-sidebar__stat:last-child {
	padding-bottom: 0;
}

.pillar-sidebar__stat-num {
	font-size: 26px;
	font-weight: 700;
	color: #243065;
	line-height: 1.1;
}

.pillar-sidebar__stat-label {
	font-size: 12px;
	color: #4f4f4f;
	line-height: 1.4;
	margin: 4px 0 0;
}

.pillar-sidebar__stat-divider {
	border: none;
	border-top: 1px solid #e0e0e0;
	margin: 5px -10px 0;
}

.pillar-sidebar__card--salary {
	background: #243065;
}

.pillar-sidebar__salary-heading {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.pillar-sidebar__salary-btn.btn {
	display: block;
	background: #34a0d0;
	border: none;
	color: #fff;
	border-radius: 100px;
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
	text-align: center;
}

.pillar-sidebar__salary-btn.btn:hover {
	background: #0d6e9e;
}

.pillar-sidebar__source-card {
	background: #fff;
	border-radius: 12px;
	padding: 5px 8px;
	text-align: center;
}

.pillar-sidebar__source {
	font-size: 11px;
	color: rgba(79, 79, 79, 0.7);
	margin: 0;
	line-height: 1.4;
	text-align: left;
}

.asreb-source {
	display: block;
	font-size: 11px;
	color: #6b6b6b;
	line-height: 1.4;
}

.asreb-source a {
	color: #6b6b6b;
	text-decoration: underline;
}

.asreb-source a:hover {
	color: #111;
}


.pillar-cta-banner__disclaimer .asreb-source,
.pillar-cta-banner__disclaimer .asreb-source a {
	color: rgba(255, 255, 255, 0.5);
}

.pillar-cta-banner__disclaimer .asreb-source a:hover {
	color: rgba(255, 255, 255, 0.7) !important;
}

/* HubSpot stamps each label with a unique ID (label-firstname-[uuid]),
   giving it specificity 100. Target via attribute selector scoped to our
   container: 100 (outer ID) + 10 (attr) = 110 — beats HubSpot's 100. */
#pillar-sidebar-hubspot-form [id^="label-"],
#pillar-sidebar-hubspot-form [id^="label-"] * {
	color: #fff !important;
	font-size: 12px !important;
}

#pillar-sidebar-hubspot-form input,
#pillar-sidebar-hubspot-form select,
#pillar-sidebar-hubspot-form textarea {
	width: 100%;
	box-sizing: border-box;
	font-size: 13px;
}

#pillar-sidebar-hubspot-form .hs-richtext,
#pillar-sidebar-hubspot-form .hs-richtext p,
#pillar-sidebar-hubspot-form .hs-richtext a {
	color: rgba(255, 255, 255, 0.75) !important;
	font-size: 11px !important;
	line-height: 1.4 !important;
}

#pillar-sidebar-hubspot-form .legal-consent-container,
#pillar-sidebar-hubspot-form .legal-consent-container p,
#pillar-sidebar-hubspot-form .legal-consent-container a,
#pillar-sidebar-hubspot-form .legal-consent-container span {
	color: rgba(255, 255, 255, 0.4) !important;
	font-size: 11px !important;
	line-height: 15px !important;
}

#pillar-sidebar-hubspot-form .hs-submit,
#pillar-sidebar-hubspot-form .actions {
	width: 100% !important;
	display: block !important;
}

#pillar-sidebar-hubspot-form .hs-button {
	background: #f58121 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 100px !important;
	padding: 12px 20px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	text-align: center !important;
	cursor: pointer;
	width: 100% !important;
	box-sizing: border-box !important;
	display: block !important;
	transition: background 0.2s ease;
}

#pillar-sidebar-hubspot-form .hs-button:hover {
	background: #d96e10 !important;
}

#pillar-sidebar-hubspot-form fieldset,
#pillar-sidebar-hubspot-form .hs-form-field {
	margin-bottom: 3px !important;
	padding: 0 !important;
	border: none !important;
	min-width: 0 !important;
}

#pillar-sidebar-hubspot-form .hs-form-field label {
	margin-bottom: 2px !important;
	display: block;
}

#pillar-sidebar-hubspot-form .legal-consent-container {
	margin-bottom: 3px !important;
}

.pillar-sidebar__call {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	margin: 3px 0 0;
}

.pillar-sidebar__call a {
	color: #fff;
	text-decoration: none;
}

.pillar-sidebar__call a:hover {
	text-decoration: underline;
}

/* Suppress any specialist form block embedded in the editor body column.
   The sidebar card (desktop) and mobile sticky sheet both handle lead capture,
   so this block is never needed inside the content area at any viewport width. */
.pillar-body__content .asreb-specialist-form-block {
	display: none;
}

/* -----------------------------------------------------------------------
 * Midnight CTA banner (below related guides, full-width)
 * --------------------------------------------------------------------- */
.pillar-cta-banner {
	background: #243065;
	padding: 48px 40px;
	text-align: center;
}

.pillar-cta-banner__heading {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin: 0 auto 12px;
	max-width: 760px;
	line-height: 1.3;
}

.pillar-cta-banner__tagline {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin: 0 auto 28px;
	max-width: 600px;
}

.pillar-cta-banner__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 14px;
}

.pillar-cta-banner__btn.btn {
	display: inline-block;
	background: #34a0d0;
	color: #fff;
	padding: 14px 36px;
	border-radius: 100px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.pillar-cta-banner__btn.btn:hover {
	background: #0d6e9e;
	color: #fff;
}

.pillar-cta-banner__btn--tangerine.btn {
	background: #34a0d0;
}

.pillar-cta-banner__btn--tangerine.btn:hover {
	background: #0d6e9e;
	color: rgba(255, 255, 255, 0.8);
}

.pillar-cta-banner__link {
	flex-basis: 100%;
	text-align: center;
	color: #fff !important;
	font-size: 14px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pillar-cta-banner__link:hover {
	color: rgba(255, 255, 255, 0.8) !important;
}

.pillar-cta-banner__phone {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	margin: 16px 0 0;
}

.pillar-cta-banner__phone a {
	color: #fff !important;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pillar-cta-banner__phone a:hover {
	color: rgba(255, 255, 255, 0.8) !important;
}

.pillar-cta-banner__disclaimer {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	margin: 10px auto 0;
	max-width: 680px;
	line-height: 1.4;
}

.pillar-cta-banner__disclaimer a {
	color: rgba(255, 255, 255, 0.5) !important;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* -----------------------------------------------------------------------
 * Cactus enrollment section (below midnight CTA, full-width, 2-column)
 * --------------------------------------------------------------------- */
.pillar-enroll-section {
	background: #008255;
	padding: 48px 40px;
}

.pillar-enroll-section__inner {
	max-width: 1140px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 2fr;
	column-gap: 48px;
	row-gap: 0;
	align-items: start;
}

.pillar-enroll-section__intro {
	align-self: center;
}

.pillar-enroll-section__heading {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px;
	line-height: 1.3;
}

.pillar-enroll-section__sub {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0;
}

/* Field column layout is handled by HubSpot's native form-columns-2 fieldsets.
   Submit button right-alignment and colors are applied via styleHubSpotCtaForm(). */

.pillar-enroll-section__phone {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	margin: 4px 0 0;
}

.pillar-enroll-section__phone a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pillar-enroll-section__phone a:hover {
	color: rgba(255, 255, 255, 0.8);
}

/* Hide the global footer "Have a question? Call us at…" bar on the pillar page.
   No scope prefix needed — pillar-page.css is only enqueued on this template. */
.contact-margin {
	display: none;
}

/* -----------------------------------------------------------------------
 * Mobile sticky bar + bottom sheet
 * --------------------------------------------------------------------- */
.pillar-sticky-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 56px;
	background: #f58121;
	z-index: 999;
	align-items: center;
	justify-content: center;
}

.pillar-sticky-bar__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff !important;
	font-family: sans-serif;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
}

.pillar-sticky-bar__btn:hover {
	color: #fff !important;
}

.pillar-sticky-sheet {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2100;
	background: #243065;
	border-radius: 16px 16px 0 0;
	padding: 20px 20px 32px;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
	max-height: 90vh;
	overflow-y: auto;
}

.pillar-sticky-sheet[hidden] {
	display: none;
}

.pillar-sticky-sheet__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	gap: 12px;
}

.pillar-sticky-sheet__heading {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.4;
}

.pillar-sticky-sheet__close {
	background: none;
	border: none;
	font-size: 18px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	padding: 4px;
	flex-shrink: 0;
}

#pillar-sticky-hubspot-form .hs-button {
	background: #f58121;
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
	transition: background 0.2s ease;
}

#pillar-sticky-hubspot-form .hs-button:hover {
	background: #d96e10;
}

/* -----------------------------------------------------------------------
 * Step accordion
 * --------------------------------------------------------------------- */
.pillar-steps {
	margin: 24px 0;
}

.pillar-step {
	border: 1px solid #d4d4d4;
	border-radius: 6px;
	margin: 0 0 8px;
	overflow: hidden;
}

.pillar-step__header {
	padding: 16px 20px;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
}

.pillar-step__header::-webkit-details-marker {
	display: none;
}

.pillar-step__header::after {
	content: '+';
	font-size: 22px;
	line-height: 1;
	flex-shrink: 0;
	color: #292929;
}

.pillar-step[open] .pillar-step__header::after {
	content: '\2212';
}

.pillar-step__title {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #292929;
	line-height: 1.3;
}

.pillar-step__time {
	display: block;
	font-size: 13px;
	color: #6b6b6b;
	line-height: 1.3;
	margin-top: 0;
}

.pillar-step__time::before {
	content: 'Time required: ';
	font-weight: 700;
}

.pillar-step__body {
	padding: 0 20px 16px;
	font-size: 15px;
	line-height: 1.75;
	color: #4f4f4f;
	border-top: 1px solid #eee;
}

.pillar-step__body > *:first-child {
	margin-top: 16px;
}

.pillar-step__body p:last-child {
	margin-bottom: 0;
}

.pillar-step__body ul.checklist {
	list-style: none;
	padding-left: 24px;
}

.pillar-step__body ul.checklist li {
	position: relative;
}

.pillar-step__body ul.checklist li::before {
	content: '\2713';
	position: absolute;
	left: -1.2em;
	color: #4f4f4f;
	font-weight: 700;
}

/* -----------------------------------------------------------------------
 * Mobile breakpoints
 * --------------------------------------------------------------------- */
@media (max-width: 1200px) {
	.pillar-layout__inner {
		grid-template-columns: 220px 1fr 240px;
	}
}

@media (max-width: 1100px) {
	/* Hide the right sidebar column */
	.pillar-layout__inner {
		grid-template-columns: 220px 1fr;
	}

	.pillar-sidebar {
		display: none;
	}

	.pillar-guides-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.pillar-breadcrumb-bar {
		display: none;
	}

	/* Hero: stack vertically, hide image */
	.pillar-hero__inner {
		flex-direction: column;
		min-height: 0;
	}

	.pillar-hero__left {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
		padding: 40px 20px 44px;
	}

	.pillar-hero__right {
		display: none;
	}

	h1.pillar-hero__title {
		font-size: 28px;
	}

	/* Single column layout: TOC becomes full-width block above body */
	.pillar-layout__inner {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.pillar-toc__toggle {
		display: block;
		width: 100%;
		background: #fff;
		border: 1px solid #d4d4d4;
		border-radius: 8px;
		padding: 12px 16px;
		font-size: 14px;
		font-weight: 600;
		color: #243065;
		cursor: pointer;
		text-align: left;
		margin-top: 0;
		margin-bottom: 0;
		box-sizing: border-box;
	}

	.pillar-toc {
		position: static;
		margin-top: 0;
		margin-bottom: 0;
		display: none;
	}

	.pillar-toc.is-open {
		display: block;
	}

	.pillar-body {
		padding: 0;
	}

	.pillar-body__content {
		padding: 24px 20px;
	}

	.pillar-faq {
		padding: 0 20px 24px;
	}

	.pillar-related-guides {
		background: #fff;
		border-top: 2px solid #008255;
		padding: 24px 20px 32px;
	}

	.pillar-related-guides__inner {
		background: transparent;
		padding: 0;
	}

	.pillar-related-guides__heading {
		border-top: none;
		padding-top: 0;
	}

	.pillar-guides-grid {
		grid-template-columns: 1fr;
	}

	.pillar-page-wrap {
		padding-bottom: 0;
	}

	.pillar-cta-banner {
		padding: 36px 20px;
	}

	.pillar-enroll-section {
		padding: 36px 20px;
	}

	.pillar-enroll-section__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.pillar-cta-banner__actions {
		flex-direction: column;
	}

	.pillar-cta-banner__link {
		flex-basis: auto;
	}

}

/* -----------------------------------------------------------------------
 * Content utility button — Tangerine
 * Usage: <a class="btn btn-tangerine" href="...">Label</a>
 * --------------------------------------------------------------------- */
.pillar-body__content .btn-tangerine,
.pillar-step__body .btn-tangerine {
	display: inline-block;
	background: #f58121;
	color: #fff;
	padding: 12px 28px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease;
}

.pillar-body__content .btn-tangerine:hover,
.pillar-step__body .btn-tangerine:hover {
	background: #d96e10;
	color: #fff;
}

/* -----------------------------------------------------------------------
 * License timeline block
 * --------------------------------------------------------------------- */
.pillar-page-wrap .timeline-wrap {
	max-width: 700px;
	margin: 0 auto;
}

.pillar-page-wrap .timeline-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	background: linear-gradient(to right, #34a0d0, #008255);
	border-radius: 100px;
	padding: 10px 24px;
	margin-bottom: 32px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1;
	overflow: hidden;
}

.pillar-page-wrap .timeline-bar__label,
.pillar-page-wrap .timeline-bar__end {
	white-space: nowrap;
	margin: 0;
}

.pillar-page-wrap .timeline-bar__arrows {
	flex: 1;
	text-align: center;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.25em;
	opacity: 0.6;
	overflow: hidden;
	white-space: nowrap;
}

.pillar-page-wrap .clocks {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pillar-page-wrap .clock-card {
	background: #fff;
	border-radius: 10px;
	border-left: 4px solid #34a0d0;
	padding: 12px 16px 12px 12px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.pillar-page-wrap .clock-card:nth-child(2) { border-left-color: #f58121; }
.pillar-page-wrap .clock-card:nth-child(3) { border-left-color: #008255; }

.pillar-page-wrap .clock-badge {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #eaf5fb;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pillar-page-wrap .clock-badge i {
	font-size: 18px;
	color: #34a0d0;
}

.pillar-page-wrap .clock-card:nth-child(2) .clock-badge { background: #fff4ea; }
.pillar-page-wrap .clock-card:nth-child(2) .clock-badge i { color: #f58121; }
.pillar-page-wrap .clock-card:nth-child(3) .clock-badge { background: #e6f5ee; }
.pillar-page-wrap .clock-card:nth-child(3) .clock-badge i { color: #008255; }

.pillar-page-wrap .clock-body {
	flex: 1;
	min-width: 0;
	margin-bottom: 0;
}

.pillar-page-wrap .clock-title {
	font-size: 15px;
	font-weight: 700;
	color: #243065;
	margin-bottom: 10px;
	line-height: 1.3;
}

.pillar-page-wrap .branch,
.pillar-page-wrap .timeline-wrap .branch {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0;
	margin-bottom: 0;
}

.pillar-page-wrap .branch li {
	display: flex;
	gap: 8px;
	font-size: 13px;
	color: #444;
	line-height: 1.45;
	align-items: baseline;
}

.pillar-page-wrap .branch__glyph {
	flex-shrink: 0;
	font-family: monospace;
	color: #888;
	font-size: 14px;
	font-weight: 700;
	width: 26px;
	text-align: left;
	letter-spacing: -0.05em;
}

.pillar-page-wrap .branch__note {
	display: block;
	font-size: 12px;
	color: #888;
	margin-top: 2px;
}

.pillar-page-wrap .alert-pill {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: #fff4ea;
	color: #f58121;
	border: 1px solid #f58121;
	border-radius: 100px;
	padding: 2px 8px;
	margin-left: 6px;
	vertical-align: middle;
	white-space: nowrap;
}

@media (max-width: 480px) {
	.pillar-hero__btn.btn {
		display: block;
		text-align: center;
	}

	.pillar-page-wrap .clock-badge {
		width: 38px;
		height: 38px;
	}

	.pillar-page-wrap .clock-title {
		font-size: 14px;
	}
}
