.semod-lineup {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.semod-lineup__embed {
	display: block;
}

.semod-lineup__title {
	margin: 0;
	text-align: center;
	font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.semod-lineup__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.semod-lineup__card {
	margin: 0;
}

.semod-lineup__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: inherit;
}

.semod-lineup__image {
	display: block;
	width: 100%;
	overflow: hidden;
}

.semod-lineup__image img {
	display: block;
	width: 100%;
	height: auto;
}

.semod-lineup__name {
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	letter-spacing: 0.01em;
}

.semod-message-detail {
	max-width: 1000px;
	margin: 0 auto;
	padding: 1.5rem 1rem 3rem;
	color: #111;
}

.semod-message-detail__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	margin-bottom: 1rem;
	text-align: center;
}

.semod-message-detail__meta {
	margin: 0;
	font-size: 0.95rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #555;
}

.semod-message-detail__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.semod-message-detail__series {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: #b35f1d;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.semod-message-detail__player {
	overflow: hidden;
	background: #111;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
	aspect-ratio: 16 / 9;
}

.semod-message-detail__player iframe,
.semod-message-detail__player object,
.semod-message-detail__player embed {
	display: block;
	width: 100%;
	height: 100%;
}

.semod-message-detail__description {
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.65;
	color: #222;
}

.semod-message-detail__panel {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1rem;
	justify-content: center;
}

.semod-message-notes__file {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.8rem 1.05rem;
	background: #fff;
	color: #ef9023;
	font-weight: 700;
	text-decoration: none;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(239, 144, 35, 0.18);
}

.semod-message-notes__file:hover {
	text-decoration: underline;
}

.semod-message-notes__icon,
.semod-message-share__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.2rem;
	height: 1.2rem;
	flex: 0 0 1.2rem;
}

.semod-message-notes__icon svg,
.semod-message-share__icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.semod-message-notes__empty {
	margin: 0;
	color: #666;
}

.semod-message-detail__share {
	display: flex;
	flex: 1 1 100%;
	justify-content: center;
}

.semod-message-debug {
	flex: 1 1 100%;
	margin-top: 0.5rem;
}

.semod-message-debug pre {
	margin: 0;
	padding: 1rem;
	overflow: auto;
	background: #111;
	color: #f3f3f3;
	border-radius: 12px;
	font-size: 12px;
	line-height: 1.45;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.semod-message-share {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.semod-message-share__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border-radius: 50%;
	background: #fff;
	color: #ef9023;
	font-weight: 800;
	text-decoration: none;
	border: 1px solid rgba(239, 144, 35, 0.18);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	transition: transform 0.15s ease, background 0.15s ease;
}

.semod-message-share__item:hover {
	transform: translateY(-1px);
	background: #fff;
}

.semod-message-share__item:hover,
.semod-message-notes__file:hover {
	text-decoration: none;
}

.semod-message-share__copy {
	cursor: pointer;
}

.semod-message-share__copy.is-copied {
	background: #fff4e7;
}

.semod-message-action {
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid rgba(179, 95, 29, 0.14);
	font: inherit;
	line-height: 1;
}

.semod-message-action:focus {
	outline: 2px solid rgba(239, 144, 35, 0.35);
	outline-offset: 2px;
}

@media (max-width: 1000px) {
	.semod-lineup__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.semod-lineup__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.semod-lineup__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.semod-message-detail {
		padding-inline: 0.75rem;
	}
}
