div.agents-page {}


div.agents-page .agents-explanation-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

div.agents-page div.agents-explanation-box {
	flex: 1 1 0;
	min-width: 220px;
	padding: 17px 15px 5px 15px;
	/* background: #ffffff; */
	border: 2px solid #EBAE54;
	/* border-radius: 16px; */
	/* box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06); */
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 130px;
}

div.agents-page div.agents-explanation-box.box-top {
    border-top: 6px solid #21966D;
}
div.agents-page div.agents-explanation-box.box-bottom {
    border-bottom: 6px solid #21966D;
}

div.agents-page div.agents-explanation-box p {
    font-size: 16px;
}

div.agents-page div.agents-explanation-box h4 {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

div.agents-page div.agents-explanation-box .box-num {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 200;
    line-height: 1;
    padding: 0 8px;
    /* border: 1.5px solid #EBAE54; */
    background-color: #E76347;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

/* overflow: clip does NOT create a scroll container (unlike overflow: hidden),
   so position: sticky works through it. Scoped to agents page body class. */
body.page #Wrapper {
	overflow: clip;
}

/* --- Under the hood: two-column layout --- */

.uth-rail-col {
	align-self: flex-start;
	position: sticky;
	top: 110px;
}

.uth-rail {
	border-top: 4px solid #EBAE54;
	padding: 20px 18px;
}

.uth-rail-title {
	margin: 0 0 18px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #EBAE54;
}

.uth-rail-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
}

.uth-rail-list::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: #EBAE54;
	opacity: 0.3;
}

.uth-rail-item {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 12px;
	align-items: start;
	position: relative;
	z-index: 1;
    height: 60px;
}

.uth-rail-dot {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* border: 1px solid #E76347; */
    background-color: #E76347;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
    border-radius: 25px;
}

.rail-item-current .uth-rail-dot {
    background-color: #21966D;
    color: #fff;
}

.uth-rail-step {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 19px;
}

.uth-rail-sub {
    font-size: 12px;
    color: #536175;
    line-height: 10px;
}

.uth-panels {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.uth-panel {
	display: flex;
	gap: 20px;
	padding: 22px 20px;
	/* border: 1px solid #EBAE54; */
	border-top: 4px solid #E76347;
	align-items: flex-start;
    background-color: #FBFDD2;
    margin-bottom: 35px;
}

.uth-panel-no {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* border: 1.5px solid #EBAE54; */
	color: #fff;
    background-color: #E76347;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.uth-panel-current .uth-panel-no {
    background-color: #21966D;
    color: #fff;
}

.uth-panel-content {
	flex: 1;
    padding-top: 7px;
}

.uth-panel-head {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 10px;
}

.uth-panel-title {
	margin: 0;
	font-size: 27px;
	letter-spacing: -0.02em;
    color: #EBAE54;
}

.uth-panel-sub {
	font-size: 13px;
	color: #21966D;
	font-weight: 600;
}

p.uth-panel-tldr {
    font-weight: 700;
}

.uth-panel-content p {
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 1.75;
	color: #536175;
}

.uth-panel-example {
	border-top: 1px solid #EBAE54;
	padding-top: 10px;
	font-size: 14px !important;
}

@media only screen and (max-width: 767px) {
	.uth-rail-col {
		position: static;
	}
}

/* --- end under the hood --- */

@media only screen and (max-width: 959px) and (min-width: 768px) {
	div.agents-page .agents-explanation-row {
		justify-content: center;
	}

	div.agents-page div.agents-explanation-box {
		flex: 0 1 calc(50% - 20px);
		max-width: calc(50% - 20px);
	}
}

@media only screen and (max-width: 767px) {
	div.agents-page .agents-explanation-row {
		flex-direction: column;
	}

	div.agents-page div.agents-explanation-box {
		flex: 1 1 100%;
		min-width: 0;
		width: 100%;
	}
}