@charset "utf-8";

/* ==========================================
   CONTAINER
========================================== */

.wp-about-author-container{
	display:flex;
	clear:both;
	gap:24px;
	box-sizing:border-box;
	align-items:flex-start;
}

/* ==========================================
   LAYOUTS
========================================== */

.wp-about-author-layout-default{
	flex-direction:row;
}

.wp-about-author-layout-right{
	flex-direction:row-reverse;
}

.wp-about-author-layout-center-image{
	flex-direction:column;
	align-items:center;
	text-align:center;
}

.wp-about-author-layout-center-text{
	flex-direction:column-reverse;
	align-items:center;
	text-align:center;
}

@media (max-width:768px){

	.wp-about-author-layout-default,
	.wp-about-author-layout-right,
	.wp-about-author-layout-center-image,
	.wp-about-author-layout-center-text{

		flex-direction:column;
		align-items:center;
		text-align:center;

	}

}

/* ==========================================
   TIPOS DE CAIXA
========================================== */

.wp-about-author-container-top{
	border-top:4px solid var(--wp-about-author-accent,#000);
	margin-top:2rem;
	padding:2rem 0;
}

.wp-about-author-container-around{
	border:1px solid var(--wp-about-author-accent,#DDD);
	border-radius:10px;
	margin-top:2rem;
	padding:24px;
}

.wp-about-author-container-none{
	border:none;
}

.wp-about-author-container-stripe{
	border-left:4px solid var(--wp-about-author-accent,#000);
	padding:20px;
}

.wp-about-author-container.wau-has-bg{
	padding:24px;
}

/* ==========================================
   FOTO
========================================== */

.wp-about-author-pic{

	flex-shrink:0;

	width:90px;
	height:90px;

	border-radius:50%;
	overflow:hidden;

	background:#fff;
	border:1px solid #e5e5e5;

	padding:0;

}

.wp-about-author-pic img{

	width:100%;
	height:100%;

	display:block;

	object-fit:cover;

	border-radius:50%;

}

/* ==========================================
   TEXTO
========================================== */

.wp-about-author-text{

	flex:1;

}

/* NOME DO AUTOR */

.wp-about-author-container h3,
.wp-about-author-container h3 a{

	margin:0 0 15px !important;

	font-size:30px !important;

	font-weight:700 !important;

	line-height:1.2 !important;

	text-decoration:none;

}

/* BIOGRAFIA */

.wp-about-author-container p{

	font-size:15px !important;

	line-height:1.8 !important;

	margin:0 0 20px !important;

}

/* LINKS */

.wp-about-author-container a{

	font-size:14px;

}

/* ==========================================
   REDES SOCIAIS
========================================== */

.contact-svgs{

	display:flex;

	gap:8px;

	flex-wrap:wrap;

	margin-top:15px;

	align-items:center;

	line-height:1;

}