/* story featured object */
.story--featured-object {
	clear: both;
	margin: 32px 0;
	padding: 16px 20px;
	border: 1px solid rgb(209, 209, 209);
}

/* story featured object inner */
.story--featured-object--inner {
	display: flex;
	gap: 12px;
}

/* story featured object label */
.story--featured-object--label {
	font-size: 0.75rem;
	line-height: 1.5;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--text-color-secondary);
}

/* story featured object body */
.story--featured-object--body {
	display: flex;
	flex-direction: column;
	padding-top: 12px;
	margin-top: auto;
}

/* story featured object media */
.story--featured-object--media {
	flex: 0 0 104px;
	width: 104px;
}

/* story featured object media link */
.story--featured-object--media-link {
	display: block;
}

/* story featured object image */
.story--featured-object--image {
	display: block;
	width: 104px;
	height: 104px;
	object-fit: cover;
}

/* story featured object content */
.story--featured-object--content {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
}

/* story featured object title */
.story--featured-object--title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
}

/* story featured object title link */
.story--featured-object--title a {
	color: var(--text-color-primary);
}

/* story featured object title link focus visible + hover */
.story--featured-object--title a:focus-visible,
.story--featured-object--title a:hover {
	text-decoration: underline;
	color: var(--text-color-primary);
}

/* story featured object artist */
.story--featured-object--artist {
	font-size: 1rem;
	line-height: 1.5;
	color: color-mix(in srgb, var(--text-color-primary) 70%, transparent);
}

/* filter link */
.story--featured-object--filter-link {
	color: inherit;
}

/* filter link focus visible + hover */
.story--featured-object--filter-link:focus-visible,
.story--featured-object--filter-link:hover {
	text-decoration: underline;
	color: inherit;
}

/* story featured object meta */
.story--featured-object--meta {
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.5;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--text-color-primary) 50%, transparent);
}

/* story featured object actions */
.story--featured-object--actions {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 4px;
}

/* story featured object action links */
.story--featured-object--play,
.story--featured-object--view {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--text-color-primary);
	text-decoration: none;
}

/* story featured object action links focus visible + hover */
.story--featured-object--play:focus-visible,
.story--featured-object--play:hover,
.story--featured-object--view:focus-visible,
.story--featured-object--view:hover {
	color: var(--text-color-secondary);
}

/* story featured object mobile */
@media screen and (max-width: 543px) {
	.story--featured-object--body {
		align-items: flex-start;
	}

	.story--featured-object--media,
	.story--featured-object--image {
		flex-basis: 104px;
		width: 104px;
		height: 104px;
	}

	.story--featured-object--title {
		font-size: 1.125rem;
	}

	.story--featured-object--actions {
		gap: 8px;
	}
}