/* 2026 홈페이지 전용 CSS */

/* PSG font for team names */
@font-face {
	font-family: 'Pitalic';
	src: url('/2026/psg-font.woff2') format('woff2');
	font-weight: 400;
	font-display: swap;
}


/* 통합 피드 스타일 - 가로 스크롤 카드 */
section#feed ul {
	display: flex;
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
	padding: 0 20px;
	gap: 4px;
	min-height: 100px;
}
section#feed ul::-webkit-scrollbar { display: none; }
section#feed ul li {
	flex: 0 0 160px;
	width: 160px;
	position: relative;
	z-index: 1;
}
section#feed ul li a {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-color: var(--color-bg-card);
	border-radius: 12px;
	padding: 12px;
	height: 100px;
}
section#feed ul li strong {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: var(--color-text);
}
section#feed ul li .author {
	font-size: 10px;
	font-weight: 500;
	color: var(--color-text-secondary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: auto;
}
section#feed ul li .meta {
	display: flex;
	align-items: center;
	gap: 2px;
	font-size: 10px;
	font-weight: 500;
	color: var(--color-text-secondary);
}
section#feed ul li .meta .comment_count {
	margin-left: auto;
}

/* 뉴스 카드 - 썸네일 + 텍스트 */
section#feed ul li.news { flex: 0 0 240px; width: 240px; }
section#feed ul li.news a {
	flex-direction: row;
	padding: 0;
	overflow: hidden;
}
section#feed ul li.news a .news_thumb {
	flex: 0 0 100px;
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 12px 0 0 12px;
}
section#feed ul li.news a .news_text {
	flex: 1;
	min-width: 0;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
section#feed ul li.news strong {
	-webkit-line-clamp: 3;
}
section#feed ul li.news .meta {
	margin-top: auto;
}

/* 경기 결과 카드 - 대회별 컬러 */
section#feed ul li.match a {
	background: linear-gradient(135deg, #e0e0e0 0%, var(--color-bg-card) 100%);
}
section#feed ul li.match[data-comp="laliga"] a {
	background: linear-gradient(135deg, #ffd9d7 0%, var(--color-bg-card) 100%);
}
section#feed ul li.match[data-comp="ucl"] a {
	background: linear-gradient(135deg, #ccd5ef 0%, var(--color-bg-card) 100%);
}
section#feed ul li.match[data-comp="copa"] a {
	background: linear-gradient(135deg, #f5d0d8 0%, var(--color-bg-card) 100%);
}
section#feed ul li.match[data-comp="supercopa"] a {
	background: linear-gradient(135deg, #f0e6c0 0%, var(--color-bg-card) 100%);
}
@media (prefers-color-scheme: dark) {
	section#feed ul li.match a {
		background: linear-gradient(135deg, #2a2a2a 0%, var(--color-bg-card) 100%);
	}
	section#feed ul li.match[data-comp="laliga"] a {
		background: linear-gradient(135deg, #3a1a19 0%, var(--color-bg-card) 100%);
	}
	section#feed ul li.match[data-comp="ucl"] a {
		background: linear-gradient(135deg, #1a2240 0%, var(--color-bg-card) 100%);
	}
	section#feed ul li.match[data-comp="copa"] a {
		background: linear-gradient(135deg, #3a1520 0%, var(--color-bg-card) 100%);
	}
	section#feed ul li.match[data-comp="supercopa"] a {
		background: linear-gradient(135deg, #332c14 0%, var(--color-bg-card) 100%);
	}
}
section#feed ul li.match a { position: relative; }
section#feed ul li.match .comp_logo {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 20px;
	height: 20px;
	object-fit: contain;
}
section#feed ul li.match .match_score { text-align: left; line-height: 1.3; }
section#feed ul li.match .match_score .team { display: flex; align-items: center; gap: 0; margin: 0px 0; }
section#feed ul li.match .match_score .team b { font-size: 14px; font-weight: 600; min-width: 16px; flex-shrink: 0; }
section#feed ul li.match .match_score .team span { font-size: 14px; font-weight: 600; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
section#feed ul li.match .meta { margin-top: auto; }

/* 피드 필터 - sticky 카드 */
section#feed ul li.feed_filter {
	flex: 0 0 44px;
	width: 44px;
	position: sticky;
	left: 0;
	z-index: 0;
	transition: opacity 0.3s ease;
}
section#feed ul li.feed_filter.hidden {
	opacity: 0;
	pointer-events: none;
}
section#feed ul li.feed_filter .filter_btn {
	width: 44px;
	height: 100%;
	border: none;
	background-color: var(--color-bg-card);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
}
section#feed ul li.feed_filter .filter_btn .material-symbols-rounded {
	font-size: 20px;
	color: var(--color-text-muted);
}
section#feed .filter_menu {
	display: none;
	position: fixed;
	background: var(--color-bg-elevated);
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,.2);
	overflow: hidden;
	min-width: 100px;
	z-index: 100;
}
section#feed .filter_menu.show { display: block; }
section#feed .filter_menu button {
	display: block;
	width: 100%;
	padding: 12px 16px;
	border: none;
	background: none;
	text-align: left;
	font-size: 14px;
	color: var(--color-text);
	cursor: pointer;
}
section#feed .filter_menu button:hover { background: var(--color-bg-card); }
section#feed .filter_menu button.active { color: var(--color-primary); font-weight: 600; }

/* 피드 skeleton */
@keyframes skeleton-shimmer {
	0% { background-position: -400px 0; }
	100% { background-position: 400px 0; }
}
section#feed ul li.skeleton {
	flex: 0 0 160px;
	width: 160px;
}
section#feed ul li.skeleton .skeleton_card {
	height: 100px;
	border-radius: 16px;
	background: linear-gradient(90deg, var(--color-bg-card) 25%, var(--color-bg-elevated) 50%, var(--color-bg-card) 75%);
	background-size: 800px 100%;
	animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

/* 헤더 match_notify 아이콘 스타일 */
.match_notify {
	cursor: pointer;
}
.match_notify .material-symbols-rounded {
	font-size: 14px;
	vertical-align: middle;
	position: relative;
	top: -1px;
	margin: 0 1px 0 0;
}
.match_notify .live_dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #ff3b30;
	border-radius: 50%;
	vertical-align: middle;
	animation: live-blink 1s ease-in-out infinite;
}
@keyframes live-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

/* 채팅 섹션 */
section#chat_section { padding-bottom: 20px; }
section#chat_section .chat_title {
	padding: 10px 20px 0 20px;
	font-size: 17px;
	font-weight: 700;
	color: var(--color-text);
	font-family: "Paperlogy" !important;
	display: flex;
	align-items: center;
}
section#chat_section .chat_summary {
	margin: 0 20px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-text-secondary);
}
section#chat_section .chat_title span {
	font-size: 11px;
	color: #34c759;
	font-weight: 400;
	margin-right: 6px;
	letter-spacing: 0;
	font-family: "Pitalic";
}

section#chat_section .chat_title span b { color: var(--color-text); }

section#chat_section .chat_title span .online_dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #34c759;
	border-radius: 50%;
	margin-left: 3px;
	vertical-align: middle;
	position: relative;
	top: -1px;
}
section#chat_section .chat_summary p {
	margin: 0;
}
section#chat_section .chat_summary a {
	color: inherit;
	text-decoration: underline;
}
section#chat_section .chat_summary strong { color: var(--color-primary); }

/* 인라인 채팅 입력창 */
.chat_input_inline {
	display: flex;
	gap: 0;
	align-items: center;
	margin: 6px 20px 2px 20px;
	border-bottom: 2px solid var(--color-border-strong);
	padding: 0;
	transition: border-color 0.15s ease;
}
.chat_input_inline:focus-within {
	border-color: var(--color-text-muted);
}
.chat_input_inline .image_btn {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-muted);
	cursor: pointer;
}
.chat_input_inline .image_btn:active {
	color: var(--color-primary);
}
.chat_input_inline .image_btn svg {
	display: block;
}
.chat_input_inline .image_preview {
	position: relative;
	flex-shrink: 0;
	margin-left: -32px;
}
.chat_input_inline .image_preview img {
	height: 30px;
	width: 30px;
	object-fit: cover;
	border-radius: 6px;
	margin-right: 2px;
}
.chat_input_inline .image_preview .remove_image {
	position: absolute;
	top: -4px;
	right: -4px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--color-text);
	color: var(--color-bg);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.chat_input_inline .image_preview .remove_image .material-symbols-rounded {
	font-size: 16px;
	font-weight: 900;
}
.chat_input_inline input.text_input {
	flex: 1;
	padding: 6px 8px 6px 2px;
	border: none;
	background: transparent;
	font-size: 15px;
	outline: none;
	color: var(--color-text);
}
.chat_input_inline input.text_input::placeholder {
	color: var(--color-text-muted);
}

/* 킥오프 카드 — Sports broadcast */
@keyframes ko-flash-burst {
	0% { transform: scale(.5); opacity: 1; }
	100% { transform: scale(3); opacity: 0; }
}
@keyframes ko-bar-extend {
	0% { transform: scaleX(0); }
	100% { transform: scaleX(1); }
}
@keyframes ko-bar-glow {
	0%, 100% { box-shadow: 0 0 4px #a6ff00, 0 0 10px rgba(166,255,0,.4); }
	50% { box-shadow: 0 0 8px #a6ff00, 0 0 18px rgba(166,255,0,.6), 0 0 30px rgba(166,255,0,.2); }
}
@keyframes ko-bar-travel {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}
@keyframes ko-panel-left {
	0% { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
	100% { clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%); }
}
@keyframes ko-panel-right {
	0% { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
	100% { clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%); }
}
@keyframes ko-name-left {
	0% { transform: translateX(-30px); opacity: 0; }
	100% { transform: translateX(0); opacity: 1; }
}
@keyframes ko-name-right {
	0% { transform: translateX(30px); opacity: 0; }
	100% { transform: translateX(0); opacity: 1; }
}
@keyframes ko-vs-slam {
	0% { transform: scale(3); opacity: 0; }
	50% { transform: scale(.9); opacity: 1; }
	70% { transform: scale(1.1); }
	100% { transform: scale(1); }
}
@keyframes ko-label-in {
	0% { transform: translateY(6px); opacity: 0; }
	100% { transform: translateY(0); opacity: 1; }
}
@keyframes ko-glow-pulse {
	0%, 100% { opacity: .4; }
	50% { opacity: .8; }
}
@keyframes ko-shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}
.kickoff_card {
	margin: 16px -20px 6px;
	position: relative;
	overflow: hidden;
	background: #0a0a0a;
	padding: 0;
}
/* 플래시 */
.ko_flash {
	position: absolute;
	top: 50%; left: 50%;
	width: 60px; height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(166,255,0,.6), rgba(166,255,0,.2) 40%, transparent 70%);
	animation: ko-flash-burst .6s ease-out .25s both;
	pointer-events: none;
	z-index: 8;
}
/* 상단 바 */
.ko_bar {
	height: 2px;
	background: linear-gradient(90deg, var(--color-text), #a6ff00, #d4ff73, #a6ff00, var(--color-text));
	background-size: 200% 100%;
	transform-origin: center;
	animation: ko-bar-extend .35s cubic-bezier(.22,1,.36,1) both, ko-bar-glow 1.5s ease-in-out .5s infinite, ko-bar-travel 2.5s linear 1s infinite;
	position: relative;
	z-index: 5;
}
/* 하단 바 */
.kickoff_card::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--color-text), #a6ff00, #d4ff73, #a6ff00, var(--color-text));
	background-size: 200% 100%;
	z-index: 5;
	animation: ko-bar-extend .35s cubic-bezier(.22,1,.36,1) both, ko-bar-glow 1.5s ease-in-out .5s infinite, ko-bar-travel 2.5s linear 1s infinite;
	animation-direction: normal, normal, reverse;
}
/* 콘텐츠 */
.ko_content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: stretch;
	min-height: 64px;
}
/* 왼쪽 패널 */
.ko_left_panel {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 12px 0 12px 20px;
	background: transparent;
	clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
	animation: ko-panel-left .4s cubic-bezier(.22,1,.36,1) .08s both;
	position: relative;
	z-index: 2;
}
/* 오른쪽 패널 */
.ko_right_panel {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 12px 20px 12px 0;
	background: transparent;
	clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
	animation: ko-panel-right .4s cubic-bezier(.22,1,.36,1) .08s both;
	position: relative;
	z-index: 2;
}
/* 팀명 */
.ko_name {
	font-family: 'Paperlogy', sans-serif;
	font-size: 17px;
	font-weight: 800;
	color: #fff;
	white-space: nowrap;
	position: relative;
	display: block;
}
.ko_left_panel .ko_name {
	padding-right: 18px;
	text-align: right;
	animation: ko-name-left .35s cubic-bezier(.22,1,.36,1) .3s both;
}
.ko_right_panel .ko_name {
	padding-left: 18px;
	text-align: left;
	animation: ko-name-right .35s cubic-bezier(.22,1,.36,1) .3s both;
}
/* 중앙 VS + KICK OFF */
.ko_center {
	flex-shrink: 0;
	width: 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 5;
}
.ko_vs {
	font-size: 22px;
	font-weight: 800;
	color: #a6ff00;
	text-shadow: 0 0 15px rgba(166,255,0,.5);
	animation: ko-vs-slam .45s cubic-bezier(.22,1,.36,1) .2s both;
	line-height: 1;
}
.ko_label {
	font-size: 10px;
	font-weight: 700;
	margin-top: 2px;
	background: linear-gradient(90deg, #a6ff00, #d4ff73, #a6ff00);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: ko-label-in .3s ease .5s both, ko-shimmer 3s linear 1s infinite;
}

section#chat_section ul { padding: 5px 20px 15px 20px; margin: 0; }
section#chat_section ul .wrapper { display: flex; flex-direction: column-reverse; gap: 4px; }
section#chat_section ul .chat_name {
	display: block;
	margin-top: 10px;
	margin-bottom: 2px;
}
section#chat_section ul .chat_name:first-child { margin-top: 0; }
section#chat_section ul .chat_name a {
	font-weight: 500;
	font-size: 13px;
	color: var(--color-text);
	letter-spacing: -0.2px;
}
section#chat_section ul .chat_name img { image-rendering: pixelated; margin-right: 0; vertical-align: middle; margin-top: -2px; }
section#chat_section ul li {
	font-size: 15px;
	line-height: 1.5;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 4px;
}
section#chat_section ul li .bubble_wrap {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	position: relative;
	cursor: pointer;
}
section#chat_section ul li .chat_bubble {
	background: var(--color-bg-card);
	border-radius: 18px;
	overflow: hidden;
}
section#chat_section ul li .chat_msg {
	color: var(--color-text);
	padding: 8px 14px;
	word-break: break-word;
	display: block;
}
section#chat_section ul li .chat_msg a { color: var(--color-link); font-weight: 500; }
section#chat_section ul li .chat_msg a.link_domain_inline {
	color: var(--color-link);
	font-weight: normal;
}
section#chat_section ul li .time {
	font-size: 10px;
	font-weight: 500;
	color: var(--color-text-muted);
	flex-shrink: 0;
	margin-bottom: 4px;
}
section#chat_section ul li .time.deletable {
	cursor: pointer;
	color: var(--color-primary);
}
section#chat_section ul li .time.deletable:hover {
	text-decoration: underline;
}

/* 채팅 이미지 */
section#chat_section ul li .chat_bubble .chat_image {
	display: block;
	max-width: 200px;
	border-radius: 12px;
}
section#chat_section ul li .chat_bubble.has_image {
	background: var(--color-bg-card);
	padding: 0;
}
section#chat_section ul li .chat_bubble.has_image .chat_image {
	border-radius: 18px 18px 0 0;
}
section#chat_section ul li .chat_bubble.has_image .chat_msg {
	padding: 8px 14px;
	display: block;
}

/* 리액션 피커 팝업 */
.reaction_picker {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	display: flex;
	gap: 4px;
	background: var(--color-bg-elevated);
	border: 1px solid var(--color-border-strong);
	border-radius: 20px;
	padding: 4px 6px;
	box-shadow: 0 2px 12px rgba(0,0,0,.15);
	z-index: 100;
	white-space: nowrap;
}
.reaction_picker span {
	cursor: pointer;
	padding: 0;
	border-radius: 8px;
	display: inline-block;
	width: 24px;
	height: 24px;
}
.reaction_picker span img {
	width: 24px;
	height: 24px;
	display: block;
}
.reaction_picker span:active {
	transform: scale(1.3);
}

/* 리액션 표시 영역 */
.chat_reactions {
	display: flex;
	flex-wrap: nowrap;
	gap: 3px;
	padding-left: 10px;
	margin-top: -10px;
	position: relative;
	z-index: 1;
	flex-basis: 100%;
}
.chat_reactions .reaction_btn {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-size: 11px;
	padding: 1px 5px;
	border-radius: 8px;
	background: var(--color-bg-elevated);
	border: none;
	cursor: pointer;
	color: var(--color-text-secondary);
}
.chat_reactions .reaction_btn img {
	width: 13px;
	height: 13px;
	vertical-align: middle;
}
.chat_reactions .reaction_btn.reacted {
	background: var(--color-bg-match);
}

/* 링크 미리보기 - 메신저 스타일 */
section#chat_section ul li .link_preview {
	display: block;
	text-decoration: none;
	background: var(--color-bg-card);
	border-radius: 18px;
	overflow: hidden;
	width: 100%;
	max-width: 280px;
	clear: both;
}
section#chat_section ul li:has(.link_preview) {
	flex-direction: column;
	align-items: flex-start;
}
section#chat_section ul li .link_preview img {
	width: 100%;
	aspect-ratio: 1.91 / 1;
	object-fit: cover;
}
section#chat_section ul li .link_preview .link_info {
	padding: 10px 14px;
	display: flex;
	flex-direction: column;
	min-width: 0;
}
section#chat_section ul li .link_preview .link_domain {
	font-size: 11px;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
section#chat_section ul li .link_preview .link_title {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 2px;
}
section#chat_section ul li .link_preview .link_desc {
	font-size: 14px;
	color: var(--color-text-secondary);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 4px;
}

/* 더 보기 버튼 */
section#chat_section .chat_spinner {
	text-align: center;
	padding: 16px 0;
}
section#chat_section .chat_spinner .spinner {
	width: 20px;
	height: 20px;
	border: 2px solid var(--color-border-strong);
	border-top-color: var(--color-text-muted);
	border-radius: 50%;
	margin: 0 auto;
	animation: spin 0.6s linear infinite;
}
@keyframes spin {
	to { transform: rotate(360deg); }
}

/* 새 메시지 등장 애니메이션 */
@keyframes chatFadeIn {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}
section#chat_section ul li.chat_new {
	animation: chatFadeIn 0.3s ease-out;
}

/* 피드 기자회견 카드 */
section#feed ul li.press .press_content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-color: var(--color-bg-card);
	border-radius: 16px;
	padding: 12px;
	height: 100px;
	box-sizing: border-box;
	position: relative;
}
section#feed ul li.press .press_icon {
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-size: 20px;
	color: var(--color-text-muted);
	opacity: 0.3;
}
section#feed ul li.press strong {
	-webkit-line-clamp: 3;
}
section#feed ul li.press .press_date {
	font-size: 10px;
	font-weight: 500;
	color: var(--color-text-secondary);
	margin-top: auto;
}
section#feed ul li.press {
	cursor: pointer;
}

/* 기자회견 팝오버 (Apple 스타일) */
.press_popover {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}
.press_popover.show {
	opacity: 1;
	visibility: visible;
}
.press_popover_backdrop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.48);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}
.press_popover_content {
	position: relative;
	width: 100%;
	max-width: 500px;
	max-height: calc(100vh - 40px);
	max-height: calc(100dvh - 40px);
	background: var(--color-bg-card);
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transform: scale(0.96);
	opacity: 0;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.24);
}
.press_popover.show .press_popover_content {
	transform: scale(1);
	opacity: 1;
}
.press_popover_close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10;
	background: rgba(0, 0, 0, 0.3);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.15s ease;
}
.press_popover_close:hover {
	background: rgba(0, 0, 0, 0.6);
}
.press_popover_close .material-symbols-rounded {
	font-size: 18px;
}
.press_popover_scroll {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.press_popover_image {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block;
}
.press_popover_inner {
	padding: 16px 20px 20px;
}
.press_popover_times {
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	margin-bottom: 8px;
	flex-direction: column;
}
.press_popover_time_item {
	font-size: 12px;
	color: var(--color-text-muted);
}
.press_popover_inner h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 16px 0;
	color: var(--color-text);
}
.press_popover_body {
	font-size: 15px;
	color: var(--color-text);
}

.press_popover_body > * { font-size: 15px !important; }
.press_popover_body > h2, .press_popover_body > h3 { font-weight: 700; margin-bottom: 5px; }
.press_popover_body > h2 { margin-top: 20px; }
.press_popover_body > p { 
	margin-bottom: 20px;
}

.press_popover_body > p > strong { font-weight: 700; margin-bottom: 5px; }

.press_popover_body .no_content {
	color: var(--color-text-muted);
	font-style: italic;
}
.press_popover_loading {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}
.press_popover_loading .spinner {
	width: 32px;
	height: 32px;
	border: 3px solid var(--color-border);
	border-top-color: var(--color-text);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}
@keyframes spin {
	to { transform: rotate(360deg); }
}

