// =================================================================
// Profile Basic Format Settings
// =================================================================

// Basic Profiles Format Photo Size
//
// Adjusts the size of the basic profile photo.
//
// Styleguide Profiles.Basic Format.Photo Size
//
// Access: Public
//
// Since: 2.0.0

$profile-photo-basic-size:                  $profile-photo-default-size;

// =================================================================
// Profile Basic Format Styles
// =================================================================

// Styles the basic profile format.
//
// Styleguide Components.Profiles Basic Format.profile-format-basic
//
// Access: Public
//
// Since: 2.0.0

.profile-format-basic {
	border-top: var(--profile-border, var(--bu-border, #{$border-profiles}));
}

// Styles a basic profile item.
//
// Styleguide Components.Profiles Basic Format.profile-item-basic
//
// Access: Public
//
// Since: 2.0.0

.profile-item-basic {
	border-bottom: var(--profile-border, var(--bu-border, #{$border-profiles}));
	margin-bottom: 0;
	min-height: 100px;
	padding: $padding ( $profile-photo-basic-size + $margin-small ) $padding 0;
}

// Styles a basic profile photo.
//
// Styleguide Components.Profiles Basic Format.profile-photo-basic
//
// Access: Public
//
// Since: 2.0.0

.profile-photo-basic {
	height: var(--profile-photo-basic-size, #{$profile-photo-basic-size});
	overflow: hidden;
	position: absolute;
	right: 0;
	width: var(--profile-photo-basic-size, #{$profile-photo-basic-size});
}
