/*
 * Falue public profile: joined Leave a Mark + Message capsule.
 * Scope is intentionally limited to the public timeline profile.
 */
.wo_user_profile[data-page="timeline"]
.profile-public-actions > [data-profile-mark-message-capsule] {
	--profile-action-capsule-bg: var(--profile-secondary-background, #fff);
	--profile-action-capsule-text: var(--profile-secondary-text, #161c2d);
	--profile-action-capsule-border: var(--profile-secondary-border, rgba(25, 31, 52, .08));
	--profile-action-capsule-hover: var(--profile-secondary-hover-background, #f5f4ff);
	--profile-action-capsule-accent: var(--profile-primary-background, var(--main, #5034e8));

	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	flex: 0 1 286px;
	width: 286px;
	max-width: 286px;
	min-width: 0;
	height: 52px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	box-sizing: border-box;
	background: var(--profile-action-capsule-bg);
	border: 1px solid var(--profile-action-capsule-border);
	border-radius: 14px;
	color: var(--profile-action-capsule-text);
	box-shadow: 0 5px 14px rgba(35, 39, 66, .09), 0 1px 3px rgba(35, 39, 66, .04);
}

.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-leave-mark,
.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-message-action {
	position: relative;
	display: flex !important;
	align-items: center;
	justify-content: center;
	min-width: 0 !important;
	width: 100% !important;
	min-height: 50px !important;
	height: 50px !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: inherit !important;
	transform: none !important;
}

.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-leave-mark,
.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-message-action > .btn {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 0 !important;
	width: 100% !important;
	min-height: 50px !important;
	height: 50px !important;
	margin: 0 !important;
	padding: 0 10px !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: inherit !important;
	font-size: 12px;
	font-weight: 650;
	line-height: 1;
	white-space: nowrap;
	filter: none !important;
	transform: none !important;
}

.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-message-action::before {
	content: "";
	position: absolute;
	inset-block: 15px;
	inset-inline-start: 0;
	width: 1px;
	background: var(--profile-action-capsule-border);
	pointer-events: none;
	z-index: 1;
}

.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-leave-mark:hover,
.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-leave-mark:focus-visible,
.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-message-action:hover,
.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-message-action:focus-within {
	background: var(--profile-action-capsule-hover) !important;
}

.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-leave-mark.is-marked {
	background: color-mix(in srgb, var(--profile-action-capsule-accent) 9%, transparent) !important;
}

.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-leave-mark > svg,
.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] > .profile-message-action > .btn > svg {
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	margin: 0;
	color: var(--profile-action-capsule-accent) !important;
}

.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] .profile-mark-button-text,
.wo_user_profile[data-page="timeline"]
[data-profile-mark-message-capsule] .button-text {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.wo_user_profile[data-page="timeline"]
	.profile-public-actions > [data-profile-mark-message-capsule] {
		flex: 2.25 1 0;
		width: auto;
		max-width: none;
		height: 44px;
		border-radius: 13px;
	}

	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-leave-mark,
	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-message-action,
	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-message-action > .btn {
		min-height: 42px !important;
		height: 42px !important;
	}

	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-leave-mark,
	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-message-action > .btn {
		gap: 6px;
		padding: 0 5px !important;
		font-size: 11px;
	}

	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-message-action::before {
		inset-block: 11px;
	}

	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-leave-mark > svg,
	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-message-action > .btn > svg {
		flex-basis: 15px;
		width: 15px;
		height: 15px;
	}
}

@media (max-width: 360px) {
	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-leave-mark,
	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-message-action > .btn {
		gap: 5px;
		padding-inline: 3px !important;
		font-size: 10px;
	}

	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-leave-mark > svg,
	.wo_user_profile[data-page="timeline"]
	[data-profile-mark-message-capsule] > .profile-message-action > .btn > svg {
		flex-basis: 14px;
		width: 14px;
		height: 14px;
	}
}
