/* I belong to ../../layouts/shortcodes/profiled-quote.html */

.profiled-quote {
	float: left;
	margin-bottom: 30px;

	/* Big screen */
	@media screen and (min-width: 761px) {
		padding-left: 40px;
		width: 100%;

		.profile,
		blockquote {
			max-width: var(--standard-width);
		}
	}

	/* Small screen */
	@media screen and (max-width: 760px) {
		padding-left: 3%;
		max-width: 90%;
	}

	border-left: 5px solid var(--foreground-colour);

	blockquote {
		margin: 0px;
		white-space: break-spaces;

		p {
			width: 100%;
			margin: 0px;
		}
	}

	.profile {
		display: flex;
		height: 70px;
		margin-bottom: 5px;

		.profile-photo {
			display: inline-block;
			margin-right: 10px;
			height: inherit;
			scale: 1 1;
			border-radius: 10px;
		}

		.names {
			margin-left: 5px;
			display: inline-block;
			width: fit-content;
			margin-top: auto;

			.name {
				font-weight: bold;
			}
		}
	}

	.source {
		float: right;
	}
}