/* =========================================================
   Gaon Connection Style Theme — main stylesheet (v1.1)
   ========================================================= */

:root {
	--gc-red: #c1272d;
	--gc-dark: #1a1a1a;
	--gc-text: #222222;
	--gc-grey: #6b6b6b;
	--gc-border: #e2e2e2;
	--gc-bg: #ffffff;
	--gc-subnav-bg: #f3f3f3;
	--gc-black-footer: #0d0d0d;
	--gc-max-width: 1200px;
	--gc-font: "Noto Sans Devanagari", "Segoe UI", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--gc-font);
	color: var(--gc-text);
	font-size: 1rem;
	line-height: 1.6;
	background: var(--gc-bg);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gc-red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

.gc-container {
	max-width: var(--gc-max-width);
	margin: 0 auto;
	padding: 0 20px;
}

.gc-mobile-only { display: none; }
.gc-desktop-only { display: inline-flex; }

/* =========================================================
   HEADER
   ========================================================= */
.gc-header {
	border-bottom: 1px solid var(--gc-border);
	background: var(--gc-bg);
	position: relative;
	z-index: 40;
}

.gc-logo-row { padding: 14px 0; }
.gc-logo-row-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.gc-logo-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.gc-logo-wrap .custom-logo-link { display: inline-block; }
.gc-logo-wrap img { max-height: 55px; width: auto; }
.gc-logo-text {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--gc-dark);
}
.gc-tagline {
	color: var(--gc-red);
	font-size: 0.65rem;
	letter-spacing: 0.5px;
	font-weight: 600;
	margin-top: 2px;
	text-transform: uppercase;
}

.gc-hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 26px;
	height: 22px;
	padding: 0;
}
.gc-hamburger-btn span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--gc-dark);
	border-radius: 2px;
}
.gc-desktop-hamburger {
	display: flex;
	flex: 0 0 auto;
}

.gc-search-toggle { align-items: center; justify-content: center; padding: 6px; flex: 0 0 auto; }
.gc-icon-search {
	display: block;
	width: 18px;
	height: 18px;
	border: 2px solid var(--gc-dark);
	border-radius: 50%;
	position: relative;
}
.gc-icon-search::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 8px;
	background: var(--gc-dark);
	bottom: -7px;
	right: -3px;
	transform: rotate(-45deg);
}

/* Nav row — centered links */
.gc-nav-row { border-top: 1px solid var(--gc-border); position: relative; }
.gc-nav-row-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 48px;
}

.gc-primary-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	position: static;
}

.gc-top-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.gc-top-menu > li {
	position: static;
	display: flex;
	align-items: center;
}

.gc-top-menu > li > a.gc-nav-link,
.gc-more-item .gc-more-btn {
	display: inline-block;
	padding: 14px 14px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--gc-dark);
	white-space: nowrap;
	border-bottom: 2px solid transparent;
}
.gc-top-menu > li > a.gc-nav-link:hover,
.gc-top-menu > li.is-open > a.gc-nav-link,
.gc-top-menu > li.current-menu-item > a.gc-nav-link,
.gc-top-menu > li.current-menu-ancestor > a.gc-nav-link,
.gc-more-item .gc-more-btn:hover,
.gc-more-item.active .gc-more-btn {
	color: var(--gc-dark);
	border-bottom-color: var(--gc-dark);
}

/* Hide desktop submenu toggle (hover opens bar); keep for a11y on focus */
.gc-top-menu .gc-submenu-toggle { display: none; }

/* Horizontal category dropdown bar (image 2 style) */
.gc-top-menu > .menu-item-has-children > .sub-menu {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 35;
	background: var(--gc-subnav-bg);
	border-top: 1px solid var(--gc-border);
	border-bottom: 1px solid var(--gc-border);
	padding: 12px 20px;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 28px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.gc-top-menu > .menu-item-has-children:hover > .sub-menu,
.gc-top-menu > .menu-item-has-children:focus-within > .sub-menu,
.gc-top-menu > .menu-item-has-children.is-open > .sub-menu {
	display: flex;
}
.gc-top-menu > .menu-item-has-children > .sub-menu > li > a {
	display: inline-block;
	padding: 6px 4px;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--gc-dark);
	white-space: nowrap;
}
.gc-top-menu > .menu-item-has-children > .sub-menu > li > a:hover {
	color: var(--gc-red);
}

.gc-more-item { position: relative; display: flex; align-items: center; }

.gc-more-panel {
	display: none;
	border-top: 1px solid var(--gc-border);
	background: #fafafa;
	padding: 20px 0;
}
.gc-more-panel.open { display: block; }
.gc-more-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px 20px;
}
.gc-more-grid li a {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--gc-dark);
}
.gc-more-grid li a:hover { color: var(--gc-red); }

.gc-search-box { display: none; border-top: 1px solid var(--gc-border); padding: 14px 0; background: #fafafa; }
.gc-search-box.open { display: block; }
.gc-search-form { display: flex; gap: 8px; max-width: 480px; }
.gc-search-field {
	flex: 1;
	padding: 10px 12px;
	border: 1px solid var(--gc-border);
	border-radius: 4px;
	font-size: 0.95rem;
}
.gc-search-submit {
	padding: 10px 18px;
	background: var(--gc-red);
	color: #fff;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.9rem;
}

/* =========================================================
   MOBILE DRAWER — smaller fonts
   ========================================================= */
.gc-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 50;
	display: none;
}
.gc-drawer-overlay.open { display: block; }

.gc-drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 300px;
	max-width: 86vw;
	background: #fff;
	z-index: 60;
	transform: translateX(-100%);
	transition: transform 0.28s ease;
	display: flex;
	flex-direction: column;
	box-shadow: 2px 0 12px rgba(0,0,0,0.15);
}
.gc-drawer.open { transform: translateX(0); }

.gc-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid var(--gc-border);
	flex: 0 0 auto;
}
.gc-drawer-title { font-size: 0.95rem; font-weight: 700; color: var(--gc-dark); }
.gc-drawer-close { font-size: 1.5rem; line-height: 1; color: var(--gc-dark); }

.gc-drawer-body { overflow-y: auto; padding: 4px 14px 24px; flex: 1 1 auto; }

.gc-drawer-menu > li.menu-depth-0 {
	border-bottom: 1px solid var(--gc-border);
	padding: 8px 0;
	position: relative;
}
.gc-drawer-menu > li.menu-depth-0:last-child { border-bottom: none; }
.gc-drawer-menu > li.menu-depth-0 > a {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--gc-dark);
	padding: 4px 28px 4px 0;
}
.gc-drawer-menu .gc-submenu-toggle {
	position: absolute;
	right: 0;
	top: 10px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gc-drawer-menu .gc-submenu-toggle span {
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--gc-dark);
	border-bottom: 2px solid var(--gc-dark);
	transform: rotate(45deg);
	margin-top: -4px;
	transition: transform 0.2s;
}
.gc-drawer-menu > li.is-open > .gc-submenu-toggle span {
	transform: rotate(225deg);
	margin-top: 2px;
}
.gc-drawer-menu .sub-menu {
	display: none;
	margin-top: 2px;
	padding-left: 10px;
}
.gc-drawer-menu > li.is-open > .sub-menu { display: block; }
.gc-drawer-menu .sub-menu li a {
	display: block;
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--gc-text);
	padding: 5px 0;
}
.gc-drawer-menu .sub-menu li a:hover { color: var(--gc-red); }
.gc-drawer-menu-more { margin-top: 4px; }
.gc-drawer-menu-more li a {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--gc-dark);
	padding: 8px 0;
	border-bottom: 1px solid var(--gc-border);
}
.gc-drawer-menu-more li:last-child a { border-bottom: none; }

/* =========================================================
   CARD GRID (archive)
   ========================================================= */
.gc-archive-wrap { padding: 30px 0 50px; }
.gc-archive-title { font-size: 1.6rem; margin: 0 0 20px; }
.gc-archive-desc { color: var(--gc-grey); margin-bottom: 20px; }

.gc-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 26px;
}
.gc-card { border: 1px solid var(--gc-border); border-radius: 6px; overflow: hidden; }
.gc-card-thumb, .gc-card-thumb-placeholder { width: 100%; height: 180px; object-fit: cover; background: #eee; }
.gc-card-body { padding: 14px 16px 18px; }
.gc-card-cat {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--gc-red);
	text-transform: uppercase;
	margin-bottom: 6px;
}
.gc-card-title { font-size: 1.05rem; line-height: 1.35; margin: 0 0 8px; }
.gc-card-title a:hover { color: var(--gc-red); }
.gc-card-excerpt { font-size: 0.88rem; color: var(--gc-grey); margin: 0 0 10px; }
.gc-card-meta { font-size: 0.78rem; color: var(--gc-grey); }
.gc-meta-sep { margin: 0 6px; }

.gc-pagination { margin-top: 30px; display: flex; gap: 10px; justify-content: center; }
.gc-pagination .page-numbers {
	padding: 8px 13px;
	border: 1px solid var(--gc-border);
	border-radius: 4px;
	font-size: 0.9rem;
}
.gc-pagination .page-numbers.current { background: var(--gc-red); color: #fff; border-color: var(--gc-red); }

/* =========================================================
   SINGLE POST
   ========================================================= */
.gc-single-wrap { padding: 24px 0 60px; }
.gc-breadcrumb { font-size: 0.85rem; color: var(--gc-grey); margin-bottom: 14px; }
.gc-breadcrumb a { color: #1565c0; }
.gc-breadcrumb-sep { margin: 0 6px; }
.gc-breadcrumb-current { color: var(--gc-grey); }

.gc-single-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: start;
}
.gc-single-title { font-size: 1.9rem; line-height: 1.3; margin: 0 0 12px; }
.gc-single-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
	color: var(--gc-grey);
	margin-bottom: 16px;
	flex-wrap: wrap;
}
.gc-share-btn {
	margin-left: auto;
	border: 1px solid var(--gc-border);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gc-dark);
}
.gc-share-btn:hover { border-color: var(--gc-red); color: var(--gc-red); }
.gc-single-intro { font-size: 1.05rem; color: #333; margin-bottom: 18px; }
.gc-single-feature-image { margin: 0 0 22px; }
.gc-single-feature-image img { border-radius: 4px; width: 100%; }
.gc-single-feature-image figcaption { font-size: 0.8rem; color: var(--gc-grey); margin-top: 8px; text-align: center; }
.gc-single-content { font-size: 1rem; color: var(--gc-text); }
.gc-single-content p { margin: 0 0 18px; }
.gc-single-content h2 { font-size: 1.3rem; margin: 28px 0 12px; }
.gc-single-content h3 { font-size: 1.12rem; margin: 22px 0 10px; }
.gc-single-content img { border-radius: 4px; margin: 16px 0; }
.gc-single-tags { margin: 26px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.gc-tag-pill {
	border: 1px solid var(--gc-border);
	padding: 6px 12px;
	border-radius: 16px;
	font-size: 0.8rem;
	color: var(--gc-dark);
}
.gc-tag-pill:hover { border-color: var(--gc-red); color: var(--gc-red); }
.gc-author-box {
	display: flex;
	gap: 14px;
	padding: 18px;
	background: #fafafa;
	border-radius: 6px;
	margin-top: 10px;
}
.gc-author-avatar { border-radius: 50%; width: 56px; height: 56px; }
.gc-author-role { font-size: 0.7rem; color: var(--gc-grey); font-weight: 700; letter-spacing: 0.5px; }
.gc-author-name { display: block; font-size: 1rem; font-weight: 700; margin: 2px 0 6px; }
.gc-author-bio { font-size: 0.85rem; color: var(--gc-grey); margin: 0 0 6px; }
.gc-author-readmore { font-size: 0.82rem; color: var(--gc-red); font-weight: 600; }
.gc-related-heading {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin: 0 0 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--gc-dark);
}
.gc-related-list { display: flex; flex-direction: column; gap: 16px; }
.gc-related-link { display: flex; gap: 12px; }
.gc-related-thumb { flex: 0 0 90px; }
.gc-related-thumb img { border-radius: 4px; width: 90px; height: 64px; object-fit: cover; }
.gc-related-title { display: block; font-size: 0.9rem; font-weight: 600; line-height: 1.35; margin-bottom: 6px; }
.gc-related-link:hover .gc-related-title { color: var(--gc-red); }
.gc-related-author { font-size: 0.78rem; color: var(--gc-grey); }
.gc-comments-wrap { margin-top: 40px; }

/* =========================================================
   FOOTER — black logo bar + white body (image 7)
   ========================================================= */
.gc-footer { margin-top: 48px; }
.gc-footer-topbar {
	background: var(--gc-black-footer);
	padding: 18px 0;
}
.gc-footer-topbar-inner { display: flex; align-items: center; justify-content: center; }
.gc-footer-logo-wrap {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gc-footer-logo-wrap .custom-logo-link,
.gc-footer-logo-wrap a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}
.gc-footer-logo-wrap img,
.gc-footer-logo-wrap .custom-logo {
	display: block !important;
	max-height: 56px !important;
	width: auto !important;
	height: auto !important;
	max-width: 260px;
	margin: 0 auto;
	/* Keep original logo colors — do NOT invert (was showing as white box) */
	filter: none !important;
	opacity: 1 !important;
	visibility: visible !important;
	object-fit: contain;
	background: transparent;
}
.gc-footer-logo-text {
	color: #fff !important;
	font-weight: 700;
	font-size: 1.35rem;
	line-height: 1.2;
}

.gc-footer-body {
	background: #fff;
	padding: 40px 0 28px;
	color: var(--gc-dark);
}
.gc-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1.3fr 1.2fr;
	gap: 40px;
}
.gc-footer-heading {
	color: var(--gc-dark);
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 16px;
}
.gc-contact-heading { margin-top: 22px; }
.gc-footer-section-cols,
.gc-footer-org-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
}
.gc-footer-org-cols {
	grid-template-columns: 1fr;
}
.gc-footer-org-cols .gc-footer-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 28px;
	column-gap: 28px;
}
.gc-footer-menu li { margin-bottom: 10px; }
.gc-footer-menu li a {
	font-size: 0.88rem;
	color: #333;
	font-weight: 500;
}
.gc-footer-menu li a:hover { color: var(--gc-red); }

.gc-social-icons { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 6px; }
.gc-social-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	flex: 0 0 auto;
	text-decoration: none;
}
.gc-social-icon svg {
	width: 16px;
	height: 16px;
	display: block;
	fill: currentColor;
}
.gc-social-instagram { background: #e1306c; }
.gc-social-linkedin { background: #0a66c2; }
.gc-social-twitter { background: #111111; }
.gc-social-facebook { background: #1877f2; }
.gc-social-youtube { background: #ff0000; }
.gc-social-whatsapp { background: #25d366; }
.gc-social-icon:hover { opacity: 0.9; color: #fff !important; }

/* Ad banners */
.gc-ad-banner { padding: 20px 0; }
.gc-ad-link { display: block; }
.gc-ad-img {
	width: 100%;
	height: auto;
	max-height: 160px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
	margin: 0 auto;
}
.gc-empty-home {
	padding: 40px 0;
	color: var(--gc-grey);
	text-align: center;
}

.gc-contact-address,
.gc-contact-email {
	font-style: normal;
	font-size: 0.88rem;
	line-height: 1.5;
	color: #333;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 10px;
}
.gc-contact-email:hover { color: var(--gc-red); }
.gc-contact-svg {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	color: var(--gc-dark);
}

.gc-footer-bottom {
	background: #fff;
	border-top: 1px solid var(--gc-border);
	padding: 14px 0 20px;
}
.gc-footer-copyright {
	font-size: 0.8rem;
	color: var(--gc-grey);
	margin: 0;
	text-align: center;
}

/* =========================================================
   HOMEPAGE — Magazine grid (section 2)
   ========================================================= */
.gc-magazine { padding: 28px 0 10px; }
.gc-mag-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.5fr 1fr;
	gap: 28px;
	align-items: start;
}
.gc-mag-thumb-ph { display: block; background: #e8e8e8; }

.gc-mag-left { display: flex; flex-direction: column; gap: 18px; }
.gc-mag-mini { display: flex; flex-direction: column; }
.gc-mag-mini-thumb,
.gc-mag-mini-thumb.gc-mag-thumb-ph {
	width: 100%;
	height: 110px;
	object-fit: cover;
	border-radius: 4px;
	background: #eee;
}
.gc-mag-source {
	display: block;
	margin-top: 8px;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--gc-grey);
	letter-spacing: 0.2px;
}
.gc-mag-mini-title {
	margin: 4px 0 0;
	font-size: 0.9rem;
	line-height: 1.35;
	font-weight: 700;
}
.gc-mag-mini-title a:hover { color: var(--gc-red); }

.gc-mag-center-thumb,
.gc-mag-center-thumb.gc-mag-thumb-ph {
	width: 100%;
	height: 280px;
	object-fit: cover;
	border-radius: 4px;
	background: #eee;
}
.gc-mag-center-meta {
	margin-top: 12px;
	font-size: 0.78rem;
	color: var(--gc-grey);
}
.gc-mag-center-title {
	margin: 10px 0 12px;
	font-size: 1.35rem;
	line-height: 1.3;
	font-weight: 800;
}
.gc-mag-center-title a:hover { color: var(--gc-red); }
.gc-mag-center-excerpt {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: #444;
}

.gc-mag-right { display: flex; flex-direction: column; gap: 22px; }
.gc-mag-side-thumb,
.gc-mag-side-thumb.gc-mag-thumb-ph {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 4px;
	background: #eee;
}
.gc-mag-side-title {
	margin: 10px 0 8px;
	font-size: 1rem;
	line-height: 1.35;
	font-weight: 700;
}
.gc-mag-side-title a:hover { color: var(--gc-red); }
.gc-mag-side-meta {
	font-size: 0.75rem;
	color: var(--gc-grey);
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

/* =========================================================
   HOMEPAGE — Featured + Trending hero
   ========================================================= */
.gc-hero-featured { padding: 22px 0 12px; }
.gc-hero-layout {
	display: grid;
	grid-template-columns: 1.85fr 1fr;
	gap: 20px;
	align-items: stretch;
}
.gc-hero-main {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	min-height: 420px;
	background: #111;
}
.gc-hero-main-link { display: block; height: 100%; position: relative; color: #fff; }
.gc-hero-main-link:hover { color: #fff; }
.gc-hero-main-img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
}
.gc-hero-img-placeholder { display: block; width: 100%; min-height: 420px; background: #333; }
.gc-hero-main-overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 48px 22px 22px;
	background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0));
}
.gc-hero-cat-tag {
	display: inline-block;
	background: rgba(255,255,255,0.2);
	border: 1px solid rgba(255,255,255,0.45);
	padding: 3px 12px;
	border-radius: 14px;
	font-size: 0.72rem;
	font-weight: 700;
	margin-bottom: 10px;
}
.gc-hero-main-title {
	margin: 0 0 14px;
	font-size: 1.45rem;
	line-height: 1.35;
	font-weight: 700;
	color: #fff;
}
.gc-hero-readmore {
	display: inline-block;
	background: #1e88e5;
	color: #fff;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 0.85rem;
	font-weight: 700;
}
.gc-hero-main-link:hover .gc-hero-readmore { background: #1565c0; }

.gc-hero-side { display: flex; flex-direction: column; }
.gc-trending-box {
	background: #fafafa;
	border: 1px solid var(--gc-border);
	border-radius: 6px;
	padding: 14px 14px 8px;
	height: 100%;
}
.gc-trending-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	font-size: 1rem;
	font-weight: 700;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--gc-dark);
}
.gc-trending-fire {
	display: inline-block;
	width: 14px;
	height: 18px;
	background: #e65100;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 23c-4.5 0-8-3.2-8-7.5 0-2.6 1.3-4.6 2.7-6.2.4-.5 1.2-.3 1.3.3.2 1.2.7 2.2 1.4 2.9C10 8 12.2 4.5 13.5 2.8c.3-.4.9-.3 1 .2.5 2.3 1.7 4.1 3.2 5.5C19.5 10.2 20 12.2 20 14.2 20 19 16.4 23 12 23z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 23c-4.5 0-8-3.2-8-7.5 0-2.6 1.3-4.6 2.7-6.2.4-.5 1.2-.3 1.3.3.2 1.2.7 2.2 1.4 2.9C10 8 12.2 4.5 13.5 2.8c.3-.4.9-.3 1 .2.5 2.3 1.7 4.1 3.2 5.5C19.5 10.2 20 12.2 20 14.2 20 19 16.4 23 12 23z'/%3E%3C/svg%3E");
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
}
.gc-trending-list { display: flex; flex-direction: column; gap: 14px; }
.gc-trending-link {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.gc-trending-thumb {
	flex: 0 0 88px;
	width: 88px;
	height: 64px;
	border-radius: 4px;
	overflow: hidden;
	background: #ddd;
}
.gc-trending-thumb img,
.gc-trending-thumb-ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gc-trending-thumb-ph { background: #ddd; }
.gc-trending-item-title {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.35;
	margin-bottom: 6px;
	color: var(--gc-dark);
}
.gc-trending-link:hover .gc-trending-item-title { color: var(--gc-red); }
.gc-trending-meta { font-size: 0.72rem; color: var(--gc-grey); }

/* =========================================================
   HOMEPAGE — category 3-column sections
   ========================================================= */
.gc-home-section { padding: 34px 0 6px; }
.gc-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	border-bottom: 2px solid var(--gc-dark);
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.gc-section-title { font-size: 1.4rem; margin: 0; font-weight: 800; }
.gc-section-title a:hover { color: var(--gc-red); }
.gc-view-all { font-size: 0.85rem; font-weight: 700; color: var(--gc-red); white-space: nowrap; }
.gc-view-all:hover { text-decoration: underline; }

.gc-cat-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px 24px;
}
.gc-cat-featured { margin-bottom: 16px; }
.gc-cat-featured-thumb,
.gc-cat-featured-thumb.gc-card-thumb-placeholder {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 6px;
	background: #eee;
}
.gc-cat-featured-title {
	font-size: 1.02rem;
	line-height: 1.35;
	margin: 12px 0 8px;
	font-weight: 700;
}
.gc-cat-featured-title a:hover { color: var(--gc-red); }
.gc-cat-featured-meta { font-size: 0.78rem; color: var(--gc-grey); }

.gc-cat-list-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding-top: 14px;
	border-top: 1px solid var(--gc-border);
}
.gc-cat-list-thumb-link { flex: 0 0 84px; }
.gc-cat-list-thumb,
.gc-cat-list-thumb.gc-card-thumb-placeholder {
	width: 84px;
	height: 72px;
	object-fit: cover;
	border-radius: 4px;
	background: #eee;
}
.gc-cat-list-title {
	font-size: 0.9rem;
	line-height: 1.35;
	margin: 0 0 6px;
	font-weight: 700;
}
.gc-cat-list-title a:hover { color: var(--gc-red); }
.gc-cat-list-date { font-size: 0.75rem; color: var(--gc-grey); }

/* legacy home grid (archives fallback) */
.gc-home-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px 20px;
}
.gc-home-card-thumb, .gc-home-card-thumb.gc-card-thumb-placeholder { width: 100%; height: 150px; object-fit: cover; border-radius: 4px; background: #eee; }
.gc-home-card-body { padding-top: 10px; }
.gc-home-card-title { font-size: 0.95rem; line-height: 1.35; margin: 0 0 8px; font-weight: 600; }
.gc-home-card-meta { font-size: 0.75rem; color: var(--gc-grey); }

/* =========================================================
   HOMEPAGE — Reels slider (in-place play)
   ========================================================= */
.gc-reels-section {
	padding: 28px 0 10px;
	background: #f5f5f5;
	margin-top: 12px;
}
.gc-reels-section .gc-section-head { border-bottom-color: transparent; margin-bottom: 14px; padding-bottom: 0; }
.gc-reels-slider { position: relative; }
.gc-reels-track {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.gc-reels-track::-webkit-scrollbar { display: none; }

.gc-reel-card {
	position: relative;
	flex: 0 0 168px;
	width: 168px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.gc-reel-media {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 14;
	background: #111;
	overflow: hidden;
}
.gc-reel-thumb,
.gc-reel-thumb-placeholder,
.gc-reel-thumb-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gc-reel-thumb-placeholder { background: #222; }
.gc-reel-thumb-video {
	pointer-events: none;
	background: #111;
}
.gc-reel-play {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0,0,0,0.75);
	z-index: 4;
	border: 0;
	cursor: pointer;
}
.gc-reel-play::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
	border-left: 10px solid #fff;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
}
.gc-reel-card.is-playing .gc-reel-play { display: none !important; }
.gc-reel-card.is-playing .gc-reel-thumb,
.gc-reel-card.is-playing .gc-reel-thumb-video,
.gc-reel-card.is-playing .gc-reel-thumb-placeholder { display: none !important; }
.gc-reel-player {
	position: absolute;
	inset: 0;
	background: #000;
	z-index: 5;
}
.gc-reel-player[hidden] {
	display: none !important;
}
.gc-reel-player:not([hidden]) {
	display: block !important;
}
.gc-reel-player video,
.gc-reel-player iframe {
	width: 100% !important;
	height: 100% !important;
	border: 0;
	object-fit: contain;
	display: block;
	background: #000;
}
.gc-reel-caption {
	padding: 10px 10px 12px;
	background: #fff;
	min-height: 56px;
}
.gc-reel-title {
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--gc-dark);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.gc-reels-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	padding: 8px 0 4px;
}
.gc-reels-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #cfcfcf;
	padding: 0;
}
.gc-reels-dot.is-active { background: var(--gc-dark); }

.gc-reel-single-wrap { padding: 30px 0 60px; max-width: 560px; margin: 0 auto; }
.gc-reel-player-wrap { background: #000; border-radius: 8px; overflow: hidden; margin-bottom: 18px; }
.gc-reel-player { width: 100%; max-height: 80vh; display: block; }
.gc-reel-single-title { font-size: 1.35rem; margin: 0 0 8px; }
.gc-reel-single-meta { font-size: 0.82rem; color: var(--gc-grey); margin-bottom: 16px; }
.gc-reel-single-content { margin-bottom: 30px; }
.gc-reel-more { margin-top: 20px; }

/* =========================================================
   PAGE / 404
   ========================================================= */
.gc-page-wrap, .gc-404-wrap { padding: 30px 0 60px; max-width: 800px; margin: 0 auto; }
.gc-page-title { font-size: 1.8rem; margin-bottom: 16px; }
.gc-page-thumb { margin-bottom: 20px; }
.gc-page-content p { margin: 0 0 18px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
	.gc-hero-layout { grid-template-columns: 1.5fr 1fr; }
	.gc-mag-grid { grid-template-columns: 1fr 1.3fr 1fr; gap: 20px; }
	.gc-cat-columns { grid-template-columns: repeat(2, 1fr); }
	.gc-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; }
}

@media (max-width: 900px) {
	.gc-mobile-only { display: inline-flex; }
	.gc-desktop-only { display: none; }
	.gc-desktop-hamburger { display: none; }

	.gc-logo-row { padding: 10px 0; }
	.gc-logo-row-inner { justify-content: space-between; }
	.gc-hamburger-btn.gc-mobile-only { display: flex; }
	.gc-logo-wrap img { max-height: 38px; }
	.gc-logo-text { font-size: 1.25rem; }
	.gc-tagline { font-size: 0.55rem; }

	/* Mobile: horizontal scroll nav strip (image 3) */
	.gc-nav-row-inner { padding: 2px 0; }
	.gc-primary-nav {
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}
	.gc-top-menu {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.gc-top-menu > li > a.gc-nav-link,
	.gc-more-item .gc-more-btn {
		padding: 12px 10px;
		font-size: 0.85rem;
	}
	/* On mobile, hide hover mega-bar; use drawer for children */
	.gc-top-menu > .menu-item-has-children > .sub-menu { display: none !important; }

	.gc-hero-layout { grid-template-columns: 1fr; }
	.gc-hero-main,
	.gc-hero-main-img,
	.gc-hero-img-placeholder { min-height: 280px; }
	.gc-hero-main-title { font-size: 1.15rem; }

	.gc-mag-grid { grid-template-columns: 1fr; }
	.gc-mag-left {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}
	.gc-mag-right {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}
	.gc-mag-center-thumb { height: 220px; }
	.gc-mag-center-title { font-size: 1.15rem; }

	.gc-cat-columns { grid-template-columns: 1fr; }
	.gc-section-title { font-size: 1.15rem; }
	.gc-home-grid { grid-template-columns: repeat(2, 1fr); }

	.gc-single-grid { grid-template-columns: 1fr; }
	.single .gc-container,
	.single-post .gc-container {
		padding-left: 10px;
		padding-right: 10px;
	}
	.gc-single-title { font-size: 1.5rem; }

	.gc-footer-grid { grid-template-columns: 1fr; }
	.gc-footer-section-cols,
	.gc-footer-org-cols { grid-template-columns: 1fr 1fr; }
	.gc-reel-card { flex: 0 0 148px; width: 148px; }
}

@media (max-width: 480px) {
	.gc-card-grid { grid-template-columns: 1fr; }
	.gc-drawer { width: 280px; }
	.gc-home-grid { grid-template-columns: 1fr; }
	.gc-hero-main,
	.gc-hero-main-img,
	.gc-hero-img-placeholder { min-height: 220px; }
	.gc-footer-section-cols,
	.gc-footer-org-cols { grid-template-columns: 1fr; }
	.gc-cat-featured-thumb { height: 180px; }
	.gc-mag-left,
	.gc-mag-right { grid-template-columns: 1fr; }
	.gc-mag-mini-thumb { height: 140px; }
}
