/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,  figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
} */
/* HTML5 display-role reset for older browsers */
/* article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
} */

:root{
    --orange: #dd7447;
    --blue: #0f509b;
    --yellow: #f3c237;
}


/* my stuff */
*, *:before, *:after{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html, body{
	font-family: Sans-serif;
	font-size: 18px;
	font-weight: 100;
}

h2{
	font-size: 32px;
	font-weight: 100;
	line-height: 36px;
}
a{
	text-decoration: none;
}
strong, a.btn{
	font-weight: bold;
}

p{
	font-weight: 300;
	line-height: 22px;
}

.white{
	color: white;
}

a.email{
	border-bottom: 1px solid var(--blue);
	color: var(--blue);
}

a.btn{
	/* color: var(--blue); */
	color: #666;
	display: inline-block;
	font-size: .65rem;
	font-weight: 300;
	padding: 10px;
}

a.btn i{
	font-size: 1.5rem;
}

section.standalone-bio, section.included-bio{
	padding: 0 30px;
	margin: 0 auto;
	text-align: center;
	width: 100%;
}

.standalone-bio-top{
	/* background: linear-gradient(330deg, rgba(243,194,55,1) 0%, rgba(221,116,71,1) 40%); */
	background: #efefef;
	height: 150px;
}
.included-bio-top{
	background: #9c9c9c;
	height: 280px;
}
img.agent{
	border: 15px solid white;
	border-radius: 50%;
	margin: -100px 0 0;
	width: 200px;
}


.bio-more-link{
	color: #666;
	font-size: .85rem;
	font-weight: 300;
}
.bio-more .bio-content {
    position: relative; 
	line-height: 1.5rem;
    max-height: 100px;
	max-width: 600px;
	margin: 0 auto;
    overflow: hidden;
	text-align: left;
    /* Transition for smooth expansion */
    transition: max-height 0.8s ease-in-out;
}
.bio-more .bio-content p{
	line-height: 1.5rem;
}
.bio-more .bio-content.expanded {
    /* Use a large specific value instead of 'none' to allow transition */
    max-height: 2000px;
}
.bio-more .bio-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px; /* This should be tweaked based on your content and desired effect */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}
.bio-more .bio-content.included::after{
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(244, 244, 244, 1));
}

.bio-more .bio-content.expanded::after {
    /* Remove the effect when expanded */
    display: none;
}


#qr {
    position: relative;
    display: block;
	max-height: 0;
	overflow: hidden;
    /* Add any other necessary styles */
	transition: max-height 0.8s ease-in-out;
}
#qr.expanded {
	max-height: 340px;
}
#copyMessage {
    display: none;
    background-color: var(--yellow);
	border-radius: 5px;
	font-size: 1rem;
    padding: 10px;
	position: absolute;
	/* center this div horizontally and vertically */
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    margin: 5px 0;
    text-align: center;
    transition: opacity 0.5s ease-out;
}

#copyMessage.fadeOut {
    opacity: 0;
}


footer{
	background: #333;
	padding: 40px;
	margin-top: 40px;
	text-align: center;
}
footer small{
	display: block;
	font-size: 12px;
	line-height: 16px;
	margin: 80px 0 0 0;
}




