/* ==========================================================================
   HamburgHaber - Manşet Haberler
   Büyük ana görsel + sol/sağ ok + alt başlık şeridi, altında küçük thumbnail şeridi.
   ========================================================================== */
.hhm-manset-wrap {
	display: flex;
	flex-direction: column;
	max-width: 100%;
	box-sizing: border-box;
	margin: 20px 0;
}
.hhm-manset-wrap * { box-sizing: border-box; }

/* ---- Ana Panel (büyük görsel) ---- */
.hhm-ana-panel {
	position: relative;
	width: 100%;
	min-height: 460px;
	background: #111;
	overflow: hidden;
}
.hhm-ana-item {
	position: absolute;
	inset: 0;
	display: block;
	text-decoration: none;
	color: inherit;
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s ease;
}
.hhm-ana-item.active {
	opacity: 1;
	visibility: visible;
}
.hhm-ana-gorsel {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-color: #333;
}
.hhm-resim-yok {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #666;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 1px;
}

/* ---- Başlık Şeridi (alt, düz renkli bant) ---- */
.hhm-baslik-seridi {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: #cfa93c; /* referans görseldeki hardal/altın tonu */
	color: #3a2e0d;
	padding: 14px 20px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	z-index: 2;
}
.hhm-kategori-etiket {
	display: inline-block;
	background: rgba(0,0,0,.2);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 3px;
	margin-right: 10px;
	vertical-align: middle;
}
.hhm-baslik-metni { vertical-align: middle; }

/* ---- Sol/Sağ Ok Butonları ---- */
.hhm-ok {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,.85);
	border: none;
	color: #333;
	font-size: 24px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	transition: background .15s;
}
.hhm-ok:hover { background: #fff; }
.hhm-ok-sol { left: 18px; }
.hhm-ok-sag { right: 18px; }
.hhm-ok span { margin-top: -2px; }

/* ---- Aktif göstergesi (başlık şeridi ile thumbnail şeridi arasındaki küçük ok) ---- */
.hhm-yon-gostergesi {
	width: 0;
	height: 0;
	margin: 0 auto;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	border-top: 9px solid #cfa93c;
}

/* ==========================================================================
   THUMBNAIL ŞERİDİ - küçük, başlıksız, kategorisiz
   ========================================================================== */
.hhm-thumb-seridi {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	background: #fff;
	padding: 8px 0 0;
}
.hhm-thumb-item {
	flex: 0 0 auto;
	display: block;
	width: 78px;
	height: 58px;
	opacity: .55;
	transition: opacity .15s;
}
.hhm-thumb-item:hover,
.hhm-thumb-item.active {
	opacity: 1;
}
.hhm-thumb-gorsel {
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-color: #ddd;
}
.hhm-thumb-yok { display: block; width: 100%; height: 100%; background: #ccc; }

@media (max-width: 782px) {
	.hhm-ana-panel { min-height: 260px; }
	.hhm-baslik-seridi { font-size: 15px; padding: 10px 14px; }
	.hhm-ok { width: 34px; height: 34px; font-size: 18px; }
	.hhm-thumb-item { width: 60px; height: 45px; }
}
