.account_dashboard {
	color: #2f2f2f;
}

.account_dashboard__hero {
	padding: 8px 0 18px 0;
}

.account_dashboard__eyebrow,
.account_card__kicker {
	margin: 0 0 8px 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8a8a8a;
}

.account_dashboard h1 {
	margin: 0 0 12px 0;
	font-size: 24px;
	line-height: 1.05;
	text-transform: uppercase;
	color: #313131;
}

.account_dashboard__hero p {
	max-width: 760px;
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #555;
}

.account_dashboard__hero_link {
	margin-top: 14px !important;
}

.account_dashboard__hero_link a,
.account_inline_link {
	display: inline-block;
	color: #ed1c24;
	font-weight: 700;
	text-decoration: none;
}

.account_dashboard__hero_link a:hover,
.account_inline_link:hover {
	text-decoration: underline;
}

.account_dashboard__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	align-items: start;
}

.account_card {
	background: #fcfcfc;
	border: 1px solid #e3e3e3;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
	padding: 24px 26px;
}

.account_card--wide {
	grid-column: 1 / -1;
}

.account_card__head {
	margin-bottom: 16px;
}

.account_card h2 {
	margin: 0;
	font-size: 20px;
	line-height: 1.1;
	text-transform: uppercase;
	color: #313131;
}

.account_card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: #5d5d5d;
}

.account_action_list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.account_action_tile {
	display: block;
	padding: 16px 18px;
	border: 1px solid #ececec;
	background: #fff;
	text-decoration: none;
	transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.account_action_tile strong {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #232323;
}

.account_action_tile span {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	color: #676767;
}

.account_action_tile:hover {
	border-color: #d6d6d6;
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
	transform: translateY(-1px);
}

.account_action_tile--danger strong,
.account_action_tile--danger span {
	color: #b1272b;
}

.account_order_list {
	display: grid;
	gap: 14px;
	margin-bottom: 16px;
}

.account_order_item {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 10px 18px;
	padding: 16px 18px;
	border: 1px solid #ececec;
	background: #fff;
}

.account_order_item__main strong,
.account_order_item__main a {
	color: #232323;
	text-decoration: none;
}

.account_order_item__main a:hover {
	color: #ed1c24;
}

.account_order_item__main span,
.account_order_item__meta span,
.account_order_item__tracking span {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	color: #666;
}

.account_order_item__meta {
	text-align: right;
}

.account_order_item__tracking {
	grid-column: 1 / -1;
	padding-top: 4px;
	border-top: 1px solid #f0f0f0;
}

.account_history_list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.account_history_item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px 18px;
	border: 1px solid #ececec;
	background: #fff;
	text-decoration: none;
}

.account_history_item strong {
	font-size: 14px;
	line-height: 1.3;
	text-transform: uppercase;
	color: #2a2a2a;
}

.account_history_item span {
	font-size: 15px;
	line-height: 1.4;
	color: #ed1c24;
	font-weight: 700;
}

.account_history_item:hover {
	border-color: #d6d6d6;
}

@media only screen and (max-width: 767px) {
	.account_dashboard__grid,
	.account_action_list,
	.account_history_list {
		grid-template-columns: 1fr;
	}

	.account_card,
	.account_order_item {
		padding: 18px;
	}

	.account_order_item {
		grid-template-columns: 1fr;
	}

	.account_order_item__meta {
		text-align: left;
	}
}
