/* PLUGIN: RA About Me Widget */
.ra-about-widget {
   	background-color: var(--pwh-containers);
   	border: var(--pwh-border-width) var(--pwh-border-style) var(--pwh-border-color);
	border-radius: var(--pwh-border-radius);
	box-sizing: border-box;
	padding: 0px 20px 20px 20px;
	width: 100%;
}
.ra-about-background {
	background-position: center 5px;
    background-repeat: no-repeat;
	background-size: 300px 121px; 
}
/* Default Background When No Image Exists */
.ra-about-background:not([style]) {
    background-color: #ffffff;
}
/* Avatar */
.ra-user-avatar {
	margin-bottom: 15px;
	padding-top: 25px;
	text-align: center;
}
.ra-user-avatar-image {
	border: 5px solid #ffffff;
	border-radius: 50%;
    height: 175px;
    object-fit: cover;
	width: 175px;
}
/* User Name */
.ra-user-name {
	color: var(--primary-color);
    font-size: 26px;
    line-height: 1.2;
	margin: 5px 0;
	text-align: center;
}
/* Tagline */
.ra-user-tagline {
    font-size: 16px;
    font-style: italic;
    margin: -10px 0px 15px 0px;
	text-align: center;
}
/* Description */
.ra-user-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
	max-width: 500px;
    text-align: left;
}
/* Posts Link */
.ra-about-post-link {
	text-align: center;
}
.ra-about-post-link a {
	background-color: #ffffff;
	border: 2px solid var(--primary-color);
	border-radius: 25px;
	color: var(--primary-color) !important;
	display: inline-block;
	font-weight: 700;
    padding: 10px 22px;
	text-align: center;
    text-decoration: none;
    transition: all .3s ease;
}
.ra-about-post-link a:hover {
	background-color: var(--primary-color);
	color: #ffffff !important;
    opacity: .85;
    text-decoration: none;
}
.ra-about-widget * {
    box-sizing: border-box;
}
/* Mobile */
@media screen and (max-width: 600px) {
    .ra-about-background {
        min-height: 300px;
    }
    .ra-about-overlay {
        min-height: 300px;
        padding: 25px 15px;
    }
    .ra-user-name {
        font-size: 22px;
    }
    .ra-user-avatar-image {
		height: 95px;
        width: 95px;
    }
}