/* ------------------------- GENERAL ITEM CONTAINERS ------------------------ */
.card-row-small.skeleton-loader > div,
.card-row-small:not(.skeleton-loader) {
	background-color: var(--panel-color);
	border: solid 1px var(--border-color);
	border-radius: 4px;

	font-size: 14px;
	font-weight: 300;

	padding: 14px 30px;
	margin-bottom: 8px;
	min-height: 80px;
}

/* phone media query */
@media screen and (max-width: 425px) {
	div.card-row-small {
		flex-direction: column !important;
		align-items: flex-start;
	}
	div.card-row-small > div {
		justify-content: space-between;
		width: 100%;
	}
}
/* -------------------------------------------------------------------------- */

/* --------------------------- GENERAL ITEM IMAGE --------------------------- */
.card-row-small-image {
	height: 48px;
	width: 48px;
}
/* -------------------------------------------------------------------------- */

/* --------------------------- GENERAL ITEM LINKS --------------------------- */
.card-row-small-link {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	margin-left: 28px;
}
a.card-row-small-link:hover {
	color: var(--accent);
}
/* -------------------------------------------------------------------------- */

/* ------------------------- GENERAL ITEM BOLD TEXT ------------------------- */
.card-row-small-bold {
	font-weight: 600;
}
.card-row-small-faded {
	color: #cacaca;
}
/* -------------------------------------------------------------------------- */

/* ----------------------------- PROFILE HEADER ----------------------------- */
.profile-header {
	margin: 32px 0 20px 0;
}

/* title */
.profile-header-heading {
	letter-spacing: -0.12px;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;

	max-width: 500px;
}

/* back button */
.profile-back-button,
.profile-back-button:hover {
	color: var(--light-charcoal-casper);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	margin-top: 16px;
}
.profile-back-button svg {
	font-size: 14px;
}
/* -------------------------------------------------------------------------- */
