/* ==========================================================
   Trade Account Options — .trade-account-options
   ========================================================== */

.trade-account-options {
	background: var(--brand-colors-background-section-colors-off-white, #F7F7F7);
	padding: 48px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}

/* --- Intro block (breadcrumbs + heading + body) --- */

.trade-account-options__intro {
	width: 100%;
	max-width: 912px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

/* Breadcrumbs */

.trade-account-options__breadcrumbs {
	display: flex;
	align-items: center;
	gap: 4px;
}

.trade-account-options__breadcrumb-home {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.trade-account-options__breadcrumb-home-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.trade-account-options__breadcrumb-chevron {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
}

.trade-account-options__breadcrumb-current {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--Brand-Colors-Primary-Colors-Red-Clay, #ED2224);
}

/* Heading */

.trade-account-options__heading {
	font-family: 'Gotham', sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--Brand-Colors-Text-Colors-Charcoal, #37373E);
	text-align: center;
	margin: 0;
}

/* Body */

.trade-account-options__body {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--Brand-Colors-Text-Colors-Charcoal, #37373E);
	text-align: center;
	margin: 0;
}

/* --- Cards grid --- */

.trade-account-options__cards {
	width: 100%;
	max-width: 1152px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.trade-account-options__card {
	background: var(--brand-colors-background-section-colors-white-washed, #fff);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding: 32px 24px;
}

.trade-account-options__card-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.trade-account-options__card-title {
	font-family: 'Gotham', sans-serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--Brand-Colors-Text-Colors-Charcoal, #37373E);
	text-align: center;
	margin: 0;
}

.trade-account-options__card-subtitle {
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--Brand-Colors-Text-Colors-Charcoal, #37373E);
	text-align: center;
	margin: 0;
}

.trade-account-options__card-body {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--Brand-Colors-Text-Colors-Charcoal, #37373E);
	width: 100%;
}

.trade-account-options__card-body p {
	margin-bottom: 0.5em;
}

.trade-account-options__card-body p:last-child {
	margin-bottom: 0;
}

.trade-account-options__card-body ul {
	list-style: disc;
	padding-left: 24px;
	margin: 0;
}

.trade-account-options__card-body li {
	margin-bottom: 0;
	line-height: 1.5;
}

/* Button */

.trade-account-options__card-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 10px 16px;
	background: var(--Brand-Colors-Primary-Colors-Red-Clay, #ED2224);
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	margin-top: auto;
	transition: background 0.2s ease;
}

.trade-account-options__card-btn:hover,
.trade-account-options__card-btn:focus {
	background: var(--Brand-Colors-Primary-Colors-Deep-Red, #BE1E2D);
	color: #fff;
	text-decoration: none;
}

/* --- Responsive --- */

@media (min-width: 768px) {
	.trade-account-options {
		padding: 64px 24px;
	}

	.trade-account-options__heading {
		font-size: 58px;
	}

	.trade-account-options__body {
		font-size: 18px;
	}

	.trade-account-options__card {
		padding: 32px 48px;
	}

	.trade-account-options__card-title {
		font-size: 32px;
	}
}

@media (min-width: 1024px) {
	.trade-account-options__cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
}
