/* Venocipal updates feed — same navy and crimson as the account area. */

.vcp-feed {
	max-width: 640px;
}

.vcp-feed-top {
	padding: 1.25rem 0 1rem;
	border-bottom: 2px solid var(--vcp-navy);
	margin-bottom: 1.5rem;
}

.vcp-feed-top h2 {
	margin-bottom: .25rem;
}

.vcp-feed-top p {
	margin: .25rem 0 0;
}

.vcp-feed-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

/* Card */

.vcp-post {
	background: #fff;
	border: 1px solid var(--vcp-line);
	border-radius: 10px;
	padding: 1.1rem 1.2rem 1rem;
}

.vcp-post-head {
	display: flex;
	align-items: center;
	gap: .7rem;
}

.vcp-avatar {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--vcp-navy);
	color: #fff;
	font-weight: 700;
	font-size: .85rem;
	letter-spacing: .03em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vcp-post-by {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.vcp-post-by strong {
	color: var(--vcp-navy);
}

.vcp-post-by .vcp-muted {
	font-size: .8rem;
}

.vcp-pin {
	margin-left: auto;
	font-size: .72rem;
	font-weight: 600;
	color: var(--vcp-crimson);
	border: 1px solid currentColor;
	border-radius: 3px;
	padding: .1rem .4rem;
}

.vcp-post-title {
	margin: .9rem 0 .3rem;
	font-size: 1.15rem;
}

.vcp-post-body {
	margin: .4rem 0 .9rem;
}

.vcp-post-body p {
	margin: 0 0 .7rem;
}

.vcp-post-body p:last-child {
	margin-bottom: 0;
}

/* Media */

.vcp-media {
	margin: 0 -1.2rem .9rem;
	background: var(--vcp-navy);
	position: relative;
	line-height: 0;
}

.vcp-media img,
.vcp-media video {
	width: 100%;
	height: auto;
	display: block;
}

.vcp-media-video video {
	max-height: 78vh;
	background: #000;
}

.vcp-play {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	position: relative;
}

.vcp-play-ico {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: rgba(11, 31, 58, .82);
}

.vcp-play-ico::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-left: 18px solid #fff;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	transform: translateX(3px);
}

.vcp-play:hover .vcp-play-ico,
.vcp-play:focus-visible .vcp-play-ico {
	background: var(--vcp-crimson);
}

.vcp-embed-live iframe,
.vcp-embed-live video {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	display: block;
	border: 0;
}

.vcp-sound {
	position: absolute;
	right: .6rem;
	bottom: .6rem;
	border: 0;
	border-radius: 4px;
	padding: .3rem .6rem;
	font-size: .75rem;
	line-height: 1.4;
	color: #fff;
	background: rgba(11, 31, 58, .78);
	cursor: pointer;
}

.vcp-sound.is-on {
	background: var(--vcp-crimson);
}

/* Counts and actions */

.vcp-post-cta {
	margin: 0 0 .9rem;
}

.vcp-counts {
	display: flex;
	gap: 1rem;
	font-size: .82rem;
	color: var(--vcp-muted);
	padding-bottom: .6rem;
}

.vcp-counts .is-zero {
	display: none;
}

.vcp-actions {
	display: flex;
	gap: .4rem;
	border-top: 1px solid var(--vcp-line);
	border-bottom: 1px solid var(--vcp-line);
	padding: .35rem 0;
}

.vcp-act {
	flex: 1 1 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .35rem;
	background: none;
	border: 0;
	border-radius: 6px;
	padding: .5rem .4rem;
	font-size: .86rem;
	font-weight: 600;
	color: var(--vcp-muted);
	text-decoration: none;
	cursor: pointer;
}

.vcp-act:hover,
.vcp-act:focus-visible {
	background: var(--vcp-bg);
	color: var(--vcp-navy);
}

.vcp-act.is-on {
	color: var(--vcp-crimson);
}

.vcp-act-ico {
	font-size: .9em;
}

/* Comments */

.vcp-comments {
	padding-top: .7rem;
}

.vcp-comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.vcp-comment {
	background: var(--vcp-bg);
	border-radius: 8px;
	padding: .55rem .75rem;
	font-size: .9rem;
}

.vcp-comment.is-staff {
	background: #f0f4fa;
	border-left: 3px solid var(--vcp-navy);
}

.vcp-comment-who {
	display: block;
	font-weight: 600;
	color: var(--vcp-navy);
}

.vcp-comment-text {
	display: block;
	margin: .1rem 0 .15rem;
	white-space: pre-wrap;
}

.vcp-comment-when {
	font-size: .74rem;
}

.vcp-badge {
	font-size: .68rem;
	font-weight: 600;
	color: #fff;
	background: var(--vcp-crimson);
	border-radius: 3px;
	padding: .05rem .35rem;
	vertical-align: 1px;
}

.vcp-load-comments {
	background: none;
	border: 0;
	padding: .5rem 0 0;
	cursor: pointer;
	font-size: .85rem;
}

.vcp-comment-form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: .5rem;
	margin-top: .8rem;
}

.vcp-comment-form textarea {
	flex: 1 1 60%;
	min-height: 42px;
	resize: none;
	border: 1px solid var(--vcp-line);
	border-radius: 21px;
	padding: .6rem .9rem;
	font: inherit;
	font-size: .9rem;
	line-height: 1.4;
}

.vcp-comment-form textarea:focus {
	outline: 2px solid var(--vcp-navy);
	outline-offset: 1px;
	border-color: transparent;
}

.vcp-form-msg {
	flex: 1 0 100%;
	font-size: .82rem;
	color: var(--vcp-muted);
}

.vcp-signin {
	margin: .8rem 0 0;
}

/* Buttons */

.vcp-btn {
	display: inline-block;
	border: 1px solid transparent;
	border-radius: 6px;
	padding: .55rem 1.1rem;
	font: inherit;
	font-size: .88rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
}

.vcp-btn-solid {
	background: var(--vcp-crimson);
	color: #fff;
}

.vcp-btn-solid:hover {
	background: #a70d26;
	color: #fff;
}

.vcp-btn-solid[disabled] {
	opacity: .6;
	cursor: default;
}

.vcp-btn-ghost {
	background: #fff;
	border-color: var(--vcp-line);
	color: var(--vcp-navy);
	width: 100%;
}

.vcp-btn-ghost:hover {
	border-color: var(--vcp-navy);
}

.vcp-feed-more {
	margin: 1.4rem 0 2rem;
}

.vcp-feed-end {
	text-align: center;
	margin: 1.4rem 0 2rem;
}

.vcp-card-empty {
	border: 1px dashed var(--vcp-line);
	border-radius: 10px;
	padding: 2rem 1.2rem;
	text-align: center;
	color: var(--vcp-muted);
}

@media (max-width: 600px) {
	.vcp-post {
		border-left: 0;
		border-right: 0;
		border-radius: 0;
		padding: 1rem .9rem;
	}

	.vcp-media {
		margin-left: -.9rem;
		margin-right: -.9rem;
	}

	.vcp-act {
		font-size: .8rem;
	}

	.vcp-comment-form textarea {
		flex-basis: 100%;
	}
}
