.fq-box
{
	background:var(--fq-infobox-bg);
	border:1px solid var(--bs-border-color-translucent);
	border-radius:var(--bs-border-radius);
}
.qotd-img
{
	transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}
.qotd-img:hover
{
	transform: scale(1.03);
}
div.qotd-text
{
	font-size: 1.5rem;
}
/* lg and below (<1200px) */
@media (max-width: 1199.98px)
{
	div.qotd-text
	{
		font-size: 1.3rem;
	}
}
/* md and below (<992px) */
@media (max-width: 991.98px)
{
	div.qotd-text
	{
		font-size: 1.15rem;
	}
}
/* sm and below (<768px) */
@media (max-width: 767.98px)
{
	div.qotd-text
	{
		font-size: 1.3rem;
	}
}
div#birthdayCollapse.CollapseList.collapsed
{
	max-height: 350px;
}
/*ALL THE REST!*/
.hp-section
{
	margin-top: 2.25rem;
}
.hp-section:first-of-type
{
	margin-top: 0.75rem;
}
.section-title
{
	font-weight: 600;
	letter-spacing: 0.25px;
	margin-bottom: 0.85rem;
}
/* Biography */
.bio-card
{
	border:1px solid var(--bs-border-color-translucent);
	border-radius: 0.75rem;
	padding: 1rem 1.25rem;
	background:var(--fq-infobox-bg);
}
.bio-table .bio-photo
{
	width: 120px;
}
.bio-table .bio-desc
{
	line-height: 1.35;
}
@media (max-width: 575.98px)
{
	.bio-table
	{
		display: block;
	}
	.bio-table tr, .bio-table td
	{
		display: block;
		width: 100%;
	}
	.bio-table .bio-photo
	{
		text-align: center;
		margin-bottom: 0.75rem;
	}
}
/* Birthdays */
.birthdays-table
{
	width: 100%;
	border-collapse: collapse;
}
.birthdays-table td
{
	padding: 0.3rem 0.5rem;
	border-top:1px solid var(--bs-border-color-translucent);
	font-size: 0.8rem;
	text-align: left;
}
.birthdays-table tr:first-child td
{
	border-top: 0;
}
/* Responsive grid look without changing markup */
@media (min-width: 768px)
{
	.birthdays-table tr
	{
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
/* Trending authors */
.ta-card
{
	background:var(--fq-infobox-bg);
	display: flex;
	flex-direction: column;
}
.ta-card .ta-desc
{
	display: inline-block;
	line-height: 1.25;
}
.ta-desc
{
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/* Info boxes */
.card-elevate
{
	transition: 0.25s box-shadow, 0.25s transform;
}
.card-elevate:hover
{
	transform: translateY(-3px);
	box-shadow: 0 0.75rem 1.25rem -0.3rem rgba(0, 0, 0, 0.18);
}
.ibox-title
{
	font-weight: 600;
	margin-bottom: 0.35rem;
	padding-bottom: 0.35rem;
	border-bottom:1px solid var(--bs-border-color-translucent);
	font-size: 1rem;
}
.infoBox ul.link-list
{
	margin-top: 0.25rem;
}
@media (min-width: 576px)
{
	.infoBox ul.link-list
	{
		columns: 2;
		column-gap: 1.25rem;
	}
}
@media (min-width: 992px)
{
	.infoBox ul.link-list
	{
		columns: 1;
	}
	/* keep single column on large to avoid excessive horizontal scanning */
	.hp-taxonomies .infoBox
	{
		height: 100%;
	}
}
/* Subtle background enhancement */
body
{
	background: linear-gradient(180deg,rgba(var(--bs-primary-rgb),.05),transparent 320px) ,var(--bs-body-bg);
	background-attachment: fixed;
}
/* Utility */
.small-divider
{
	height: 1px;
	background:var(--bs-border-color-translucent);
	margin: 1.25rem 0;
}
/* Bio + Birthdays combined layout */
.hp-bio-birthdays .bio-card, .hp-bio-birthdays .birthdays-card
{
	background:var(--fq-infobox-bg);
	border:1px solid var(--bs-border-color-translucent);
	border-radius: 0.75rem;
	padding: 1.1rem 1.25rem 1rem;
}
.hp-bio-birthdays .bio-card .bio-desc
{
	line-height: 1.4;
}
.hp-bio-birthdays .birthdays-card
{
	position: relative;
	overflow: hidden;
}
.hp-bio-birthdays .birthdays-table td
{
	font-size: 0.78rem;
	padding: 0.35rem 0.45rem;
}
.hp-bio-birthdays .toggle-more
{
	text-decoration: none;
}
.hp-bio-birthdays .toggle-more:hover
{
	text-decoration: underline;
}
/* Match heights on large viewports */
@media (min-width: 992px)
{
	.hp-bio-birthdays .row > [class*="col-"]
	{
		display: flex;
	}
	.hp-bio-birthdays .row > [class*="col-"] > div
	{
		width: 100%;
	}
	.hp-bio-birthdays .bio-flex
	{
		flex-direction: row;
	}
}
/* Minor tweak: preserve stacking on small */
@media (max-width: 575.98px)
{
	.hp-bio-birthdays .bio-flex
	{
		flex-direction: column;
	}
	.hp-bio-birthdays .bio-photo
	{
		margin-bottom: 0.75rem !important;
	}
}
/* Trending authors author image (restored) */
.author-trending .AuthorImg
{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 220px;
	opacity: 0.82;
	border-top-left-radius:var(--bs-border-radius);
	border-top-right-radius:var(--bs-border-radius);
	transition: opacity 0.25s;
}
.author-trending .AuthorImg:hover
{
	opacity: 1;
}
