/* ═══════════════════════════════════════════════════════
   OTOGALERIO CORE — SINGLE POST TEMPLATE
   Sticky breadcrumb + Hero + Content/Sidebar + Auto TOC
   YENI PALET: kırmızı (#e10c14) + mavi (#1a3f92)
   ═══════════════════════════════════════════════════════ */

.ogc-single-page {
	--sn-primary:   #1a3f92;
	--sn-primary-2: #2654ad;
	--sn-accent:    #e10c14;
	--sn-accent-2:  #ff5252;
	--sn-text:      #1e293b;
	--sn-muted:     #64748b;
	--sn-bg:        #ffffff;
	--sn-bg-alt:    #f8fafc;
	--sn-border:    #e2e8f0;
	--sn-radius:    18px;
	--sn-radius-sm: 10px;

	--sn-content-max: 760px;
	--sn-wide-max:    1200px;
	--sn-bcbar-h:     54px;
}

/* ═══════════════════════════════════════════
   STICKY BREADCRUMB BAR (üst)
   ═══════════════════════════════════════════ */
.ogc-single-bcbar {
	position: sticky;
	top: 0;
	z-index: 80;
	background: var(--sn-bg);
	border-bottom: 1px solid var(--sn-border);
	box-shadow: 0 1px 0 rgba(15,23,41,.02);
	backdrop-filter: saturate(1.2) blur(8px);
	-webkit-backdrop-filter: saturate(1.2) blur(8px);
}
.ogc-single-bcbar__inner {
	max-width: var(--sn-wide-max);
	margin: 0 auto;
	padding: 0 24px;
	min-height: var(--sn-bcbar-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}
.ogc-single-bcbar__trail {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	min-width: 0;
	flex-wrap: nowrap;
	overflow: hidden;
}
.ogc-single-bcbar__item {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}
.ogc-single-bcbar__item a {
	color: var(--sn-muted);
	text-decoration: none;
	transition: color .2s;
	white-space: nowrap;
}
.ogc-single-bcbar__item a:hover {
	color: var(--sn-accent);
}
.ogc-single-bcbar__item--current span {
	color: var(--sn-primary);
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 50ch;
}
.ogc-single-bcbar__sep {
	color: var(--sn-border);
	font-weight: 700;
	flex-shrink: 0;
}
.ogc-single-bcbar__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--sn-accent);
	color: #fff;
	padding: 8px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	flex-shrink: 0;
	box-shadow: 0 6px 16px rgba(225,12,20,.35);
	transition: transform .2s, box-shadow .2s, background .2s;
}
.ogc-single-bcbar__cta svg {
	width: 14px;
	height: 14px;
}
.ogc-single-bcbar__cta:hover {
	background: var(--sn-primary);
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(26,63,146,.35);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.ogc-single__hero {
	background: linear-gradient(180deg, var(--sn-bg-alt) 0%, var(--sn-bg) 100%);
	border-bottom: 1px solid var(--sn-border);
	padding: 44px 24px 36px;
}
.ogc-single__hero-inner {
	max-width: var(--sn-content-max);
	margin: 0 auto;
}
.ogc-single__cat {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(225,12,20,.10);
	color: var(--sn-accent);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 999px;
	text-decoration: none;
	margin-bottom: 14px;
	transition: background .2s, color .2s;
}
.ogc-single__cat:hover {
	background: var(--sn-accent);
	color: #fff;
}
.ogc-single__title {
	font-size: clamp(20px, 2.6vw, 30px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.012em;
	color: var(--sn-primary);
	margin: 0 0 14px;
	overflow-wrap: break-word;
	word-break: break-word;
}
.ogc-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 13px;
	color: var(--sn-muted);
}
.ogc-single__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.ogc-single__meta-item svg {
	width: 14px;
	height: 14px;
	color: var(--sn-accent);
	opacity: 0.75;
}
.ogc-single__meta-author {
	font-weight: 600;
	color: var(--sn-text);
}

/* ═══════════════════════════════════════════
   FEATURED IMAGE
   ═══════════════════════════════════════════ */
.ogc-single__feat-img {
	max-width: var(--sn-wide-max);
	margin: 0 auto;
	padding: 0 24px;
}
.ogc-single__feat-img img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: cover;
	border-radius: var(--sn-radius);
	margin-top: 32px;
}
.ogc-single--seo .ogc-single__feat-img img {
	filter: brightness(0.96) saturate(0.85);
}

/* ═══════════════════════════════════════════
   CONTENT + SIDEBAR LAYOUT
   ═══════════════════════════════════════════ */
.ogc-single__layout {
	max-width: var(--sn-wide-max);
	margin: 0 auto;
	padding: 48px 24px 24px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
	align-items: start;
}
.ogc-single__main {
	min-width: 0;
	max-width: var(--sn-content-max);
	justify-self: center;
	width: 100%;
}

/* ═══════════════════════════════════════════
   CONTENT TYPOGRAPHY
   ═══════════════════════════════════════════ */
.ogc-single__content {
	font-size: 16.5px;
	line-height: 1.78;
	color: var(--sn-text);
}
.ogc-single__content > * + * {
	margin-top: 1.2em;
}
.ogc-single__content h2,
.ogc-single__content h3,
.ogc-single__content h4 {
	color: var(--sn-primary);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.3;
	margin-top: 1.6em;
	margin-bottom: 0.6em;
	scroll-margin-top: calc(var(--sn-bcbar-h) + 16px);
}
.ogc-single__content h2 { font-size: 26px; }
.ogc-single__content h3 { font-size: 21px; }
.ogc-single__content h4 { font-size: 18px; }
.ogc-single__content p {
	margin: 0 0 1.1em;
}
.ogc-single__content a {
	color: var(--sn-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color .2s, text-decoration-thickness .2s;
}
.ogc-single__content a:hover {
	color: var(--sn-primary);
	text-decoration-thickness: 2px;
}
.ogc-single__content strong {
	color: var(--sn-primary);
	font-weight: 700;
}
.ogc-single__content ul,
.ogc-single__content ol {
	padding-left: 1.4em;
	margin: 0 0 1.2em;
}
.ogc-single__content li {
	margin-bottom: 0.4em;
}
.ogc-single__content blockquote {
	border-left: 4px solid var(--sn-accent);
	background: var(--sn-bg-alt);
	padding: 18px 22px;
	margin: 24px 0;
	border-radius: 0 var(--sn-radius-sm) var(--sn-radius-sm) 0;
	font-style: italic;
	color: var(--sn-text);
}
.ogc-single__content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--sn-radius-sm);
	margin: 14px 0;
}
.ogc-single__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 18px 0;
	font-size: 14.5px;
}
.ogc-single__content table th,
.ogc-single__content table td {
	border: 1px solid var(--sn-border);
	padding: 10px 14px;
	text-align: left;
}
.ogc-single__content table th {
	background: var(--sn-bg-alt);
	color: var(--sn-primary);
	font-weight: 700;
}
.ogc-single__content code {
	background: var(--sn-bg-alt);
	border: 1px solid var(--sn-border);
	border-radius: 6px;
	padding: 2px 6px;
	font-size: 13px;
	font-family: ui-monospace, SFMono-Regular, monospace;
}

/* ═══════════════════════════════════════════
   AUTHOR CARD
   ═══════════════════════════════════════════ */
.ogc-single__author-card {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 18px;
	align-items: start;
	margin: 48px 0 0;
	padding: 22px 24px;
	background: var(--sn-bg-alt);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius);
}
.ogc-single__author-avatar img,
.ogc-single__author-img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}
.ogc-single__author-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.13em;
	color: var(--sn-accent);
	margin-bottom: 4px;
	text-transform: uppercase;
}
.ogc-single__author-name {
	font-size: 17px;
	font-weight: 700;
	color: var(--sn-primary);
	margin-bottom: 6px;
}
.ogc-single__author-bio {
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--sn-muted);
	margin: 0;
}

/* ═══════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════ */
.ogc-single__sidebar {
	min-width: 0;
}
.ogc-single__sidebar-sticky {
	position: sticky;
	top: calc(var(--sn-bcbar-h) + 20px);
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* ─── TOC (İçindekiler) ─── */
.ogc-single__toc {
	background: var(--sn-bg);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius);
	padding: 18px 18px 14px;
	max-height: calc(100vh - 140px);
	overflow-y: auto;
}
.ogc-single__toc-head {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.10em;
	color: var(--sn-primary);
	text-transform: uppercase;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid var(--sn-border);
}
.ogc-single__toc-head svg {
	width: 16px;
	height: 16px;
	color: var(--sn-accent);
}
.ogc-single__toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: toc;
}
.ogc-single__toc-item {
	margin: 0;
	position: relative;
}
.ogc-single__toc-item a {
	display: block;
	padding: 7px 10px 7px 18px;
	color: var(--sn-muted);
	text-decoration: none;
	font-size: 13.5px;
	line-height: 1.4;
	border-left: 2px solid transparent;
	border-radius: 0 6px 6px 0;
	transition: color .2s, background .2s, border-color .2s, padding-left .2s;
}
.ogc-single__toc-item a:hover {
	color: var(--sn-primary);
	background: var(--sn-bg-alt);
	border-left-color: var(--sn-border);
}
.ogc-single__toc-item a.is-active {
	color: var(--sn-accent);
	background: rgba(225,12,20,.06);
	border-left-color: var(--sn-accent);
	font-weight: 600;
	padding-left: 22px;
}
.ogc-single__toc-item--h3 a {
	padding-left: 32px;
	font-size: 12.5px;
}
.ogc-single__toc-item--h3 a.is-active {
	padding-left: 36px;
}

/* ─── Quick CTA ─── */
.ogc-single__quick-cta {
	background: linear-gradient(135deg, var(--sn-primary) 0%, var(--sn-primary-2) 55%, var(--sn-primary) 100%);
	color: #fff;
	border-radius: var(--sn-radius);
	padding: 22px 22px 22px;
	position: relative;
	overflow: hidden;
}
.ogc-single__quick-cta::before {
	content: '';
	position: absolute;
	right: -80px;
	top: -80px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255,255,255,.14) 0%, transparent 70%);
	pointer-events: none;
}
.ogc-single__quick-cta::after {
	content: '';
	position: absolute;
	left: -40px;
	bottom: -40px;
	width: 140px;
	height: 140px;
	background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%);
	pointer-events: none;
}
.ogc-single__quick-cta-icon {
	position: relative;
	z-index: 1;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--sn-accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin-bottom: 14px;
	box-shadow: 0 8px 22px rgba(225,12,20,.5);
}
.ogc-single__quick-cta-icon i,
.ogc-single__quick-cta-icon svg {
	width: 22px;
	height: 22px;
	font-size: 22px;
	line-height: 1;
	color: #fff !important;
	fill: #fff !important;
}
.ogc-single__quick-cta-icon svg path,
.ogc-single__quick-cta-icon svg circle,
.ogc-single__quick-cta-icon svg rect,
.ogc-single__quick-cta-icon svg polygon { fill: #fff !important; }
.ogc-single__quick-cta-title {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 6px;
	position: relative;
	z-index: 1;
}
.ogc-single__quick-cta-title em {
	font-style: normal;
	background: linear-gradient(135deg, var(--sn-accent) 0%, var(--sn-accent-2) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.ogc-single__quick-cta-text {
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255,255,255,.78);
	margin-bottom: 14px;
	position: relative;
	z-index: 1;
}
.ogc-single__quick-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--sn-accent);
	color: #fff;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(225,12,20,.45);
	transition: transform .2s, background .2s, color .2s;
	position: relative;
	z-index: 1;
}
.ogc-single__quick-cta-btn svg {
	width: 13px;
	height: 13px;
	transition: transform .2s;
}
.ogc-single__quick-cta-btn:hover {
	background: #fff;
	color: var(--sn-primary);
	transform: translateY(-1px);
}
.ogc-single__quick-cta-btn:hover svg {
	transform: translateX(3px);
}

/* ─── Sidebar contact mini ─── */
.ogc-single__sidebar-contact {
	background: var(--sn-bg);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius);
	padding: 16px 18px;
}
.ogc-single__sidebar-label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.10em;
	color: var(--sn-accent);
	margin-bottom: 12px;
	text-transform: uppercase;
}
.ogc-single__sidebar-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--sn-text);
	text-decoration: none;
	transition: color .2s;
	border-top: 1px solid var(--sn-border);
}
.ogc-single__sidebar-row:first-of-type {
	border-top: 0;
	padding-top: 0;
}
.ogc-single__sidebar-row:hover {
	color: var(--sn-accent);
}
.ogc-single__sidebar-row svg {
	width: 16px;
	height: 16px;
	color: var(--sn-accent);
	flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PREV / NEXT NAV
   ═══════════════════════════════════════════ */
.ogc-single__nav {
	max-width: var(--sn-content-max);
	margin: 36px auto 0;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.ogc-single__nav-link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	background: var(--sn-bg);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius);
	color: var(--sn-text);
	text-decoration: none;
	transition: border-color .2s, transform .2s, box-shadow .2s, background .2s;
	min-width: 0;
}
.ogc-single__nav-link:hover {
	border-color: var(--sn-accent);
	transform: translateY(-2px);
	box-shadow: 0 10px 22px -10px rgba(15,23,41,.18);
}
.ogc-single__nav-link--next {
	flex-direction: row-reverse;
	text-align: right;
}
.ogc-single__nav-arrow {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--sn-bg-alt);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--sn-accent);
	flex-shrink: 0;
	transition: background .2s, color .2s;
}
.ogc-single__nav-link:hover .ogc-single__nav-arrow {
	background: var(--sn-accent);
	color: #fff;
}
.ogc-single__nav-body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.ogc-single__nav-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--sn-muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.ogc-single__nav-title {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--sn-primary);
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ═══════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════ */
.ogc-single__cta {
	max-width: var(--sn-wide-max);
	margin: 56px auto 0;
	padding: 0 24px;
}
.ogc-single__cta-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: center;
	background: linear-gradient(135deg, var(--sn-primary) 0%, var(--sn-primary-2) 100%);
	border-radius: var(--sn-radius);
	padding: 36px 40px;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.ogc-single__cta-inner::before {
	content: '';
	position: absolute;
	right: -120px;
	top: -120px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(225,12,20,.32) 0%, transparent 70%);
	pointer-events: none;
}
.ogc-single__cta-text {
	min-width: 0;
	position: relative;
	z-index: 1;
}
.ogc-single__cta-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--sn-accent-2);
	margin-bottom: 8px;
	text-transform: uppercase;
}
.ogc-single__cta-title {
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 8px;
}
.ogc-single__cta-title em {
	font-style: normal;
	background: linear-gradient(135deg, var(--sn-accent) 0%, var(--sn-accent-2) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.ogc-single__cta-sub {
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255,255,255,.8);
	margin: 0;
	max-width: 56ch;
}
.ogc-single__cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--sn-accent);
	color: #fff;
	padding: 16px 28px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 700;
	text-decoration: none;
	flex-shrink: 0;
	box-shadow: 0 10px 26px rgba(225,12,20,.45);
	transition: transform .25s, box-shadow .25s, background .25s;
	position: relative;
	z-index: 1;
}
.ogc-single__cta-btn svg {
	width: 16px;
	height: 16px;
	transition: transform .25s;
}
.ogc-single__cta-btn:hover {
	background: #fff;
	color: var(--sn-primary);
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(0,0,0,.3);
}
.ogc-single__cta-btn:hover svg {
	transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   RELATED POSTS
   ═══════════════════════════════════════════ */
.ogc-single__related {
	background: var(--sn-bg-alt);
	margin-top: 64px;
	padding: 64px 24px;
}
.ogc-single__related-inner {
	max-width: var(--sn-wide-max);
	margin: 0 auto;
}
.ogc-single__related-head {
	text-align: center;
	margin-bottom: 36px;
}
.ogc-single__related-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.13em;
	color: var(--sn-accent);
	margin-bottom: 8px;
	text-transform: uppercase;
}
.ogc-single__related-title {
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 800;
	color: var(--sn-primary);
	margin: 0;
	letter-spacing: -0.02em;
}
.ogc-single__related-title em {
	font-style: normal;
	background: linear-gradient(135deg, var(--sn-accent) 0%, var(--sn-accent-2) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.ogc-single__related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.ogc-single__related-card {
	display: flex;
	flex-direction: column;
	background: var(--sn-bg);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius);
	overflow: hidden;
	color: var(--sn-text);
	text-decoration: none;
	transition: border-color .25s, transform .25s, box-shadow .25s;
}
.ogc-single__related-card:hover {
	border-color: var(--sn-accent);
	transform: translateY(-3px);
	box-shadow: 0 14px 28px -12px rgba(15,23,41,.22);
}
.ogc-single__related-thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--sn-bg-alt);
	overflow: hidden;
}
.ogc-single__related-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .45s;
}
.ogc-single__related-card:hover .ogc-single__related-thumb img {
	transform: scale(1.05);
}
.ogc-single__related-thumb--ph {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: var(--sn-border);
}
.ogc-single__related-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 14px 16px 16px;
	flex: 1;
}
.ogc-single__related-card-title {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--sn-primary);
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color .2s;
}
.ogc-single__related-card:hover .ogc-single__related-card-title {
	color: var(--sn-accent);
}
.ogc-single__related-card-date {
	font-size: 12px;
	color: var(--sn-muted);
	margin-top: auto;
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
	.ogc-single-bcbar__cta,
	.ogc-single__cat,
	.ogc-single__nav-link,
	.ogc-single__cta-btn,
	.ogc-single__related-card,
	.ogc-single__nav-arrow,
	.ogc-single__related-thumb img,
	.ogc-single__quick-cta-btn,
	.ogc-single__toc-item a {
		transition: none;
	}
	.ogc-single__nav-link:hover,
	.ogc-single__related-card:hover,
	.ogc-single__cta-btn:hover {
		transform: none;
	}
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
	.ogc-single__layout {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 36px 22px 18px;
	}
	.ogc-single__sidebar {
		order: 2;
	}
	.ogc-single__sidebar-sticky {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 14px;
	}
	.ogc-single__toc {
		flex: 1 1 100%;
		max-height: none;
	}
	.ogc-single__quick-cta {
		flex: 1 1 calc(50% - 7px);
		min-width: 280px;
	}
	.ogc-single__sidebar-contact {
		flex: 1 1 calc(50% - 7px);
		min-width: 240px;
	}
	.ogc-single__related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.ogc-single__cta-inner {
		padding: 28px 32px;
	}
}

@media (max-width: 720px) {
	.ogc-single-bcbar__inner {
		padding: 0 16px;
		gap: 12px;
	}
	.ogc-single-bcbar__trail {
		font-size: 12px;
	}
	.ogc-single-bcbar__item--current span {
		max-width: 18ch;
	}
	.ogc-single-bcbar__cta {
		padding: 7px 14px;
		font-size: 12px;
	}
	.ogc-single-bcbar__cta span {
		display: none;
	}

	.ogc-single__hero {
		padding: 28px 18px 22px;
	}
	.ogc-single__title {
		font-size: 24px;
	}
	.ogc-single__meta {
		gap: 12px;
		font-size: 12.5px;
	}
	.ogc-single__feat-img {
		padding: 0 18px;
	}
	.ogc-single__feat-img img {
		max-height: 320px;
		margin-top: 22px;
	}

	.ogc-single__layout {
		padding: 28px 18px 12px;
		gap: 24px;
	}
	.ogc-single__sidebar-sticky {
		flex-direction: column;
	}
	.ogc-single__quick-cta,
	.ogc-single__sidebar-contact {
		flex: 1 1 100%;
	}

	.ogc-single__content {
		font-size: 15.5px;
		line-height: 1.7;
	}
	.ogc-single__content h2 { font-size: 22px; }
	.ogc-single__content h3 { font-size: 19px; }
	.ogc-single__content h4 { font-size: 17px; }

	.ogc-single__author-card {
		grid-template-columns: 56px 1fr;
		padding: 18px 18px;
		margin-top: 32px;
	}
	.ogc-single__author-avatar img,
	.ogc-single__author-img {
		width: 56px;
		height: 56px;
	}

	.ogc-single__nav {
		grid-template-columns: 1fr;
		padding: 0 18px;
		margin-top: 28px;
		gap: 10px;
	}

	.ogc-single__cta {
		margin-top: 40px;
		padding: 0 18px;
	}
	.ogc-single__cta-inner {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 28px 24px;
		text-align: center;
	}
	.ogc-single__cta-btn {
		justify-self: center;
	}

	.ogc-single__related {
		padding: 44px 18px;
		margin-top: 44px;
	}
	.ogc-single__related-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
}

@media (max-width: 420px) {
	.ogc-single-bcbar__inner {
		min-height: 48px;
	}
	.ogc-single__hero {
		padding: 22px 14px 18px;
	}
	.ogc-single__title {
		font-size: 21px;
	}
	.ogc-single__layout {
		padding: 22px 14px 8px;
	}
	.ogc-single__cta-inner {
		padding: 22px 18px;
	}
	.ogc-single__cta-title {
		font-size: 19px;
	}
	.ogc-single__related {
		padding: 32px 14px;
	}
	.ogc-single__related-grid {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════════════════════════════════
   ETİKETLER + PAYLAŞ
═══════════════════════════════════════════════════════════════════ */
.ogc-single__tags,
.ogc-single__share {
	margin: 28px 0 0;
	padding: 18px 20px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.ogc-single__tags-label,
.ogc-single__share-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: #1a3f92;
	text-transform: uppercase;
	letter-spacing: .08em;
	flex-shrink: 0;
}
.ogc-single__tags-label svg,
.ogc-single__share-label svg {
	width: 14px;
	height: 14px;
}
.ogc-single__tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	flex: 1;
	min-width: 0;
}
.ogc-single__tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	background: #fff;
	color: #334155;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: all .2s;
}
.ogc-single__tag:hover {
	background: #1a3f92;
	color: #fff;
	border-color: #1a3f92;
	transform: translateY(-1px);
}
.ogc-single__share-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	flex: 1;
	min-width: 0;
}
.ogc-single__share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #334155;
	text-decoration: none;
	cursor: pointer;
	transition: all .2s;
	font-family: inherit;
}
.ogc-single__share-btn svg { width: 16px; height: 16px; }
.ogc-single__share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.ogc-single__share-btn--wa:hover  { background: #25d366; color: #fff; border-color: #25d366; }
.ogc-single__share-btn--fb:hover  { background: #1877f2; color: #fff; border-color: #1877f2; }
.ogc-single__share-btn--tw:hover  { background: #000;    color: #fff; border-color: #000; }
.ogc-single__share-btn--li:hover  { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.ogc-single__share-btn--copy:hover{ background: #1a3f92; color: #fff; border-color: #1a3f92; }
.ogc-single__share-btn.is-copied { background: #16a34a; color: #fff; border-color: #16a34a; }

@media (max-width: 720px) {
	.ogc-single__tags,
	.ogc-single__share {
		padding: 14px;
		gap: 10px;
	}
	.ogc-single__share-btn span { display: none; }
	.ogc-single__share-btn { padding: 10px; }
}

/* ═══════════════════════════════════════════════════════════════════
   FLOATING WIDGETS (WhatsApp + Back-to-Top) + 404 + STICKY HEADER
═══════════════════════════════════════════════════════════════════ */
.ogc-fab {
	position: fixed !important;
	right: 18px !important;
	z-index: 9998 !important;
	width: 54px !important;
	height: 54px !important;
	min-width: 54px !important;
	border-radius: 50% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #fff !important;
	text-decoration: none !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.10);
	transition: transform .2s, box-shadow .2s, opacity .25s, visibility .25s;
	font-family: inherit;
	line-height: 1 !important;
}
.ogc-fab svg { width: 28px; height: 28px; fill: #fff; }
.ogc-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.ogc-fab--wa {
	bottom: 22px;
	background: #25d366;
	animation: ogcFabPulse 2.4s infinite;
}
@keyframes ogcFabPulse {
	0%   { box-shadow: 0 6px 18px rgba(0,0,0,.18), 0 0 0 0 rgba(37,211,102,.55); }
	70%  { box-shadow: 0 6px 18px rgba(0,0,0,.18), 0 0 0 16px rgba(37,211,102,0); }
	100% { box-shadow: 0 6px 18px rgba(0,0,0,.18), 0 0 0 0 rgba(37,211,102,0); }
}
.ogc-fab--top {
	bottom: 110px;
	background: linear-gradient(135deg, #1a3f92, #102861);
	font-size: 22px;
	font-weight: 800;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}
.ogc-fab--top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
.ogc-fab--top svg { width: 22px !important; height: 22px !important; stroke: #fff !important; fill: none !important; stroke-width: 3; }

@media (max-width: 720px) {
	.ogc-fab { width: 48px !important; height: 48px !important; min-width: 48px !important; right: 14px !important; }
	.ogc-fab svg { width: 24px !important; height: 24px !important; }
	.ogc-fab--wa  { bottom: 16px !important; }
	.ogc-fab--top { bottom: 90px !important; }
}

/* ─── MOBİL LOGO BÜYÜTME ──────────────────────────────────────────── */
@media (max-width: 1024px) {
	.ogc-tpl--header .ogc-header,
	.elementor-widget-ogc_header .ogc-header { --h-logo-h: 52px !important; }
	.ogc-tpl--header .ogc-header__logo img { height: 52px !important; max-height: 52px !important; width: auto !important; }
}
@media (max-width: 767px) {
	.ogc-tpl--header .ogc-header,
	.elementor-widget-ogc_header .ogc-header { --h-logo-h: 46px !important; }
	.ogc-tpl--header .ogc-header__logo img { height: 46px !important; max-height: 46px !important; width: auto !important; }
}

/* ─── STICKY HEADER (FIXED — masaüstü + mobil) ────────────────────── */
body.ogc-has-sticky-header { padding-top: var(--ogc-sticky-h, 80px); }

.ogc-tpl--header {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	z-index: 99990 !important;
	background: #fff !important;
	box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.ogc-tpl--header .ogc-header,
.ogc-tpl--header header.ogc-header {
	position: relative !important;
	top: 0 !important;
	background: #fff !important;
}
.ogc-mobile-menu { z-index: 99989 !important; }

/* Mobilde topbar gizli (alan açmak için), masaüstünde görünür kalsın */
@media (max-width: 900px) {
	.ogc-tpl--header .ogc-header__topbar { display: none !important; }
}

/* ─── 404 SAYFA ──────────────────────────────────────────────────── */
.ogc-404 {
	max-width: 720px;
	margin: 60px auto;
	padding: 60px 24px;
	text-align: center;
}
.ogc-404__code {
	font-size: clamp(80px, 18vw, 160px);
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(135deg, #1a3f92, #e10c14);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: -.04em;
	margin: 0 0 12px;
}
.ogc-404__title {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 14px;
}
.ogc-404__sub {
	font-size: 16px;
	line-height: 1.7;
	color: #64748b;
	margin: 0 auto 32px;
	max-width: 520px;
}
.ogc-404__btns {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}
.ogc-404__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: transform .15s, box-shadow .2s;
	border: 2px solid transparent;
}
.ogc-404__btn--primary {
	background: linear-gradient(135deg, #1a3f92, #102861);
	color: #fff;
}
.ogc-404__btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,63,146,.35); }
.ogc-404__btn--ghost {
	background: #fff;
	color: #1a3f92;
	border-color: #1a3f92;
}
.ogc-404__btn--ghost:hover { background: #1a3f92; color: #fff; }
@media (max-width: 720px) {
	.ogc-404 { margin: 30px auto; padding: 40px 18px; }
	.ogc-404__btns { flex-direction: column; }
	.ogc-404__btn { width: 100%; justify-content: center; }
}
