
/*
	GoToSocial
	Copyright (C) GoToSocial Authors admin@gotosocial.org
	SPDX-License-Identifier: AGPL-3.0-or-later

	This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU Affero General Public License as published by
	the Free Software Foundation, either version 3 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU Affero General Public License for more details.

	You should have received a copy of the GNU Affero General Public License
	along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

.page {
	/* 
		Profile page can be a little wider than default
		page, since we're using a side-by-side column view.
	*/
	grid-template-columns: 1fr minmax(auto, 60rem) 1fr;
	grid-template-columns: 1fr min(92%, 65rem) 1fr;
}

.profile .column-split {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.profile .profile-header {
	background: var(--profile-bg);
	border-radius: var(--br);
	overflow: hidden;
	margin-bottom: 1rem;
}

.profile .profile-header .header-image-wrapper {
		position: relative;
		padding-top: 33.33%;
	}

/* aspect-ratio 1/3 */

.profile .profile-header .header-image-wrapper img {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			width: 100%;
			height: 100%;
			-o-object-fit: cover;
			   object-fit: cover;
		}

.profile .profile-header {
	--avatar-size: 8.5rem;
	--name-size: 3rem;
	--username-size: 2rem;
	--overlap: calc(var(--avatar-size) - var(--name-size) - var(--username-size));
}

/* 
		Basic info container has the user's avatar, display- and username, and role
		It's partially overlapped over the header image, by a negative margin-top.
	*/

.profile .profile-header .basic-info {
		position: relative;
		display: grid;
		box-sizing: border-box;
		grid-template-columns: var(--avatar-size) auto 1fr;
		grid-template-rows: var(--overlap) var(--name-size) auto;
		grid-template-areas:
			"avatar . ."
			"avatar namerole namerole"
			"avatar namerole namerole";

		margin: 1rem;
		margin-top: calc(-1 * var(--overlap));
		gap: 0 1rem;
	}

.profile .profile-header .basic-info .avatar {
			grid-area: avatar;
			height: var(--avatar-size);
			width: var(--avatar-size);
			border: 0.2rem solid var(--avatar-border);
			border-radius: var(--br);
			overflow: hidden;
		}

/* prevents image extending beyond rounded borders */

.profile .profile-header .basic-info .avatar img {
				height: 100%;
				width: 100%;
				-o-object-fit: cover;
				   object-fit: cover;
			}

.profile .profile-header .basic-info .namerole {
			grid-area: namerole;

			display: grid;
			gap: 0 1rem;
			box-sizing: border-box;
			grid-template-columns: auto 1fr;
			grid-template-rows: var(--name-size) auto;
			grid-template-areas:
				"displayname displayname"
				"username role";
		}

.profile .profile-header .basic-info .namerole .displayname {
				grid-area: displayname;
				line-height: var(--name-size);
				font-size: 1.5rem;
				font-weight: bold;
			}

.profile .profile-header .basic-info .namerole .username {
				min-width: 0;
				grid-area: username;
				line-height: var(--username-size);
	
				font-size: 1rem;
				font-weight: bold;
				color: var(--fg-accent);
				-webkit-user-select: all;
				        user-select: all;
			}

.profile .profile-header .basic-info .namerole .role {
				background: var(--bg);
				color: var(--fg);
				border: 0.13rem solid var(--bg);
	
				grid-area: role;
				align-self: center;
				justify-self: start;
				border-radius: var(--br);
				padding: 0.3rem;
				
				line-height: 1.1rem;
				font-size: 0.9rem;
				font-variant: small-caps;
				font-weight: bold;
			}

.profile .profile-header .basic-info .namerole .role.admin {
					color: var(--role-admin);
					border-color: var(--role-admin);
				}

.profile .profile-header .basic-info .namerole .role.moderator {
					color: var(--role-mod);
					border-color: var(--role-mod);
				}

@media screen and (max-width: 750px) {
		.profile .profile-header .basic-info {
			grid-template-columns: auto 1fr;
			grid-template-rows: var(--avatar-size) var(--name-size) auto;
			grid-template-areas:
				"avatar avatar"
				"namerole namerole"
				"namerole namerole";
		}
			
			.profile .profile-header .basic-info .namerole {
				grid-template-columns: 1fr;
				grid-template-rows: var(--name-size) auto;
				grid-template-areas:
					"displayname displayname"
					"username role";
			}
				
				.profile .profile-header .basic-info .namerole .displayname {
					font-size: 1.4rem;
				}
}

.profile .statuses-wrapper {
	flex: 65 25rem; 
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	min-width: 0%;
}

.profile .statuses {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.profile .statuses .rss-icon {
		display: block;
		margin: -0.25rem 0;
	}

.profile .statuses .rss-icon .fa {
			font-size: 2rem;
			-o-object-fit: contain;
			   object-fit: contain;
			vertical-align: middle;
			color: var(--orange2);
			/*
				Can't size a single-color background, so we use
				a linear-gradient that's effectively white.
			*/
			background: linear-gradient(to right, var(--white1) 100%, transparent 0) no-repeat center center;
			background-size: 1.2rem 1.4rem;
		}

.profile .statuses .backnextlinks {
		display: flex;
		justify-content: space-between;
	}

.profile .statuses .backnextlinks .next {
			margin-left: auto;
		}

.profile .about-user {
	flex: 35 14rem;
	border-radius: var(--br);
	overflow: hidden;
}

.profile .about-user .col-header {
		margin-bottom: -0.25rem;
	}

.profile .about-user dt {
		font-weight: bold;
	}

.profile .about-user .fields {
		background: var(--profile-bg);
		display: flex;
		flex-direction: column;
		padding: 0 0.5rem;
		padding-top: 0.25rem;
	}

.profile .about-user .fields .field {
			padding: 0.25rem;
			display: flex;
			flex-direction: column;
			border-bottom: 0.1rem solid var(--gray2);
		}

.profile .about-user .fields .field > dt, .profile .about-user .fields .field > dd {
				word-break: break-word;
			}

.profile .about-user .fields .field:first-child {
				border-top: 0.1rem solid var(--gray2);
			}

.profile .about-user .bio {
		background: var(--profile-bg);
		padding: 1rem 0.75rem;
		padding-bottom: 1.25rem;
	}

.profile .about-user .accountstats {
		background: var(--bg-accent);
		padding: 0.75rem;
		
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 0.25rem 1rem;
	}
