/* Punch Style Header & News Ticker
 * -------------------------------------------------- */
:root {
	--psh-accent: #e21b1b;
	--psh-text: #1a1a1a;
	--psh-muted: #6b6b6b;
	--psh-border: #e2e2e2;
}

.psh-header,
.psh-news-block {
	box-sizing: border-box;
}

.psh-header *,
.psh-news-block * {
	box-sizing: border-box;
}

/* ---------- Header wrapper ---------- */
.psh-header {
	width: 100%;
	background: #ffffff;
	border-bottom: 1px solid var(--psh-border);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	z-index: 9999;
	position: relative;
}

.psh-header.psh-sticky {
	position: sticky;
	top: 0;
}

/* ---------- Top row: search / logo+tagline / hamburger ---------- */
.psh-header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px 10px;
	gap: 10px;
}

.psh-icon-btn {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--psh-text);
}

.psh-search-icon {
	background: #f1f1f1;
	border-radius: 50%;
}

.psh-hamburger {
	color: var(--psh-accent);
}

.psh-logo-wrap {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	min-width: 0;
}

.psh-logo-img {
	max-height: 46px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.psh-logo-text {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--psh-accent);
	line-height: 1;
	text-transform: uppercase;
}

.psh-tagline {
	margin-top: 4px;
	font-size: 12px;
	color: var(--psh-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

/* ---------- Scrollable menu row ---------- */
.psh-scroll-menu {
	border-top: 1px solid var(--psh-border);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.psh-scroll-menu::-webkit-scrollbar {
	display: none;
}

.psh-menu-list {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 12px 16px;
	white-space: nowrap;
	width: max-content;
	min-width: 100%;
}

.psh-menu-list .psh-menu-item,
.psh-menu-list li {
	display: flex;
	align-items: center;
	list-style: none;
}

.psh-menu-list li:not(:last-child)::after,
.psh-menu-list .psh-menu-item:not(:last-child)::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 16px;
	background: var(--psh-border);
	margin: 0 16px;
}

.psh-menu-list a {
	font-weight: 700;
	font-size: 15px;
	color: var(--psh-text);
	text-decoration: none;
}

.psh-menu-list li:first-child a,
.psh-menu-list .psh-menu-item-active a,
.psh-menu-list .current-menu-item a {
	color: var(--psh-accent);
}

/* ---------- Featured post + headline list ---------- */
.psh-featured-list-wrap {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	max-width: 900px;
	margin: 0 auto;
}

.psh-featured-block {
	display: block;
}

.psh-featured-title-link {
	text-decoration: none;
}

.psh-featured-title {
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 800;
	font-size: 28px;
	line-height: 1.25;
	color: var(--psh-text);
	margin: 18px 16px 14px;
}

.psh-featured-image-link {
	display: block;
	line-height: 0;
}

.psh-featured-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.psh-post-list {
	max-width: 900px;
	margin: 0 auto;
}

.psh-post-list-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 16px;
	border-bottom: 1px solid var(--psh-border);
}

.psh-post-list-item:last-child {
	border-bottom: none;
}

.psh-post-cat {
	font-size: 13px;
	font-weight: 700;
	color: var(--psh-accent);
	text-decoration: none;
	text-transform: none;
}

.psh-post-title {
	font-size: 19px;
	font-weight: 800;
	color: var(--psh-text);
	line-height: 1.3;
	text-decoration: none;
}

.psh-post-title:hover {
	text-decoration: underline;
}

@media ( min-width: 700px ) {
	.psh-featured-title {
		font-size: 32px;
	}
}

/* ---------- Latest News block ---------- */
.psh-news-block {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	padding: 20px 16px 8px;
	max-width: 900px;
	margin: 0 auto;
}

.psh-news-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.psh-news-square {
	width: 14px;
	height: 14px;
	background: var(--psh-accent);
	flex: 0 0 auto;
}

.psh-news-heading h2 {
	font-size: 22px;
	font-weight: 700;
	color: #3f3f3f;
	font-family: Georgia, "Times New Roman", serif;
	margin: 0;
}

.psh-news-hr {
	height: 1px;
	background: var(--psh-border);
	margin-bottom: 4px;
}

.psh-news-list {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.psh-news-item {
	position: relative;
	display: flex;
	gap: 16px;
	padding: 18px 0 18px 8px;
	border-bottom: 1px solid var(--psh-border);
}

.psh-news-item:last-child {
	border-bottom: none;
}

.psh-news-item::before {
	/* vertical connecting line */
	content: "";
	position: absolute;
	left: 12px;
	top: 0;
	bottom: -1px;
	width: 1px;
	background: var(--psh-border);
}

.psh-news-item:first-child::before {
	top: 12px;
}

.psh-news-item:last-child::before {
	bottom: 50%;
}

.psh-news-dot {
	position: relative;
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--psh-accent);
	margin-top: 4px;
	z-index: 1;
}

.psh-news-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1 1 auto;
	min-width: 0;
}

.psh-news-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--psh-text);
	line-height: 1.35;
	text-decoration: none;
}

.psh-news-title:hover {
	text-decoration: underline;
}

.psh-news-time {
	align-self: flex-end;
	font-size: 13px;
	font-style: italic;
	color: var(--psh-accent);
}

.psh-news-empty {
	color: var(--psh-muted);
	font-style: italic;
}

/* ---------- Responsive ---------- */
@media ( min-width: 700px ) {
	.psh-news-title {
		font-size: 19px;
	}
}
