/*
Theme Name: Gujju Fan Club
Theme URI: https://gujjufanclub.com
Author: Gujju Fan Club
Author URI: https://gujjufanclub.com
Description: Mobile-first, clean minimal news portal theme for Gujju Fan Club.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gujju-fan-club-theme
*/

/* ==========================================================================
   0. CSS Custom Properties (Color Palette & Design Tokens)
   ========================================================================== */

:root {
  --primary: #FFC107;
  --primary-hover: #E5AC00;
  --primary-light: #FFF8E1;
  --dark: #1A1A1A;
  --dark-hover: #333333;
  --bg-main: #F5F5F5;
  --bg-card: #FFFFFF;
  --text-main: #1A1A1A;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --font-primary: 'Noto Sans Gujarati', 'Poppins', sans-serif;
  --font-english: 'Poppins', sans-serif;
}


/* ==========================================================================
   1. Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-main);
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  font-size: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}


/* ==========================================================================
   2. Top Bar (.gfc-topbar)
   ========================================================================== */

.gfc-topbar {
  background: var(--dark);
  color: #FFFFFF;
  height: 36px;
  font-size: 12px;
  font-family: var(--font-english);
  line-height: 36px;
}

.gfc-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.gfc-topbar-date {
  display: none;
  white-space: nowrap;
  color: #CCCCCC;
}

.gfc-topbar-social {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.gfc-topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  font-size: 12px;
  border-radius: 50%;
  transition: color 0.2s ease;
}

.gfc-topbar-social a:hover {
  color: var(--primary);
}

.gfc-topbar-social img,
.gfc-topbar-social svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {
  .gfc-topbar-date {
    display: block;
  }
}


/* ==========================================================================
   3. Main Header (.gfc-header)
   ========================================================================== */

.gfc-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
 position: sticky; top: 0; z-index: 1000;}

.gfc-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

/* -- Logo -- */
.gfc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.gfc-logo img {
  height: 45px;
  width: auto;
}

.gfc-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.gfc-logo-text .gfc-brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}

.gfc-logo-text .gfc-brand-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* -- Header Right Actions -- */
.gfc-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* -- Search -- */
.gfc-search {
  position: relative;
}

.gfc-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-main);
  transition: background-color 0.2s ease;
}

.gfc-search-btn:hover {
  background-color: var(--bg-main);
}

.gfc-search-btn svg,
.gfc-search-btn img {
  width: 18px;
  height: 18px;
}

.gfc-search-form {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  width: 280px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  z-index: 100;
}

.gfc-search-form.is-open {
  display: block;
  animation: fadeIn 0.2s ease;
}

.gfc-search-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 14px;
  outline: none;
}

.gfc-search-form input:focus {
  border-color: var(--primary);
}

/* -- Hamburger -- */
.gfc-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

.gfc-hamburger:hover {
  background-color: var(--bg-main);
}

.gfc-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gfc-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gfc-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.gfc-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .gfc-header .container {
    height: 70px;
  }

  .gfc-logo img {
    height: 55px;
  }

  .gfc-logo-text .gfc-brand-name {
    font-size: 20px;
  }

  .gfc-logo-text .gfc-brand-sub {
    font-size: 12px;
  }

  .gfc-search-form {
    width: 320px;
  }
}

@media (min-width: 1024px) {
  .gfc-hamburger {
    display: none;
  }
}


/* ==========================================================================
   4. Navigation Bar (.gfc-navbar)
   ========================================================================== */

.gfc-navbar {
  background: var(--dark);
  position: relative;
  z-index: 900;
 position: sticky; top: var(--header-height, 60px); z-index: 999;}

.gfc-navbar-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gfc-navbar-inner::-webkit-scrollbar {
  display: none;
}

/* WordPress wp_nav_menu generates: ul.gfc-nav-list > li.menu-item > a */
.gfc-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.gfc-nav-list::-webkit-scrollbar {
  display: none;
}

.gfc-nav-list li {
  flex-shrink: 0;
}

.gfc-nav-list li a,
.gfc-nav-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.gfc-nav-list li a:hover,
.gfc-nav-list li.current-menu-item a,
.gfc-nav-list li.current_page_item a,
.gfc-nav-link:hover,
.gfc-nav-link.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Force hide sub-menus in navbar */
.gfc-nav-list .sub-menu,
.gfc-nav-list .children {
  display: none !important;
}

@media (min-width: 1024px) {
  .gfc-navbar-inner {
    justify-content: center;
    overflow-x: visible;
  }

  .gfc-nav-list {
    justify-content: center;
  }
}


/* ==========================================================================
   5. Mobile Menu (.gfc-mobile-menu)
   ========================================================================== */

.gfc-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.gfc-mobile-menu.is-open {
  transform: translateX(0);
}

.gfc-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gfc-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.gfc-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.gfc-mobile-menu-header img {
  height: 36px;
  width: auto;
}

.gfc-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--text-muted);
  transition: background-color 0.2s ease;
}

.gfc-menu-close:hover {
  background-color: var(--bg-main);
  color: var(--dark);
}

.gfc-mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
}

.gfc-mobile-menu-nav a {
  display: block;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.15s ease;
}

.gfc-mobile-menu-nav a:hover,
.gfc-mobile-menu-nav a.is-active {
  background-color: var(--primary-light);
  color: var(--primary-hover);
}

.gfc-mobile-menu-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.gfc-mobile-menu-footer .gfc-topbar-social {
  justify-content: center;
}

.gfc-mobile-menu-footer .gfc-topbar-social a {
  width: 32px;
  height: 32px;
  background: var(--bg-main);
  color: var(--dark);
}

.gfc-mobile-menu-footer .gfc-topbar-social a:hover {
  background: var(--primary);
}

@media (min-width: 1024px) {
  .gfc-mobile-menu,
  .gfc-menu-overlay {
    display: none !important;
  }
}


/* ==========================================================================
   6. Language Popup (.gfc-lang-popup)
   ========================================================================== */

.gfc-lang-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gfc-lang-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.gfc-lang-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gfc-lang-modal {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 340px;
  width: calc(100% - 40px);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gfc-lang-popup.is-open .gfc-lang-modal {
  transform: scale(1);
}

.gfc-lang-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 18px;
  transition: background-color 0.2s ease;
}

.gfc-lang-modal-close:hover {
  background: var(--bg-main);
}

.gfc-lang-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
}

.gfc-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.gfc-lang-btn:last-child {
  margin-bottom: 0;
}

.gfc-lang-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.gfc-lang-btn.is-active,
.gfc-lang-btn.is-selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}


/* ==========================================================================
   7. Hero Section (.gfc-hero)
   ========================================================================== */

.gfc-hero {
  padding: 16px 0;
}

.gfc-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* -- Featured Card -- */
.gfc-hero-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.gfc-hero-featured-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gfc-hero-featured-content {
  padding: 16px;
}

.gfc-hero-featured .gfc-badge {
  margin-bottom: 8px;
}

.gfc-hero-featured-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-main);
}

.gfc-hero-featured-title a {
  color: inherit;
}

.gfc-hero-featured-title a:hover {
  color: var(--primary-hover);
}

.gfc-hero-featured-meta {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

/* -- Overlay Variant (image with text on top) -- */
.gfc-hero-featured--overlay {
  position: relative;
}

.gfc-hero-featured--overlay .gfc-hero-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: #FFFFFF;
}

.gfc-hero-featured--overlay .gfc-hero-featured-title {
  color: #FFFFFF;
}

.gfc-hero-featured--overlay .gfc-hero-featured-meta {
  color: #CCCCCC;
}

/* -- Sidebar -- */
.gfc-hero-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 16px;
}

.gfc-hero-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.gfc-hero-sidebar-item:last-child {
  border-bottom: none;
}

.gfc-hero-sidebar-thumb {
  width: 80px;
  min-width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.gfc-hero-sidebar-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gfc-hero-sidebar-title a {
  color: inherit;
}

.gfc-hero-sidebar-title a:hover {
  color: var(--primary-hover);
}

.gfc-hero-sidebar-meta {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}

@media (min-width: 768px) {
  .gfc-hero-featured-title {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .gfc-hero .container {
    grid-template-columns: 3fr 2fr;
  }

  .gfc-hero-featured-title {
    font-size: 28px;
  }
}


/* ==========================================================================
   8. Section Title (.gfc-section-title)
   ========================================================================== */

.gfc-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  border-left: 4px solid var(--primary);
  padding-left: 12px;
  margin: 24px 0 16px;
  line-height: 1.3;
}

.gfc-section-title .gfc-view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-hover);
  white-space: nowrap;
  margin-left: 16px;
}

.gfc-section-title .gfc-view-all:hover {
  text-decoration: underline;
}


/* ==========================================================================
   9. Post Cards Grid (.gfc-grid)
   ========================================================================== */

.gfc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .gfc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gfc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* -- 3-column variant -- */
.gfc-grid--3col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .gfc-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gfc-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ==========================================================================
   10. Post Card (.gfc-card)
   ========================================================================== */

.gfc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gfc-card:hover {
  box-shadow: var(--shadow-md);
}

/* -- Card Image -- */
.gfc-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* -- Card Body -- */
.gfc-card-body {
  padding: 12px;
}

/* -- Category Badge -- */
.gfc-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-family: var(--font-english);
}

/* -- Card Title -- */
.gfc-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin: 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gfc-card-title a {
  color: inherit;
}

.gfc-card-title a:hover {
  color: var(--primary-hover);
}

/* -- Card Meta -- */
.gfc-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-english);
}

.gfc-card-meta svg,
.gfc-card-meta img {
  width: 12px;
  height: 12px;
  opacity: 0.6;
}

.gfc-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* -- Card Footer -- */
.gfc-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* -- Read More -- */
.gfc-read-more {
  color: var(--primary-hover);
  font-weight: 600;
  font-size: 13px;
  transition: color 0.2s ease;
}

.gfc-read-more:hover {
  text-decoration: underline;
}

/* -- WhatsApp Share -- */
.gfc-share-wa {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #25D366;
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-english);
  transition: opacity 0.2s ease;
}

.gfc-share-wa:hover {
  opacity: 0.85;
  color: #FFFFFF;
}

.gfc-share-wa svg,
.gfc-share-wa img {
  width: 14px;
  height: 14px;
}

/* -- Horizontal Card Variant (list view) -- */
.gfc-card--horizontal {
  display: flex;
  flex-direction: row;
}

.gfc-card--horizontal .gfc-card-img {
  width: 120px;
  min-width: 120px;
  aspect-ratio: auto;
  height: 100%;
  min-height: 100px;
}

.gfc-card--horizontal .gfc-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* ==========================================================================
   11. Load More Button (.gfc-load-more)
   ========================================================================== */

.gfc-load-more {
  display: block;
  width: fit-content;
  margin: 24px auto;
  background: var(--dark);
  color: #FFFFFF;
  padding: 12px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.gfc-load-more:hover {
  background: var(--primary);
  color: var(--dark);
}

.gfc-load-more:disabled,
.gfc-load-more.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.gfc-load-more.is-loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  margin-left: 8px;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* ==========================================================================
   12. Single Article (.gfc-article)
   ========================================================================== */

.gfc-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 16px;
}

/* -- Breadcrumb -- */
.gfc-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: var(--font-english);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.gfc-breadcrumb a {
  color: var(--primary-hover);
  font-weight: 500;
}

.gfc-breadcrumb a:hover {
  text-decoration: underline;
}

.gfc-breadcrumb span {
  color: var(--text-light);
}

/* -- Article Header -- */
.gfc-article-header {
  margin-bottom: 20px;
}

.gfc-article-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 12px;
}

.gfc-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-english);
}

.gfc-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.gfc-article-meta svg,
.gfc-article-meta img {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

/* -- Featured Image -- */
.gfc-article-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.gfc-article-img-caption {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: -14px;
  margin-bottom: 20px;
}

/* -- Article Body -- */
.gfc-article-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-main);
}

.gfc-article-body p {
  margin-bottom: 16px;
}

.gfc-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.gfc-article-body h2,
.gfc-article-body h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.gfc-article-body h2 {
  font-size: 20px;
}

.gfc-article-body h3 {
  font-size: 18px;
}

.gfc-article-body ul,
.gfc-article-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.gfc-article-body ul {
  list-style: disc;
}

.gfc-article-body ol {
  list-style: decimal;
}

.gfc-article-body li {
  margin-bottom: 6px;
}

.gfc-article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 12px 16px;
  margin: 16px 0;
  background: var(--primary-light);
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.gfc-article-body a {
  color: var(--primary-hover);
  text-decoration: underline;
}

.gfc-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.gfc-article-body th,
.gfc-article-body td {
  border: 1px solid var(--border);
  padding: 8px 12px;
  text-align: left;
  font-size: 14px;
}

.gfc-article-body th {
  background: var(--bg-main);
  font-weight: 600;
}

/* -- Share Bar (sticky bottom) -- */
.gfc-share-bar {
  position: sticky;
  bottom: 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  z-index: 50;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
}

.gfc-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-english);
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.gfc-share-btn:hover {
  opacity: 0.85;
}

.gfc-share-btn svg,
.gfc-share-btn img {
  width: 16px;
  height: 16px;
}

.gfc-share-btn--whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.gfc-share-btn--facebook {
  background: #1877F2;
  color: #FFFFFF;
}

.gfc-share-btn--twitter {
  background: #1DA1F2;
  color: #FFFFFF;
}

.gfc-share-btn--copy {
  background: var(--bg-main);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.gfc-share-btn--copy.is-copied {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-hover);
}

@media (min-width: 768px) {
  .gfc-article-title {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .gfc-article-title {
    font-size: 32px;
  }
}


/* ==========================================================================
   13. Related Posts (.gfc-related)
   ========================================================================== */

.gfc-related {
  padding: 20px 0 40px;
}

.gfc-related .gfc-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .gfc-related .gfc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ==========================================================================
   14. Footer (.gfc-footer)
   ========================================================================== */

.gfc-footer {
  background: var(--dark);
  color: #CCCCCC;
  padding: 40px 0 20px;
  font-size: 14px;
  line-height: 1.6;
}

.gfc-footer a {
  color: #CCCCCC;
  transition: color 0.2s ease;
}

.gfc-footer a:hover {
  color: var(--primary);
}

/* -- Footer Content Grid -- */
.gfc-footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

/* -- Footer Logo & About -- */
.gfc-footer-about img {
  height: 45px;
  margin-bottom: 12px;
}

.gfc-footer-about p {
  color: #999999;
  font-size: 13px;
  line-height: 1.7;
}

/* -- Footer Links -- */
.gfc-footer-links h4 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.gfc-footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gfc-footer-links li a {
  font-size: 13px;
  display: inline-block;
  padding: 2px 0;
}

/* -- Footer Social -- */
.gfc-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gfc-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  font-size: 16px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.gfc-footer-social a:hover {
  transform: scale(1.1);
  background: var(--primary-hover);
  color: var(--dark);
}

.gfc-footer-social a svg,
.gfc-footer-social a img {
  width: 18px;
  height: 18px;
}

/* -- Footer Bottom -- */
.gfc-footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #999999;
}

.gfc-footer-bottom a {
  color: var(--primary);
}

@media (min-width: 768px) {
  .gfc-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gfc-footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}


/* ==========================================================================
   15. Utility Classes
   ========================================================================== */

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* -- Margins -- */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }

.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }

/* -- Responsive Visibility -- */
.hidden-mobile {
  display: none;
}

.hidden-desktop {
  display: block;
}

@media (min-width: 1024px) {
  .hidden-mobile {
    display: block;
  }

  .hidden-desktop {
    display: none;
  }
}

/* -- Screen Reader Only -- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ==========================================================================
   16. Animations
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* -- Animation Utility Classes -- */
.animate-fadeIn {
  animation: fadeIn 0.4s ease forwards;
}

.animate-slideUp {
  animation: slideUp 0.4s ease forwards;
}

/* Stagger delay for grid cards */
.gfc-card:nth-child(1) { animation-delay: 0ms; }
.gfc-card:nth-child(2) { animation-delay: 50ms; }
.gfc-card:nth-child(3) { animation-delay: 100ms; }
.gfc-card:nth-child(4) { animation-delay: 150ms; }
.gfc-card:nth-child(5) { animation-delay: 200ms; }
.gfc-card:nth-child(6) { animation-delay: 250ms; }
.gfc-card:nth-child(7) { animation-delay: 300ms; }
.gfc-card:nth-child(8) { animation-delay: 350ms; }


/* ==========================================================================
   17. Google Translate Override
   ========================================================================== */

/* Hide Google's top banner bar */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Translate box container in header */
.gfc-translate-box {
  max-width: 130px;
  font-size: 12px;
  overflow: hidden;
}

/* Hide Google branding text but keep combo visible */
.goog-te-gadget {
  font-size: 0 !important;
  color: transparent !important;
  margin: 0 !important;
}

/* Style the language dropdown */
.goog-te-gadget .goog-te-combo {
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 12px;
  font-family: var(--font-english);
  background: #FFFFFF;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: auto;
  max-width: 120px;
}

.goog-te-gadget .goog-te-combo:focus {
  border-color: var(--primary);
}

/* Hide Google logo inside gadget */
.goog-te-gadget img {
  display: none !important;
}

/* Hide "Powered by" text — target only direct span children */
.goog-te-gadget > span {
  display: none !important;
}

/* Fix Google Translate tooltip/popup */
.goog-tooltip {
  display: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

#goog-gt-tt {
  display: none !important;
}

.goog-te-balloon-frame {
  display: none !important;
}

/* Hide the iframe top bar Google adds */
body > .skiptranslate {
  display: none !important;
}


/* ==========================================================================
   18. Page Template (.gfc-page)
   ========================================================================== */

.gfc-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

.gfc-page-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.gfc-page-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-main);
}

.gfc-page-content p {
  margin-bottom: 16px;
}

.gfc-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.gfc-page-content h2 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.gfc-page-content h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.gfc-page-content ul,
.gfc-page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.gfc-page-content ul {
  list-style: disc;
}

.gfc-page-content ol {
  list-style: decimal;
}

.gfc-page-content li {
  margin-bottom: 6px;
}

.gfc-page-content a {
  color: var(--primary-hover);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .gfc-page-title {
    font-size: 28px;
  }
}


/* ==========================================================================
   19. WordPress Core Overrides
   ========================================================================== */

/* -- Block Editor Images -- */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.wp-block-image figcaption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* -- Alignment -- */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.alignleft {
  float: left;
  margin: 0 16px 12px 0;
}

.alignright {
  float: right;
  margin: 0 0 12px 16px;
}

.alignnone {
  margin: 16px 0;
}

.alignwide {
  max-width: 100%;
  width: 100%;
}

.alignfull {
  max-width: 100vw;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* -- Captions -- */
.wp-caption {
  max-width: 100%;
  margin-bottom: 16px;
}

.wp-caption img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.wp-caption-text {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 6px 0;
  line-height: 1.4;
}

/* -- Galleries -- */
.wp-block-gallery {
  display: grid;
  gap: 8px;
}

.wp-block-gallery .wp-block-image {
  margin: 0;
}

/* -- Embeds & Videos -- */
.wp-block-embed {
  margin: 16px 0;
}

.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed__wrapper iframe,
.wp-block-embed__wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -- Separator -- */
.wp-block-separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

/* -- Quotes -- */
.wp-block-quote {
  border-left: 4px solid var(--primary);
  padding: 12px 16px;
  margin: 16px 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.wp-block-quote p {
  font-style: italic;
}

.wp-block-quote cite {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: normal;
}

/* -- Tables -- */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
  border: 1px solid var(--border);
  padding: 8px 12px;
  font-size: 14px;
}

.wp-block-table th {
  background: var(--bg-main);
  font-weight: 600;
}

/* -- Buttons -- */
.wp-block-button__link {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease;
}

.wp-block-button__link:hover {
  background: var(--primary-hover);
  color: var(--dark);
}

/* -- Screen Reader Text (WordPress default) -- */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  display: block;
  top: 5px;
  left: 5px;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  clip: auto !important;
  color: #21759b;
  background-color: #f1f1f1;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  line-height: normal;
  z-index: 100000;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}

/* -- Comments (basic) -- */
.comment-list {
  list-style: none;
  padding: 0;
}

.comment-body {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.comment-author img {
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.comment-metadata {
  font-size: 12px;
  color: var(--text-muted);
}

.comment-content {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.comment-reply-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-hover);
}

/* -- Post Navigation -- */
.post-navigation {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  gap: 16px;
}

.post-navigation a {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-hover);
}

.post-navigation a:hover {
  text-decoration: underline;
}

/* -- Pagination -- */
.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: var(--font-english);
}

.page-numbers:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-hover);
}

.page-numbers.current {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

/* -- WordPress Admin Bar Fix -- */
@media screen and (max-width: 782px) {
  .admin-bar .gfc-header {
    top: 46px;
  }

  .admin-bar .gfc-mobile-menu {
    top: 46px;
    height: calc(100vh - 46px);
    height: calc(100dvh - 46px);
  }
}

@media screen and (min-width: 783px) {
  .admin-bar .gfc-header {
    top: 32px;
  }
}


/* ==========================================================================
   20. Print Styles
   ========================================================================== */

@media print {
  .gfc-topbar,
  .gfc-navbar,
  .gfc-hamburger,
  .gfc-search,
  .gfc-share-bar,
  .gfc-mobile-menu,
  .gfc-menu-overlay,
  .gfc-footer,
  .gfc-related,
  .gfc-load-more,
  .gfc-share-wa,
  .gfc-translate-box {
    display: none !important;
  }

  .gfc-header {
    position: static;
    border-bottom: 2px solid #000;
  }

  body {
    background: #FFFFFF;
    color: #000000;
    font-size: 12pt;
  }

  .gfc-article,
  .gfc-page {
    max-width: 100%;
    padding: 0;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }

  img {
    max-width: 100% !important;
  }
}


/* ==========================================================================
   21. Additional Missing Styles
   ========================================================================== */

/* -- Header Content Layout -- */
.gfc-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

@media (min-width: 768px) {
  .gfc-header-content {
    height: 70px;
  }
}

/* -- Logo Icon Fallback (when no custom logo) -- */
.gfc-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--dark);
  font-weight: 800;
  font-size: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* -- Footer Logo Icon -- */
.gfc-footer-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--dark);
  font-weight: 800;
  font-size: 13px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* -- Expandable Search Bar (full-width below header) -- */
.gfc-search-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.gfc-search-form-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gfc-search-form-inline input[type="search"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 14px;
  outline: none;
  background: var(--bg-main);
}

.gfc-search-form-inline input[type="search"]:focus {
  border-color: var(--primary);
  background: #FFFFFF;
}

.gfc-search-form-inline button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--dark);
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.gfc-search-form-inline button[type="submit"]:hover {
  background: var(--primary-hover);
}

/* -- Mobile Menu Brand Text -- */
.gfc-mobile-menu-brand {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}


/* ==========================================================================
   22. News Feed — Divya Bhaskar Style List Layout
   ========================================================================== */

.gfc-feed-section {
  background: #FFFFFF;
  padding: 0;
}

.gfc-feed {
  display: flex;
  flex-direction: column;
}

/* -- Feed Item (Horizontal Card) -- */
.gfc-feed-item {
  border-bottom: 1px solid #E5E7EB;
}

.gfc-feed-item:last-child {
  border-bottom: none;
}

.gfc-feed-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}

.gfc-feed-link:hover {
  background-color: #FAFAFA;
}

/* -- Text Side -- */
.gfc-feed-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* -- Category Badge -- */
.gfc-feed-category {
  display: inline-block;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  background: var(--primary);
  letter-spacing: 0.3px;
}

/* Category color variations */
.gfc-feed-category[data-cat="entertainment"],
.gfc-feed-category[data-cat="manoranjan"] {
  background: #E91E63;
}
.gfc-feed-category[data-cat="sports"],
.gfc-feed-category[data-cat="khel"] {
  background: #4CAF50;
}
.gfc-feed-category[data-cat="business"],
.gfc-feed-category[data-cat="vyapar"] {
  background: #2196F3;
}
.gfc-feed-category[data-cat="technology"],
.gfc-feed-category[data-cat="tech"] {
  background: #9C27B0;
}
.gfc-feed-category[data-cat="health"],
.gfc-feed-category[data-cat="arogya"] {
  background: #00BCD4;
}
.gfc-feed-category[data-cat="education"],
.gfc-feed-category[data-cat="shikshan"] {
  background: #FF9800;
}
.gfc-feed-category[data-cat="national"],
.gfc-feed-category[data-cat="rashtriya"] {
  background: #F44336;
}
.gfc-feed-category[data-cat="international"],
.gfc-feed-category[data-cat="antarrashtriya"] {
  background: #607D8B;
}
.gfc-feed-category[data-cat="gujarat"] {
  background: #FF5722;
}
.gfc-feed-category[data-cat="crime"],
.gfc-feed-category[data-cat="gunhakhori"] {
  background: #795548;
}

/* -- Feed Title -- */
.gfc-feed-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.gfc-feed-link:hover .gfc-feed-title {
  color: var(--primary-hover);
}

/* -- Feed Meta (source + time) -- */
.gfc-feed-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 2px;
}

.gfc-feed-source {
  color: #6B7280;
  font-weight: 500;
}

.gfc-feed-dot {
  color: #D1D5DB;
}

.gfc-feed-time {
  color: #9CA3AF;
}

/* -- Thumbnail Side -- */
.gfc-feed-thumb {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #F3F4F6;
}

.gfc-feed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -- No Posts Message -- */
.gfc-no-posts {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 16px;
}

/* -- Pagination -- */
.gfc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.gfc-pagination a,
.gfc-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gfc-pagination a {
  background: var(--bg-main);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.gfc-pagination a:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-hover);
}

.gfc-pagination span.current {
  background: var(--primary);
  color: var(--dark);
  border: 1px solid var(--primary);
  font-weight: 700;
}

.gfc-pagination .dots {
  background: transparent;
  border: none;
  color: var(--text-muted);
}

.gfc-pagination .prev,
.gfc-pagination .next {
  gap: 4px;
  font-weight: 600;
}

/* -- Desktop: 2-column feed -- */
@media (min-width: 1024px) {
  .gfc-feed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }

  .gfc-feed-item {
    padding: 0 4px;
  }

  .gfc-feed-thumb {
    width: 140px;
    height: 95px;
  }

  .gfc-feed-title {
    font-size: 16px;
  }
}
