/*
  [Custom Stylesheet]
  2026 Modern Layer — Consolidated from inline styles + original custom.css
  Sections: Variables → Base → Header → Navbar → Content → Sidebar → Footer → Responsive
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --fx-bg: #f3f5f7;
  --fx-surface: #ffffff;
  --fx-surface-alt: #f8fafc;
  --fx-primary: #0ea5e9;
  --fx-accent: #e11d48;
  --fx-border: #e2e8f0;
  --fx-text: #0f172a;
  --fx-muted: #64748b;
  --fx-radius-xl: 22px;
  --fx-radius-lg: 16px;
  --fx-radius-md: 12px;
  --fx-radius-sm: 8px;
  --fx-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --fx-shadow-md: 0 12px 30px rgba(15, 23, 42, 0.12);
  --fx-shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.18);
  --fx-gradient: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(225, 29, 72, 0.12));
}

/* ============================================================
   BASE / GLOBAL
   ============================================================ */
html, body {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  font-family: 'Manrope', 'PT Sans', sans-serif;
  color: var(--fx-text);
  background: var(--fx-bg);
  background-image: radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.08), transparent 40%),
                    radial-gradient(circle at 90% 0%, rgba(225, 29, 72, 0.08), transparent 35%);
  background-attachment: fixed;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  font-family: 'Space Grotesk', 'PT Sans', sans-serif;
  letter-spacing: -0.02em;
  color: var(--fx-text);
}

a {
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover, a:focus {
  color: var(--fx-primary);
  text-decoration: none;
}

img { max-width: 100%; height: auto; }

.wrapper { margin: 0 !important; padding: 0 !important; min-height: 100vh; }

/* Clearfix utility */
.fx-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ============================================================
   BORDER COLOR OVERRIDES
   ============================================================ */
.bd--color-1,
.btn-default.active, .btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover,
.btn-default.focus, .btn-default:active, .btn-default:active.focus, .btn-default:active:focus,
.btn-default:active:hover, .btn-default:focus, .btn-default:hover,
.btn-primary, .btn-primary.disabled.focus, .btn-primary.disabled:focus, .btn-primary.disabled:hover,
.btn-primary[disabled].focus, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover,
.checkout--billing-info .form-control:focus, .checkout--info-form .form-control:focus,
.coming-soon--content .subscribe--widget input:focus+.input-group-btn:before,
.comment-respond .form-control:focus, .dropdown-menu, .form-control:focus,
.list--widget-nav>.nav>li.active, .login--form .form-control:focus,
.open>.dropdown-toggle.btn-default, .open>.dropdown-toggle.btn-default.focus,
.open>.dropdown-toggle.btn-default:focus, .open>.dropdown-toggle.btn-default:hover,
.pagination>li.active>span, .pagination>li.active>span:hover,
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:hover,
.post--cats .nav li a:hover, .post--tags .nav li a:hover,
.posts--filter-bar.style--4 .nav>li>a:hover>i,
.product--single .tab-nav>li>a,
.search--widget input:focus+.input-group-btn:before,
.tags--widget .nav>li>a:hover, .widget--title {
  border-color: var(--fx-border);
}

/* ============================================================
   HEADER - TOPBAR
   ============================================================ */
.top {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--fx-primary) !important;
  box-shadow: 0 -15px 0 15px var(--fx-primary), inset 0 -1px 0 var(--fx-border) !important;
}

#ust_header {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap;
  width: 100%;
}
#ust_header > div {
  display: flex;
  align-items: center;
}
#ust_header .title {
  position: static !important;
  margin: 0 10px 0 0 !important;
  padding: 0 !important;
}
#ust_header .sondakika {
  position: static !important;
  left: auto !important;
  width: auto !important;
  flex: 1;
}
.header--topbar {
  padding: 0 !important;
  font-size: 13px;
  background: transparent;
  margin-bottom: 0;
  width: 100%;
}
.header--topbar > div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.header--topbar .nav {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.header--topbar .nav li {
  display: flex;
  align-items: center;
  float: none;
}
.header--topbar .nav li a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
}
.header--topbar .nav li a i {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.header--topbar-social.nav { gap: 6px; }
.header--topbar-social.nav li a i { font-size: 15px; }

.header--topbar-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.header--topbar-action.nav,
.header--topbar-lang.nav,
.header--topbar-social.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ============================================================
   HEADER - MAINBAR (logo + ad)
   ============================================================ */
.header--section { background: transparent; }

.header--mainbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.header--mainbar.beyazarkaplan {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}
.header--logo { flex: 0 0 auto; }
.header--logo img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}
.header--ad {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header--ad img, .header--ad iframe {
  border-radius: var(--fx-radius-sm);
}

/* ============================================================
   HEADER - NAVBAR (menu bar)
   ============================================================ */
.header--navbar {
  position: relative !important;
  z-index: 999 !important;
  min-height: 50px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fx-border);
  box-shadow: var(--fx-shadow-sm);
}
.navbar-collapse { border: none !important; box-shadow: none !important; }

.header--navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.header--navbar .navbar-header {
  float: none;
  display: none;
  align-items: center;
}

.header--navbar #headerNav {
  float: none !important;
  flex: 1 1 auto;
  overflow: visible;
}

.header--menu-links.navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  float: none !important;
  overflow: visible;
}
.header--menu-links > li {
  float: none !important;
  position: relative;
}
.header--menu-links > li > a {
  padding: 14px 10px;
  display: block;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.header--menu-links > li > a:hover {
  color: var(--fx-primary);
}

/* Search Form Global Resets (Overrides style.css legacy absolute positioning) */
.header--search-form {
  position: relative !important;
  display: flex !important;
  align-items: center;
  gap: 0;
  margin: 0 !important;
}
.header--search-form.hidden-xs {
  margin-left: auto !important;
  float: none !important;
  flex-shrink: 0;
  order: 2;
}
.header--search-form.hidden-md.hidden-lg {
  display: none !important;
}
.header--search-control {
  position: static !important;
  margin: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  border-radius: var(--fx-radius-xl) 0 0 var(--fx-radius-xl) !important;
  border: 1px solid #cbd5e1 !important;
  border-right: none !important;
  background-color: #f1f5f9 !important;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.03) !important;
  height: 42px !important;
  width: 240px !important;
  min-width: 240px !important;
  max-width: 240px !important;
  flex: 0 0 240px !important;
  display: block !important;
  padding: 8px 18px !important;
  font-size: 14px !important;
  color: #0f172a !important;
  line-height: normal !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.header--search-control::placeholder {
  color: #64748b !important;
  opacity: 1 !important;
}
.header--search-control:focus {
  border-color: var(--fx-primary) !important;
  background-color: #ffffff !important;
  outline: none !important;
}
.header--search-btn {
  position: static !important;
  margin: 0 !important;
  border-radius: 0 var(--fx-radius-xl) var(--fx-radius-xl) 0 !important;
  background: var(--fx-primary) !important;
  color: #fff !important;
  height: 42px !important;
  width: 48px !important;
  min-width: 48px !important;
  flex: 0 0 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  padding: 0 !important;
}
.header--search-icon {
  font-size: 16px;
  margin: 0 !important;
}

/* ============================================================
   DROPDOWN MENUS
   ============================================================ */
@keyframes dropDownAnim {
  0% { opacity: 0; transform: translateY(10px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.dropdown-menu {
  border: none !important;
  border-radius: var(--fx-radius-md) !important;
  box-shadow: var(--fx-shadow-md) !important;
  padding: 8px 0 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(14px) !important;
  transform-origin: top;
  animation: dropDownAnim 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-color: var(--fx-border);
}

.header--menu-links > li .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 9999 !important;
  min-width: 200px;
  background: #fff !important;
  border-radius: var(--fx-radius-md) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
  border: 1px solid var(--fx-border) !important;
  animation: dropDownAnim 0.2s ease;
}

.header--menu-links > li.megamenu {
  position: static !important;
}
.header--menu-links > li.megamenu > .dropdown-menu {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.header--menu-links > li.open .dropdown-menu,
.header--menu-links > li:hover .dropdown-menu {
  display: block !important;
}

.dropdown-menu > li > a {
  padding: 9px 18px !important;
  font-weight: 500 !important;
  color: var(--fx-text) !important;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  display: block;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover {
  background: var(--fx-surface-alt) !important;
  color: var(--fx-primary) !important;
  padding-left: 24px !important;
}

/* Hamburger button */
.navbar-toggle {
  border: none !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 12px;
  padding: 0;
  width: 44px;
  height: 44px;
  margin: 10px 15px;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  position: relative;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.navbar-toggle:hover, .navbar-toggle:focus {
  background: var(--fx-primary) !important;
  box-shadow: 0 8px 16px rgba(14, 165, 233, 0.25) !important;
  transform: translateY(-1px);
  outline: none !important;
}
.navbar-toggle .icon-bar {
  position: absolute;
  left: 11px; /* (44 - 22) / 2 = 11 */
  background: var(--fx-text) !important;
  height: 2px;
  width: 22px;
  display: block;
  margin: 0 !important;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.navbar-toggle:hover .icon-bar, .navbar-toggle:focus .icon-bar {
  background: #ffffff !important;
}

/* Position the 3 bars perfectly centered */
.navbar-toggle .icon-bar:nth-child(2) { top: 14px; }
.navbar-toggle .icon-bar:nth-child(3) { top: 21px; }
.navbar-toggle .icon-bar:nth-child(4) { top: 28px; }

/* Expanded state (X) */
.navbar-toggle[aria-expanded="true"] {
  background: var(--fx-accent) !important;
  box-shadow: 0 8px 16px rgba(225, 29, 72, 0.25) !important;
}
.navbar-toggle[aria-expanded="true"] .icon-bar {
  background: #ffffff !important;
}
.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
  top: 21px;
  transform: rotate(45deg);
}
.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(3) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(4) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Dropdown caret animation */
.header--menu-links > li > a .fa-angle-down {
  transition: transform 0.25s;
}
.header--menu-links > li.open > a .fa-angle-down {
  transform: rotate(180deg);
  color: var(--fx-primary);
}

/* ============================================================
   SECTION CONTAINERS & CARDS
   ============================================================ */
.beyaz {
  background: var(--fx-surface);
  padding: 20px;
  border-radius: var(--fx-radius-lg);
  box-shadow: var(--fx-shadow-sm);
  border: 1px solid var(--fx-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.beyaz:hover {
  box-shadow: var(--fx-shadow-md);
}

.beyazarkaplan {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fx-border);
  box-shadow: var(--fx-shadow-sm);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-lg);
}

.amazingslider-title-1 {
  background-color: var(--fx-primary) !important;
  border-radius: var(--fx-radius-sm);
}

/* ============================================================
   CONTENT - POST ITEMS & TITLES
   ============================================================ */
.main-content--section {
  padding-top: 20px;
}
.main--content, .main--sidebar {
  gap: 24px;
}

.post--items-title {
  border-top: 0;
  padding: 0 0 12px 0;
  border-bottom: 1px solid var(--fx-border);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.post--items-title .h4 {
  border-left: 0 !important;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  height: auto;
  width: auto;
  border-bottom: 0;
  margin: 0;
}
.post--items-title .h4:before {
  content: "";
  width: 10px;
  height: 26px;
  border-radius: 6px;
  background: var(--fx-accent);
  display: inline-block;
  flex-shrink: 0;
}
.post--items-title b {
  color: var(--fx-text);
  font-weight: 700;
}
.post--items-title .icon, .post--items-title .nav {
  position: static;
  margin: 0;
  font-size: 16px;
  line-height: 1;
}
.post--items-title .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fx-surface-alt);
  border: 1px solid var(--fx-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fx-muted);
}
.post--items-title .rss {
  margin-left: auto;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post--items-title .rss a {
  color: var(--fx-primary);
  font-weight: 600;
}

/* Post card */
.post--item {
  border-radius: var(--fx-radius-md);
  overflow: hidden;
  background: var(--fx-surface);
  box-shadow: var(--fx-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post--item:hover {
  transform: translateY(-4px);
  box-shadow: var(--fx-shadow-md);
}

.post--img {
  position: relative;
  overflow: hidden;
}
.post--img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.post--img .thumb img {
  transition: transform 0.5s ease;
}
.post--item:hover .thumb img {
  transform: scale(1.03);
}
.post--info {
  padding: 14px 16px;
}
.post--info .title .h4 {
  font-size: 18px;
  line-height: 1.35;
}
.post--img .cat {
  background: var(--fx-primary);
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}

/* Content image height utility (replaces inline styles) */
.fx-img-sm { height: 160px; object-fit: cover; width: 100%; }
.fx-img-md { height: 220px; object-fit: cover; width: 100%; }
.fx-img-auto { height: auto; object-fit: cover; width: 100%; }

hr.divider {
  border-top: 1px dashed var(--fx-border);
  margin: 16px 0;
}

/* ============================================================
   CONTENT - FILTER BAR (Döviz / Hava Durumu)
   ============================================================ */
.posts--filter-bar .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.posts--filter-bar .nav > li {
  float: none !important;
  display: inline-flex;
  align-items: center;
  height: auto !important;
  margin-right: 8px;
  margin-bottom: 8px;
}
.posts--filter-bar .nav > li > a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 15px !important;
  width: 100%;
  border-bottom: none !important;
  border-radius: var(--fx-radius-md);
  background: var(--fx-surface);
  border: 1px solid var(--fx-border);
  border-radius: 999px;
  box-shadow: var(--fx-shadow-sm);
  transition: background 0.2s ease;
}
.posts--filter-bar .nav > li > a:hover {
  background: rgba(0,0,0,0.02);
}
.posts--filter-bar .nav > li > a > i.fa {
  margin: 0 !important;
  font-size: 24px;
}

/* ============================================================
   CONTENT - SLIDER & CAROUSEL
   ============================================================ */
.amazingslider-wrapper,
.amazingcarousel-list-container {
  border-radius: var(--fx-radius-lg);
  overflow: hidden;
  box-shadow: var(--fx-shadow-md);
}
.amazingslider-wrapper {
  padding-bottom: 100px !important;
  margin-bottom: 24px !important;
}
.amazingslider-text-wrapper-2 {
  height: 100% !important;
}
.amazingslider-bottom-shadow {
  display: none !important;
}

.fx-hero {
  margin-top: 24px !important;
}
.fx-spotlight .post--item {
  border-radius: var(--fx-radius-lg);
}
.fx-spotlight .post--item .icon {
  background: var(--fx-primary);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
}

/* ============================================================
   CONTENT - BREADCRUMB
   ============================================================ */
.main--breadcrumb {
  background: transparent;
  padding: 16px 0;
}
.breadcrumb {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--fx-border);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: var(--fx-shadow-sm);
}
.breadcrumb > li + li:before {
  color: var(--fx-muted);
}
.breadcrumb a { font-weight: 600; }
.breadcrumb .breadcrumb-active {
  color: var(--fx-text);
  font-weight: 700;
}

/* ============================================================
   SIDEBAR - WIDGETS
   ============================================================ */
.widget {
  border-radius: var(--fx-radius-lg);
  overflow: clip;
  background: var(--fx-surface);
  border: 1px solid var(--fx-border);
  box-shadow: var(--fx-shadow-sm);
  margin-bottom: 24px;
}
.widget--title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px !important;
  background: var(--fx-surface);
  border-bottom: 1px solid var(--fx-border);
}
.widget--title .h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fx-heading, var(--fx-text)) !important;
  border-left-color: var(--fx-heading, var(--fx-accent));
  height: auto !important;
  line-height: 1.3 !important;
  padding-top: 0 !important;
  white-space: normal !important;
}
.widget--title .icon, .widget--title .nav {
  position: static;
  margin: 0;
}
.widget--title .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--fx-surface-alt);
  border: 1px solid var(--fx-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fx-muted);
}
.widget--title .nav a { color: var(--fx-muted); }

.ad--widget {
  background: var(--fx-surface-alt);
  border-radius: var(--fx-radius-md);
}
.list--widget .nav > li {
  border-bottom: 1px solid var(--fx-border);
}
.list--widget .nav > li:last-child { border-bottom: 0; }
.list--widget .post--item {
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}
.list--widget .post--info { padding: 8px 12px; }

/* Social widget */
.social--widget.style--1 .nav {
  background: transparent;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
/* Tek kalan son eleman ortala */
.social--widget.style--1 .nav > li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 6px);
  margin: 0 auto;
}
.social--widget.style--1 .nav > li { width: auto; }
.social--widget.style--1 .nav > li > a {
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-md);
  padding: 12px;
  box-shadow: var(--fx-shadow-sm);
  text-transform: none;
}
.social--widget.style--1 .nav > li > a:before { content: none; }
.social--widget.style--1 .nav > li > a > span.icon {
  border-color: var(--fx-border);
  background: var(--fx-surface-alt);
  color: var(--fx-primary);
}
.social--widget.style--1 ul.nav > li > a:hover > span.icon {
  background: var(--fx-primary);
  color: #fff;
}

/* ============================================================
   SOSYAL MEDYA WİDGET İYİLEŞTİRMELERİ - MASAÜSTÜ
   ============================================================ */
@media (min-width: 768px) {
  /* Sosyal medya widget container */
  .widget.beyaz .social--widget.style--1,
  .social--widget.style--1 {
    padding: 0 !important;
    overflow: visible !important;
  }
  
  /* Nav listesini grid yap */
  .social--widget.style--1 .nav {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    list-style: none !important;
    overflow: visible !important;
  }
  
  /* Float'ları kaldır ve grid item yap */
  .social--widget.style--1 .nav > li {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: block !important;
  }
  
  /* Tek kalan son eleman ortala */
  .social--widget.style--1 .nav > li:last-child:nth-child(odd) {
    grid-column: 1 / -1 !important;
    max-width: calc(50% - 5px) !important;
    margin: 0 auto !important;
  }
  
  /* Kart tasarımı */
  .social--widget.style--1 .nav > li > a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 10px !important;
    border: 2px solid #e9ecef !important;
    border-top: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    min-height: 120px !important;
    position: relative !important;
    z-index: 1 !important;
    text-transform: none !important;
  }
  
  /* Tüm pseudo elementleri kaldır */
  .social--widget.style--1 .nav > li > a:before,
  .social--widget.style--1 .nav > li > a:after {
    display: none !important;
    content: none !important;
    border: none !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(1) > a:before,
  .social--widget.style--1 .nav > li:nth-child(2) > a:before,
  .social--widget.style--1 .nav > li:nth-child(3) > a:before,
  .social--widget.style--1 .nav > li:nth-child(3n) > a:before {
    display: none !important;
    content: none !important;
    border: none !important;
  }
  
  /* Hover efekti */
  .social--widget.style--1 .nav > li > a:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    border-color: currentColor !important;
  }
  
  /* İkon container */
  .social--widget.style--1 .nav > li > a > span.icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 10px 0 !important;
    border: none !important;
    font-size: 26px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    line-height: 60px !important;
  }
  
  .social--widget.style--1 .nav > li > a > span.icon:before,
  .social--widget.style--1 .nav > li > a > span.icon:after {
    display: none !important;
    content: none !important;
  }
  
  .social--widget.style--1 .nav > li > a > span.icon i {
    margin: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    line-height: 1 !important;
  }
  
  /* Sayı */
  .social--widget.style--1 .nav > li > a > span.count {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin: 0 0 4px 0 !important;
    color: #2c3e50 !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }
  
  /* Başlık */
  .social--widget.style--1 .nav > li > a > span.title {
    font-size: 13px !important;
    color: #7f8c8d !important;
    margin: 0 !important;
    text-transform: capitalize !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }
  
  /* Facebook - Mavi */
  .social--widget.style--1 .nav > li:nth-child(1) > a > span.icon {
    background: #1877f2 !important;
    color: #fff !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(1) > a:hover {
    border-color: #1877f2 !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(1) > a:hover > span.icon {
    background: #0d65d9 !important;
  }
  
  /* Twitter - Açık Mavi */
  .social--widget.style--1 .nav > li:nth-child(2) > a > span.icon {
    background: #1da1f2 !important;
    color: #fff !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(2) > a:hover {
    border-color: #1da1f2 !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(2) > a:hover > span.icon {
    background: #0c8bd9 !important;
  }
  
  /* Instagram - Gradient */
  .social--widget.style--1 .nav > li:nth-child(3) > a > span.icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #fff !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(3) > a:hover {
    border-color: #e6683c !important;
  }
  
  /* LinkedIn - Mavi */
  .social--widget.style--1 .nav > li:nth-child(4) > a > span.icon {
    background: #0077b5 !important;
    color: #fff !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(4) > a:hover {
    border-color: #0077b5 !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(4) > a:hover > span.icon {
    background: #005885 !important;
  }
  
  /* YouTube - Kırmızı */
  .social--widget.style--1 .nav > li:nth-child(5) > a > span.icon {
    background: #ff0000 !important;
    color: #fff !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(5) > a:hover {
    border-color: #ff0000 !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(5) > a:hover > span.icon {
    background: #cc0000 !important;
  }
  
  /* Telegram - Mavi */
  .social--widget.style--1 .nav > li:nth-child(6) > a > span.icon {
    background: #0088cc !important;
    color: #fff !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(6) > a:hover {
    border-color: #0088cc !important;
  }
  
  .social--widget.style--1 .nav > li:nth-child(6) > a:hover > span.icon {
    background: #006699 !important;
  }
  
  /* Clearfix kaldır */
  .social--widget.style--1 .nav:after,
  .social--widget.style--1 .nav:before {
    display: none !important;
    content: none !important;
  }
}

/* Tablet ve küçük ekranlar için */
@media (max-width: 767px) {
  .social--widget.style--1 .nav {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  
  .social--widget.style--1 .nav > li > a {
    min-height: 100px !important;
    padding: 12px 8px !important;
  }
  
  .social--widget.style--1 .nav > li > a > span.icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 22px !important;
  }
  
  .social--widget.style--1 .nav > li > a > span.count {
    font-size: 18px !important;
  }
  
  .social--widget.style--1 .nav > li > a > span.title {
    font-size: 12px !important;
  }
}

/* reCAPTCHA & subscribe widget overflow fix */
.widget .subscribe--widget {
  overflow: hidden;
}
.widget .subscribe--widget .input-group {
  width: 100%;
  max-width: 100%;
}
.widget .subscribe--widget .form-control {
  min-width: 0;
  flex: 1 1 auto;
}
/* reCAPTCHA 304px sabit genişlikte gelir, scale ile sığdır */
.widget .g-recaptcha {
  transform: scale(0.88);
  transform-origin: left top;
  margin-bottom: -14px;
}
@media (max-width: 991px) {
  .widget .g-recaptcha {
    transform: scale(0.80);
    margin-bottom: -22px;
  }
}
@media (max-width: 767px) {
  .widget .g-recaptcha {
    transform: scale(0.90);
    margin-bottom: -10px;
  }
}

/* News ticker */
.news--ticker {
  border-radius: var(--fx-radius-md);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================================
   CONTENT - SINGLE POST / ARTICLE
   ============================================================ */
.post--single {
  background: var(--fx-surface);
  border-radius: var(--fx-radius-lg);
  box-shadow: var(--fx-shadow-sm);
}
.post--single .post--info { padding: 18px 20px 6px; }
.post--single .post--content {
  padding: 16px 20px 24px;
  color: var(--fx-text);
  line-height: 1.8;
  font-size: 17px;
}
.post--single .post--content img, .post--content img {
  border-radius: var(--fx-radius-md);
  box-shadow: var(--fx-shadow-sm);
  margin: 12px 0;
}
.post--content blockquote {
  border-left: 4px solid var(--fx-primary);
  background: var(--fx-surface-alt);
  padding: 16px 18px;
  border-radius: var(--fx-radius-md);
  color: var(--fx-text);
}

/* Tags */
.post--tags .nav > li > a, .tags--widget .nav > li > a {
  background: var(--fx-surface-alt);
  border: 1px solid var(--fx-border);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}
.post--tags .nav > li > span { color: var(--fx-muted); }

/* Comments */
.comment--item {
  background: var(--fx-surface-alt);
  border-radius: var(--fx-radius-md);
  padding: 16px;
  border: 1px solid var(--fx-border);
}
.comment--img img { border-radius: 50%; }
.comment--header .name { font-weight: 700; }
.comment--header .date { color: var(--fx-muted); }
.comment-reply-link { color: var(--fx-primary); font-weight: 600; }
.comment--form textarea.form-control { min-height: 140px; }

/* Article pages */
.fx-article {
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-lg);
  overflow: hidden;
  background: var(--fx-surface);
}
.fx-article-info { padding: 24px 24px 10px; }
.fx-article-info .title .h4 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.2;
}
.fx-article-lead {
  color: var(--fx-muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.fx-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--fx-muted);
  font-size: 14px;
}
.fx-article-meta li { margin: 0 !important; }
.fx-article-meta i { color: var(--fx-primary); margin-right: 6px; }
.fx-article .fx-article-media {
  margin: 0 24px;
  border-radius: var(--fx-radius-md);
  overflow: hidden;
  box-shadow: var(--fx-shadow-sm);
}
.fx-article .fx-article-media .thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.fx-media-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.fx-media-icon--secondary { right: 64px; }
.fx-article-body {
  padding: 18px 24px 28px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--fx-text);
}
.fx-article-body p { margin-bottom: 16px; }
.fx-article-body img[style*="float"],
.fx-article-body img[style*="FLOAT"] {
  float: none !important;
  display: block;
  margin: 12px auto;
}
.fx-article-tags .nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fx-article-tags .nav > li { margin: 0; }
.fx-comments { margin-top: 20px; }
.fx-comment-block .comment-respond {
  background: var(--fx-surface-alt);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-md);
  padding: 16px;
}
.fx-author-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--fx-surface-alt);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-md);
  padding: 16px;
}
.fx-author-card .img {
  position: static !important;
  width: 110px;
  margin: 0 !important;
}
.fx-author-card .img img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
}
.fx-author-card .info { padding: 0 !important; margin: 0 !important; }
.fx-author-card .social li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fx-surface);
  border: 1px solid var(--fx-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   BUTTONS & FORMS
   ============================================================ */
.btn, .btn-default, .btn-primary {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--fx-primary); border-color: var(--fx-primary); }
.btn-primary:hover { background: #0284c7; border-color: #0284c7; }
.form-control {
  border-radius: var(--fx-radius-sm);
  border-color: var(--fx-border);
  box-shadow: none;
}
.form-control:focus {
  border-color: var(--fx-primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

/* Pagination */
.pagination > li > a, .pagination > li > span {
  border-radius: 999px !important;
  border-color: var(--fx-border);
}
.pagination > li.active > span {
  background: var(--fx-primary);
  border-color: var(--fx-primary);
}

/* Tables */
.table, .table > thead > tr > th, .table > tbody > tr > td {
  border-color: var(--fx-border);
}
.table thead, .table thead.thead-dark {
  background: var(--fx-surface-alt) !important;
}
.table thead th { color: var(--fx-text) !important; font-weight: 700; }
.tabbeyaz { color: var(--fx-text) !important; font-weight: 700; }

/* Alerts/Modals */
.alert, .panel, .modal-content {
  border-radius: var(--fx-radius-md);
  border-color: var(--fx-border);
}
.modal-header, .modal-footer { border-color: var(--fx-border); }

/* Login */
.login--section {
  background: var(--fx-gradient);
  padding: 80px 0;
}
.login--form {
  background: var(--fx-surface);
  border-radius: var(--fx-radius-lg);
  padding: 32px;
  box-shadow: var(--fx-shadow-lg);
  max-width: 520px;
  margin: 0 auto;
}
.login--form .title p { color: var(--fx-muted); }
.login--form .form-group label span { font-weight: 600; color: var(--fx-muted); }
.login--form .help-block a { font-weight: 600; }
.login--form .form-control {
  color: var(--fx-text);
  caret-color: var(--fx-text);
}
.login--form .form-control::placeholder {
  color: var(--fx-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer--section {
  background: var(--fx-surface);
  border-top: 1px solid var(--fx-border);
  margin-top: 40px;
}
.footer--widgets {
  background: var(--fx-surface);
  border-top: 1px solid var(--fx-border);
}
.footer--widgets.footerarkaplanbeyaz {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 60px 0 40px;
}

/* Footer menu icons — flexbox instead of float */
.fomen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}
.fomen i {
  font-size: 28px;
  color: var(--fx-primary);
  margin-bottom: 10px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fomen:hover i {
  transform: translateY(-5px) scale(1.1);
}
.foalt {
  font-weight: 600;
  font-size: 12px;
  color: var(--fx-text);
  text-align: center;
}

/* Footer nav — flexbox layout */
.footer--widgets .nav.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer--widgets .nav.social li {
  float: none;
  margin: 0;
}
.footer--widgets .nav.social li a {
  background: var(--fx-surface-alt);
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-sm);
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Footer copyright */
.footer--copyright.footerarkaplanacikgri {
  background: #1e293b !important;
  color: rgba(255, 255, 255, 0.7);
  padding: 24px 0;
  border: none;
}
.footer--copyright .text,
.footer--copyright .nav.links li a,
.footer--copyright .nav.social li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
.footer--copyright .nav.links li a:hover,
.footer--copyright .nav.social li a:hover {
  color: #ffffff;
}
.footer--copyright a { color: #e2e8f0; }
.footer--copyright .links li a { color: #cbd5f5; }
.footer--copyright .links { margin-top: 6px; }

.footerarkaplanbeyaz { background-color: #ffffff; }
.footerarkaplangri { background-color: #1e293b !important; }
.footerarkaplanacikgri { background-color: #1e293b !important; }
.social--bg.footerarkaplangri { background-color: #1e293b !important; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop { right: 20px; bottom: 20px; }
#backToTop a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fx-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--fx-shadow-md);
}

/* ============================================================
   ICON STABILITY
   ============================================================ */
.fa, .fas, .far, .fab, .flag-icon,
.widget--title .icon,
.header--topbar-social i,
.footer--section i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
  transform: none !important;
}
.header--menu-links i,
.breadcrumb i,
.header--topbar-action i {
  line-height: 1;
  vertical-align: middle;
  margin-right: 6px;
}

/* Floating WhatsApp / Phone fix */
a[href*="whatsapp"], a[href*="tel"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
a[href*="whatsapp"] i, a[href*="tel"] i,
a[href*="whatsapp"] span, a[href*="tel"] span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.whatsapp, .telefon { left: 12px; }
.whatsapp a, .telefon a {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 22px;
}
.whatsapp:hover a, .telefon:hover a {
  transform: none !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js-marquee, .js-marquee-wrapper {
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (≤991px)
   ============================================================ */
@media (max-width: 991px) {
  .beyaz { padding: 14px; }

  .header--topbar > div {
    justify-content: center;
    flex-direction: row;
    gap: 8px;
  }
  .header--mainbar {
    flex-direction: column;
    text-align: center;
    padding: 8px 0;
  }
  .header--mainbar.beyazarkaplan {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .header--logo img {
    height: auto !important;
    max-width: 200px !important;
  }
  .header--ad { justify-content: center; margin-top: 10px; }
  .megamenu--filter, .megamenu--posts { display: none !important; }

  .header--menu-links > li > a { padding: 12px 10px; }
  .post--info .title .h4 { font-size: 16px; }

  /* Content grids */
  .col-md-3.fx-spotlight-card,
  .fx-spotlight .col-md-3 { width: 50%; }

  /* Footer */
  .footer--widgets .nav.social {
    justify-content: center;
  }
  .footer--copyright .container {
    text-align: center;
  }
  .footer--copyright .float--left,
  .footer--copyright .float--right {
    float: none !important;
    display: block;
    text-align: center;
    margin-bottom: 8px;
  }
  .footer--copyright .nav.links,
  .footer--copyright .nav.social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    float: none !important;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================================ */
@media (max-width: 767px) {
  .beyaz { padding: 12px; }

  /* Hamburger & mobile navbar */
  .navbar-toggle {
    display: block !important;
    margin: 6px 0 !important;
  }
  .header--navbar .navbar-header {
    display: flex !important;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
  }
  .header--search-form.hidden-xs { display: none !important; }
  .header--navbar .container {
    flex-wrap: wrap;
    padding: 4px 12px;
    position: relative;
  }

  /* Ensure the navbar is above everything */
  .header--navbar {
    position: relative !important;
    z-index: 9999 !important;
    min-height: 44px;
  }

  .navbar-collapse.collapse { display: none !important; }
  .navbar-collapse.collapse.in,
  .navbar-collapse.collapsing { display: block !important; }

  #headerNav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #ffffff !important;
    border-top: 3px solid var(--fx-primary);
    border-radius: 0 0 var(--fx-radius-lg) var(--fx-radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18) !important;
    padding: 6px 0 10px;
    max-height: 80vh;
    bottom: auto !important;
    height: auto !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .header--menu-links.navbar-nav {
    flex-direction: column !important;
    width: 100% !important;
    padding: 4px 0;
    margin: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }
  .header--menu-links > li {
    width: 100%;
    border-bottom: 1px solid var(--fx-border);
  }
  .header--menu-links > li:last-child { border-bottom: none; }
  .header--menu-links > li > a {
    padding: 14px 20px !important;
    font-weight: 600;
    font-size: 14px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    color: var(--fx-text) !important;
    background: #fff !important;
  }
  .header--menu-links > li > a:hover,
  .header--menu-links > li > a:focus {
    background: var(--fx-surface-alt) !important;
    color: var(--fx-primary) !important;
  }

  /* Mobile dropdown = stacked, no animation */
  .header--menu-links > li .dropdown-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    background: #f8f9fa !important;
    border-radius: 0 !important;
    padding: 4px 0 !important;
    animation: none !important;
    display: none;
    margin: 0 !important;
    float: none !important;
  }
  .header--menu-links > li.open .dropdown-menu { display: block !important; }
  .header--menu-links > li:hover .dropdown-menu { display: none; }
  .header--menu-links > li.open .dropdown-menu { display: block !important; }

  .dropdown-menu > li > a {
    padding: 12px 30px !important;
    font-size: 13px;
    color: var(--fx-muted) !important;
    border-bottom: 1px solid rgba(0,0,0,0.04) !important;
    display: block !important;
  }
  .dropdown-menu > li:last-child > a { border-bottom: none !important; }

  /* Mobile search */
  .header--search-form.hidden-md.hidden-lg {
    width: 100%;
    padding: 10px 15px 4px;
    margin-left: 0 !important;
  }
  .header--search-control {
    width: calc(100% - 48px) !important;
    flex: 1;
  }

  /* Topbar mobile */
  .header--topbar .float--right {
    float: none !important;
    width: 100%;
    text-align: center;
  }
  .header--topbar-action.nav,
  .header--topbar-lang.nav,
  .header--topbar-social.nav {
    justify-content: center;
  }

  /* Compact topbar + ticker on mobile */
  #ust_header { gap: 6px; }
  #ust_header > div { flex: 1 1 100%; }
  #ust_header .col-md-6,
  #ust_header .col-md-12 {
    padding-left: 8px;
    padding-right: 8px;
  }
  .news--ticker { margin-top: 6px !important; }
  .news--ticker .title {
    margin-top: 0 !important;
    padding: 6px 10px !important;
  }
  .news--ticker .title h2 {
    font-size: 12px;
    line-height: 18px;
  }
  .news-updates--list {
    max-height: 40px;
    padding: 0 8px;
  }
  .news-updates--list:before,
  .news-updates--list:after {
    width: 8px;
  }
  .news-updates--list .nav li .h3 a {
    padding: 10px 0;
    font-size: 12px;
  }
  .header--topbar { font-size: 12px; }
  .header--topbar .nav { gap: 6px; }
  .header--topbar .nav li a { font-size: 12px; }
  .header--topbar-social a {
    width: 26px;
    height: 26px;
  }
  .header--topbar-social.nav li a i { font-size: 13px; }

  /* Tighten header cards spacing */
  .header--navbar.beyazarkaplan,
  .header--mainbar.beyazarkaplan {
    border-radius: var(--fx-radius-md);
  }
  .header--navbar { margin-top: 6px; }
  .header--mainbar { margin-top: 6px; padding: 10px 0; }
  .logodiv {
    margin-top: 6px !important;
    padding: 4px 8px 8px !important;
  }
  .header--logo img {
    max-width: 180px !important;
    max-height: 60px;
  }

  /* Content — force full width on mobile */
  .main--content.col-md-8,
  .main--sidebar.col-md-4,
  .main--content.col-sm-7,
  .main--sidebar.col-sm-5 {
    width: 100% !important;
    float: none !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Spotlight cards — 2-col on mobile */
  .fx-spotlight .col-md-3,
  .post--items-2 .col-md-3 {
    width: 50% !important;
  }

  /* Haber grid col-xs-6 → full width on small phones */
  .post--items-2 .col-md-6 {
    width: 100%;
  }

  /* Filter bar — scroll or stack */
  .posts--filter-bar .nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .posts--filter-bar .nav > li {
    flex-shrink: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  /* Image heights — auto on mobile */
  .fx-img-sm, .fx-img-md {
    height: auto !important;
  }

  /* Footer */
  .footer--widgets .row {
    text-align: center;
  }
  .footer--widgets .col-md-3,
  .footer--widgets .col-md-9 {
    width: 100% !important;
    float: none;
  }
  .footer--widgets .nav.social {
    justify-content: center;
    float: none !important;
  }
  .fomen {
    padding: 0 10px;
  }
  .footer--copyright .container {
    text-align: center;
  }
  .footer--copyright .float--left,
  .footer--copyright .float--right {
    float: none !important;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
  .footer--copyright .nav.social,
  .footer--copyright .nav.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    float: none !important;
    margin-bottom: 8px;
  }

  /* WhatsApp / Phone floating */
  .whatsapp { bottom: 80px; left: 8px; }
  .telefon { bottom: 135px; left: 8px; }

  /* Carousel fixes */
  .amazingslider-wrapper {
    padding-bottom: 40px !important;
    margin-bottom: 16px !important;
  }

  /* Article page */
  .fx-article-info { padding: 16px 16px 8px; }
  .fx-article-body { padding: 14px 16px 20px; }
  .fx-article .fx-article-media { margin: 0 16px; }

  /* Login */
  .login--section { padding: 40px 0; }
  .login--form { padding: 20px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  /* Spotlight → single column */
  .fx-spotlight .col-md-3,
  .post--items-2 .col-md-3,
  .col-xs-6 {
    width: 100% !important;
  }

  /* Post title smaller */
  .post--info .title .h4 { font-size: 14px; }

  /* Filter bar smaller text */
  .posts--filter-bar .nav > li > a {
    padding: 8px 10px !important;
    font-size: 12px;
  }

  /* Footer menu icons compact */
  .fomen {
    padding: 0 6px;
  }
  .fomen i { font-size: 22px; }
  .foalt { font-size: 10px; }

  /* Extra compact header text */
  .header--topbar .nav li a { font-size: 11px; }
  .header--topbar-social a {
    width: 24px;
    height: 24px;
  }
  .news--ticker .title h2 { font-size: 11px; }
  .news-updates--list .nav li .h3 a { font-size: 11px; }
  .header--logo img { max-width: 160px !important; }

  /* Article */
  .fx-article-info .title .h4 { font-size: 22px; }
  .fx-article-body { font-size: 15px; padding: 12px 12px 16px; }
  .fx-article .fx-article-media { margin: 0 12px; }
}

/* ============================================================
   CARD EQUAL HEIGHT FIXES 
   ============================================================ */
.post--items > .row,
.post--items > ul.row,
.post--items > div.row {
  display: flex;
  flex-wrap: wrap;
}
.post--items > .row::before,
.post--items > .row::after {
  display: none !important;
}
.post--items .post--item {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.post--items .post--item .post--img,
.post--items .post--item .post--info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post--items .post--item .post--info .title {
  flex: 1;
}

/* Single post should grow with content (avoid equal-height forcing) */
.post--item.post--single {
  display: block !important;
  height: auto !important;
}

/* Uniform image heights inside cards */
.post--item .post--img .thumb img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
}
.post--item.post--layout-1 .post--img .thumb img {
  height: 350px !important;
}

/* Sidebar widget height fix - prevent stretching */
.main--sidebar .widget {
  height: auto !important;
}
.main--sidebar .post--item {
  height: auto !important;
}
.main--sidebar .list--widget .post--items .nav {
  display: block !important;
}
.main--sidebar .post--item .post--img .thumb img {
  height: auto !important;
  width: 70px !important;
  object-fit: cover !important;
}

/* Spotlight carousel */
.spotlight-carousel {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.spotlight-carousel .col-md-3,
.spotlight-carousel .col-xs-12 {
    width: 100% !important;
    float: none !important;
}

.spotlight-carousel .owl-item {
    padding: 0 7.5px;
}

.spotlight-carousel .post--item {
    margin-bottom: 0;
}
/* Spotlight cards compact height */
.spotlight-carousel .post--item,
.fx-spotlight .post--item {
  height: auto !important;
}

.spotlight-carousel .post--item .post--img,
.spotlight-carousel .post--item .post--info,
.fx-spotlight .post--item .post--img,
.fx-spotlight .post--item .post--info {
  flex: 0 0 auto !important;
}

.spotlight-carousel .post--item .post--info {
  padding: 12px 14px !important;
}

.spotlight-carousel .post--item .post--info .title .h4 {
  font-size: 16px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spotlight-carousel .post--item .post--img .thumb img {
  height: 140px !important;
}

.spotlight-carousel .post--item.post--layout-1 .post--img .thumb img {
  height: 160px !important;
}

/* Spotlight cards equal height */
.spotlight-carousel .post--item {
  display: flex !important;
  flex-direction: column !important;
  height: 260px !important;
}

.spotlight-carousel .post--item .post--img {
  flex: 0 0 auto !important;
}

.spotlight-carousel .post--item .post--info {
  flex: 1 1 auto !important;
  display: flex;
  flex-direction: column;
}

.spotlight-carousel .post--items .post--item .post--info .title {
  flex: 1 1 auto;
}






/* Membership UI */
.fx-action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 6px;
}
.fx-action-btn,
.fx-follow-btn {
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #333;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
}
.fx-action-btn.is-active,
.fx-follow-btn.is-following {
  background: var(--fx-primary);
  border-color: var(--fx-primary);
  color: #fff;
}
.fx-profile-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
}
.fx-profile-card .fx-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}
.fx-kv {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.fx-notify-badge {
  display: inline-block;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  background: #e21000;
  color: #fff;
  border-radius: 9px;
  font-size: 11px;
  text-align: center;
  margin-left: 6px;
  padding: 0 5px;
}
.fx-notifications {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.fx-notification-item {
  border: 1px solid #eee;
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 10px;
  background: #fff;
  cursor: pointer;
}
.fx-notification-item.is-read {
  opacity: 0.7;
}
.fx-comment-like {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
  font-size: 12px;
  color: #888;
}
.fx-comment-like.is-liked {
  color: var(--fx-accent);
}
.fx-comment-like i {
  font-size: 12px;
}
.fx-login-hint {
  padding: 12px 14px;
  background: #f8f8f8;
  border: 1px dashed #ddd;
  border-radius: 6px;
}
.fx-feed-badge {
  display: inline-block;
  padding: 2px 6px;
  font-size: 11px;
  border-radius: 10px;
  background: #f1f1f1;
  margin-right: 6px;
}
@media (max-width: 767px) {
  .fx-profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ============================================================
   AUTH PAGES (LOGIN / REGISTER)
   ============================================================ */
.fx-auth {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.fx-auth::before,
.fx-auth::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22), transparent 70%);
  z-index: 0;
}
.fx-auth::before {
  top: -120px;
  left: -120px;
}
.fx-auth::after {
  bottom: -140px;
  right: -140px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.18), transparent 70%);
}

.fx-auth .container {
  position: relative;
  z-index: 1;
}

.fx-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: stretch;
}

.fx-auth-panel {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(59, 130, 246, 0.9), rgba(248, 113, 113, 0.9));
  color: #fff;
  border-radius: var(--fx-radius-xl);
  padding: 36px;
  box-shadow: var(--fx-shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.fx-auth-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--fx-radius-xl) - 6px);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.fx-auth-panel-inner {
  position: relative;
  z-index: 1;
}
.fx-auth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 12px;
}
.fx-auth-title {
  color: #fff;
  margin: 0 0 10px 0;
  font-size: 36px;
}
.fx-auth-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 20px;
}
.fx-auth-points {
  display: grid;
  gap: 12px;
  margin: 0 0 20px 0;
}
.fx-auth-point {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--fx-radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  align-items: center;
}
.fx-auth-point i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.fx-auth-point strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.fx-auth-point span {
  font-size: 12px;
  opacity: 0.85;
}
.fx-auth-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fx-auth-badge {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 999px;
  font-weight: 600;
}

.fx-auth-card {
  background: var(--fx-surface);
  border-radius: var(--fx-radius-xl);
  border: 1px solid var(--fx-border);
  box-shadow: var(--fx-shadow-md);
  padding: 8px;
}
.fx-auth-card .login--form {
  margin: 0;
  max-width: none;
  box-shadow: none;
  padding: 26px 28px 30px;
}
.fx-auth-card .title h1 {
  font-size: 26px;
  margin-bottom: 6px;
}
.fx-auth-card .title p {
  margin-bottom: 18px;
}
.fx-auth-form .form-control {
  height: 46px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}
.fx-auth-form .form-control:focus {
  border-color: var(--fx-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
.fx-auth-form .checkbox {
  margin-top: 12px;
}
.fx-auth-form .btn-primary {
  height: 46px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.fx-auth-form .help-block {
  margin-top: 16px;
}
.fx-auth-form .help-block a {
  font-weight: 600;
}

@media (max-width: 991px) {
  .fx-auth {
    padding: 60px 0;
  }
  .fx-auth-grid {
    grid-template-columns: 1fr;
  }
  .fx-auth-panel {
    padding: 28px;
  }
  .fx-auth-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .fx-auth {
    padding: 50px 0;
  }
  .fx-auth-card .login--form {
    padding: 22px;
  }
}

/* ============================================================
   AUTH REFINEMENT
   ============================================================ */
.login--section.fx-auth {
  background: linear-gradient(120deg, #eef5ff 0%, #f7f9ff 45%, #fff1f4 100%);
}

.fx-auth-panel {
  background: linear-gradient(135deg, #2d9cff 0%, #5b6bff 45%, #ff7a7a 100%);
  box-shadow: 0 24px 60px rgba(30, 64, 175, 0.25);
}
.fx-auth-panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
  top: -80px;
  right: -60px;
  opacity: 0.6;
}

.fx-auth-point {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.fx-auth-point i {
  background: rgba(255, 255, 255, 0.28);
}

.fx-auth-card {
  position: relative;
  padding: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.fx-auth-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 16px;
  right: 16px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fx-primary), var(--fx-accent));
}
.fx-auth-card .login--form {
  padding-top: 34px;
}

.fx-auth-form .btn-primary {
  background: linear-gradient(90deg, #ef4444, #f97316);
  border: none;
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fx-auth-form .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(239, 68, 68, 0.3);
}
.fx-auth-form .btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.fx-auth-form .form-control {
  font-size: 14px;
}
.fx-auth-form .help-block {
  color: var(--fx-muted);
}

@media (max-width: 991px) {
  .fx-auth-card::before {
    left: 12px;
    right: 12px;
  }
}

/* ============================================================
   AUTH CHECKBOX FIX
   ============================================================ */
.login--form .checkbox label {
  position: relative;
}

.login--form .checkbox label span {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.login--form .checkbox span:before,
.login--form .checkbox span:after {
  left: 0;
}

/* ============================================================
   AUTH FORM TOP STRIP FIX
   ============================================================ */
.fx-auth-card .login--form::before,
.fx-auth-card .login--form::after {
  content: none;
  display: none;
}





/* ============================================================
   ARTICLE - SHARE BUTTONS
   ============================================================ */
.fx-share {
  margin: 18px 0 10px;
  padding: 12px 14px;
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-md);
  background: #ffffff;
}
.fx-share__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--fx-text);
  margin-bottom: 10px;
}
.fx-share__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fx-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--fx-border);
  background: #f8fafc;
  color: var(--fx-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}
.fx-share__btn i { font-size: 14px; }
.fx-share__btn:hover {
  background: var(--fx-surface-alt);
  color: var(--fx-primary);
  border-color: var(--fx-primary);
  text-decoration: none;
}
.fx-share__btn.is-facebook { color: #1877f2; border-color: rgba(24, 119, 242, 0.25); }
.fx-share__btn.is-x { color: #111111; border-color: rgba(17, 17, 17, 0.25); }
.fx-share__btn.is-linkedin { color: #0a66c2; border-color: rgba(10, 102, 194, 0.25); }
.fx-share__btn.is-whatsapp { color: #25d366; border-color: rgba(37, 211, 102, 0.25); }
.fx-share__btn.is-device { color: var(--fx-accent); border-color: var(--fx-accent); }

@media (max-width: 767px) {
  .fx-share__btn {
    width: 100%;
    justify-content: center;
  }
}



/* ============================================================
   ARTICLE - PREV/NEXT + ARCHIVE
   ============================================================ */
.fx-prevnext {
  margin: 16px 0 10px;
  padding: 12px;
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-md);
  background: #ffffff;
}
.fx-prevnext__title {
  font-weight: 700;
  font-size: 15px;
  color: var(--fx-text);
  margin-bottom: 10px;
}
.fx-prevnext__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.fx-prevnext__grid > .fx-card:only-child {
  grid-column: 1 / -1;
}
.fx-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-md);
  overflow: hidden;
  background: #ffffff;
  color: var(--fx-text);
  text-decoration: none;
}
.fx-card:hover {
  border-color: var(--fx-primary);
  text-decoration: none;
  color: var(--fx-text);
}
.fx-card__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fx-muted);
  background: var(--fx-surface-alt);
  padding: 8px 10px;
}
.fx-card__body {
  display: flex;
  gap: 10px;
  padding: 10px;
}
.fx-card__thumb {
  width: 96px;
  height: 64px;
  flex: 0 0 96px;
  border-radius: var(--fx-radius-sm);
  overflow: hidden;
  background: #e5e7eb;
}
.fx-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fx-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.fx-card__meta {
  font-size: 12px;
  color: var(--fx-muted);
  margin-top: 4px;
}

.fx-archive {
  margin: 14px 0 10px;
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-md);
  background: #ffffff;
}
.fx-archive__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--fx-border);
}
.fx-archive__tab {
  background: var(--fx-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.fx-archive__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--fx-text);
}
.fx-archive__more {
  margin-left: auto;
  font-size: 12px;
  color: var(--fx-primary);
  text-decoration: none;
}
.fx-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fx-archive__item {
  padding: 12px 14px;
  border-bottom: 1px solid var(--fx-border);
}
.fx-archive__item:last-child { border-bottom: none; }
.fx-archive__link {
  display: inline-block;
  font-weight: 700;
  color: var(--fx-text);
  text-decoration: none;
}
.fx-archive__link:hover { color: var(--fx-primary); }
.fx-archive__date {
  font-size: 12px;
  color: var(--fx-muted);
  margin-top: 4px;
}

.fx-author-more {
  margin: 18px 0 0;
  padding: 12px;
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-md);
  background: #ffffff;
}
.fx-author-more__title {
  font-weight: 700;
  font-size: 16px;
  color: var(--fx-text);
  margin: 0 0 10px;
}
.fx-author-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 12px;
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-md);
  background: #ffffff;
  color: var(--fx-text);
  text-decoration: none;
}
.fx-author-card:hover {
  border-color: var(--fx-primary);
  text-decoration: none;
  color: var(--fx-text);
}
.fx-author-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fx-author-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e7eb;
  flex: 0 0 36px;
}
.fx-author-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fx-author-card__author {
  font-size: 12px;
  font-weight: 700;
  color: var(--fx-muted);
}
.fx-author-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.fx-author-card__date {
  font-size: 12px;
  color: var(--fx-muted);
}

@media (max-width: 767px) {
  .fx-prevnext__grid {
    grid-template-columns: 1fr;
  }
  .fx-card__body {
    flex-direction: column;
  }
  .fx-card__thumb {
    width: 100%;
    height: 160px;
  }
  .fx-archive__head {
    flex-wrap: wrap;
  }
  .fx-archive__more {
    margin-left: 0;
  }
}




/* ============================================================
   ARTICLE - AUTHOR BOX
   ============================================================ */
.post--author-info.fx-author-card {
  position: relative;
  min-height: 0;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-md);
}
.post--author-info.fx-author-card .img {
  background: transparent;
  padding: 0;
}
.post--author-info.fx-author-card .img img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.post--author-info.fx-author-card .img .name {
  margin-top: 10px;
  font-weight: 700;
  font-size: 13px;
  color: var(--fx-text);
  text-align: center;
}
.post--author-info.fx-author-card .info {
  flex: 1;
}
.post--author-info.fx-author-card .info .h4 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fx-muted);
}
.post--author-info.fx-author-card .info .content {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fx-text);
}
.post--author-info.fx-author-card .info .social {
  margin: 8px -4px 0;
}
.post--author-info.fx-author-card .info .social > li > a {
  padding: 0;
}
@media (max-width: 767px) {
  .post--author-info.fx-author-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .post--author-info.fx-author-card .info {
    width: 100%;
  }
  .post--author-info.fx-author-card .info .social {
    justify-content: center;
  }
}


/* ============================================================
   ARTICLE - OTHER AUTHORS (IMPROVED)
   ============================================================ */
.fx-author-more__grid > [class*="col-"] {
  margin-bottom: 12px;
}
.fx-author-more .fx-author-card {
  height: auto;
  min-height: 0;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.fx-author-card__excerpt {
  font-size: 13px;
  color: var(--fx-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.9em;
}
@media (max-width: 767px) {
  .fx-author-card__excerpt {
    -webkit-line-clamp: 4;
    min-height: 5.2em;
  }
}

.fx-author-card__topic {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fx-primary);
  margin-top: 2px;
}
.fx-author-card__excerpt { margin-top: 6px; }

/* ============================================================
   PROFILE - FOLLOWED AUTHORS FEED
   ============================================================ */
.fx-profile-excerpt {
  font-size: 13px;
  color: var(--fx-muted);
  margin: 6px 0 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}


.fx-feed-excerpt {
  font-size: 13px;
  color: var(--fx-muted);
  margin: 6px 0 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   HOMEPAGE - BREAKING NEWS (DESKTOP + MOBILE)
   ============================================================ */
.fx-breaking-grid,
.fx-breaking-hero {
  margin-top: 14px;
}

.fx-breaking-grid .post--items-title,
.fx-breaking-hero .post--items-title {
  margin-bottom: 14px;
}

.fx-breaking-grid .spotlight-carousel .post--item {
  background: #ffffff;
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius-md);
  box-shadow: var(--fx-shadow-sm);
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  min-height: 300px !important;
}

.fx-breaking-grid .spotlight-carousel .post--item .post--img {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.fx-breaking-grid .spotlight-carousel .post--item .post--img .thumb img {
  width: 100% !important;
  height: 190px !important;
  object-fit: cover !important;
  border-radius: 10px 10px 0 0;
}

.fx-breaking-grid .spotlight-carousel .post--item .post--info {
  padding: 12px 14px 14px !important;
  flex: 1 1 auto !important;
}

.fx-breaking-grid .spotlight-carousel .post--item .post--info .title .h4 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fx-breaking-grid .spotlight-carousel .post--item .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  top: 10px;
  right: 10px;
  font-size: 18px;
  line-height: 40px;
}

.fx-breaking-hero .amazingslider-wrapper {
  border-radius: var(--fx-radius-lg);
  overflow: hidden;
}

.fx-breaking-hero .amazingslider-text-bg-1,
.fx-breaking-hero .amazingslider-text-bg-2 {
  display: none !important;
}

.fx-breaking-hero .amazingslider-text-1,
.fx-breaking-hero .amazingslider-text-2 {
  width: calc(100% - 24px) !important;
  margin: 0 12px 12px !important;
  padding: 10px 12px !important;
  border: 1px solid var(--fx-border) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: var(--fx-shadow-sm);
  height: auto !important;
  min-height: 104px !important;
}

.fx-breaking-hero .amazingslider-title-1,
.fx-breaking-hero .amazingslider-title-2 {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--fx-text) !important;
  white-space: normal !important;
  font-size: 20px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
}

.fx-breaking-hero .amazingslider-description-1,
.fx-breaking-hero .amazingslider-description-2 {
  margin: 6px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--fx-muted) !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
}

@media (max-width: 991px) {
  .fx-breaking-grid .spotlight-carousel .post--item {
    min-height: 280px !important;
  }
  .fx-breaking-grid .spotlight-carousel .post--item .post--img .thumb img {
    height: 170px !important;
  }
}

@media (max-width: 767px) {
  .fx-breaking-grid .spotlight-carousel .post--item {
    min-height: 0 !important;
  }
  .fx-breaking-grid .spotlight-carousel .post--item .post--img .thumb img {
    height: 205px !important;
  }
  .fx-breaking-grid .spotlight-carousel .post--item .post--info .title .h4 {
    font-size: 18px;
    -webkit-line-clamp: 2;
  }
  .fx-breaking-grid .spotlight-carousel .post--item .icon {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 18px;
  }

  .fx-breaking-hero .amazingslider-text-1,
  .fx-breaking-hero .amazingslider-text-2 {
    width: calc(100% - 16px) !important;
    margin: 0 8px 8px !important;
    padding: 10px 10px 9px !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
    border-radius: 10px !important;
  }
  .fx-breaking-hero .amazingslider-title-1,
  .fx-breaking-hero .amazingslider-title-2 {
    font-size: 16px !important;
    line-height: 1.45 !important;
    display: block !important;
    overflow: visible !important;
  }
  .fx-breaking-hero .amazingslider-description-1,
  .fx-breaking-hero .amazingslider-description-2 {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-top: 4px !important;
  }
}

/* ============================================================
   HOMEPAGE - CATEGORY SUBSCRIBE CARDS
   ============================================================ */
.fx-subscribe-reset {
  border: 1px solid #d4deea;
  background: #fff;
  color: #17324a;
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.fx-subscribe-reset:hover {
  border-color: var(--fx-primary);
  color: var(--fx-primary);
  box-shadow: 0 8px 14px rgba(15, 23, 42, 0.08);
}

.fx-subscribe-block {
  border: 1px solid var(--fx-border);
  border-radius: 14px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.fx-subscribe-title {
  align-items: flex-start;
}

.fx-subscribe-title-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  min-width: 0;
}

.fx-subscribe-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.fx-subscribe-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #cfe2ff;
  background: #eaf3ff;
  color: #0f4f83;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.fx-subscribe-chip.is-news {
  border-color: #c9efd7;
  background: #e9f9ee;
  color: #105533;
}

.fx-subscribe-note {
  margin: -2px 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #4f657b;
}

.fx-subscribe-block .spotlight-carousel .post--item {
  border: 1px solid #d8e3f1;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.fx-subscribe-block .spotlight-carousel .post--item .post--img .thumb img {
  border-radius: 12px 12px 0 0;
}

.fx-subscribe-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.fx-subscribe-category {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f5ca8;
  line-height: 1.2;
}

.fx-subscribe-btn {
  border: 1px solid #c9d8ea;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
  color: #16324a;
  border-radius: 10px;
  padding: 6px 11px;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}
.fx-subscribe-btn:before {
  content: "+";
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}
.fx-subscribe-btn:hover {
  border-color: var(--fx-primary);
  color: var(--fx-primary);
  box-shadow: 0 8px 14px rgba(15, 23, 42, 0.08);
}
.fx-subscribe-btn.is-subscribed {
  border-color: #0f67be;
  background: linear-gradient(180deg, #1b7de0 0%, #0f67be 100%);
  color: #fff;
  box-shadow: 0 8px 16px rgba(15, 103, 190, 0.25);
}
.fx-subscribe-btn.is-subscribed:before {
  content: "\2713";
  font-size: 12px;
}

.fx-subscribe-empty-message {
  margin: 8px 0 0;
}

@media (max-width: 767px) {
  .fx-subscribe-block {
    border-radius: 12px;
    padding: 12px 12px 10px;
  }
  .fx-subscribe-title {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .fx-subscribe-title-main {
    gap: 8px;
  }
  .fx-subscribe-chips {
    gap: 5px;
  }
  .fx-subscribe-chip {
    font-size: 10px;
    padding: 3px 8px;
  }
  .fx-subscribe-note {
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .fx-subscribe-meta {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  .fx-subscribe-reset,
  .fx-subscribe-btn {
    font-size: 11px;
    padding: 6px 10px;
  }
  .fx-subscribe-btn {
    align-self: flex-start;
  }
}

/* ============================================================
   MOBILE RESPONSIVE — Kapsamlı Düzeltmeler
   ============================================================ */

/* ── Sticky reklamları mobilde gizle (ekrana sığmaz) ── */
@media (max-width: 991px) {
  .header--ad-wrapper { display: none !important; }
}

/* ── Genel container padding düzeltmesi ── */
@media (max-width: 767px) {
  .container { padding-left: 12px !important; padding-right: 12px !important; }
  .row { margin-left: -8px !important; margin-right: -8px !important; }

  /* ── Header logo + ad ── */
  .header--mainbar {
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
    text-align: center;
  }
  .header--logo img { max-height: 54px; }
  .header--ad { justify-content: center; }

  /* ── Navbar hamburger göster ── */
  .navbar-toggle { display: flex !important; align-items: center; justify-content: center; }
  .header--menu-links.navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 10px 0 !important;
    gap: 0 !important;
  }

  /* ── Breaking news slider ── */
  .amazingslider-wrapper {
    padding-bottom: 60px !important;
    margin-bottom: 16px !important;
  }

  /* ── Genel .beyaz kartlar ── */
  .beyaz { padding: 12px; border-radius: 10px; }

  /* ── Post items ── */
  .post--items-title { flex-wrap: wrap; gap: 8px; padding-bottom: 8px; }
  .post--items-title .h4 { font-size: 15px; }
  .fx-img-sm { height: 130px; }
  .fx-img-md { height: 180px; }
  .post--info { padding: 10px 12px; }
  .post--info .title .h4 { font-size: 14px; line-height: 1.3; }

  /* ── Abone Haberleri bloğu ── */
  .fx-subscribe-block {
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 14px;
  }
  .fx-subscribe-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 8px;
  }
  .fx-subscribe-title-main { gap: 8px; }
  .fx-subscribe-title-main h2.h4 { font-size: 15px; }
  .fx-subscribe-icon-wrap { width: 28px; height: 28px; font-size: 12px; }
  .fx-subscribe-title-right { flex-wrap: wrap; gap: 6px; }
  .fx-sub-badge { font-size: 10px; padding: 2px 8px; }
  .fx-subscribe-hint { font-size: 11px; padding: 6px 8px; }
  .fx-subscribe-meta { flex-wrap: wrap; gap: 4px; }
  .fx-subscribe-btn { font-size: 10px; padding: 3px 8px; }
  .fx-subscribe-reset { font-size: 10px; padding: 3px 8px; }

  /* Her kart mobilde tam genişlik */
  .fx-subscribable-card.col-md-3 { width: 100% !important; padding-left: 8px; padding-right: 8px; }

  /* ── Abone Yazarlar bloğu ── */
  .fx-author-block { padding: 12px; border-radius: 10px; margin-top: 14px; }
  .fx-author-block .fx-subscribe-title { flex-direction: column; align-items: flex-start; gap: 8px; }
  .fx-author-icon-wrap { width: 28px; height: 28px; font-size: 12px; }
  .fx-author-card-top { padding: 10px; gap: 8px; }
  .fx-author-avatar { width: 38px; height: 38px; }
  .fx-author-name { font-size: 12px; }
  .fx-author-unsub-btn { font-size: 10px; padding: 2px 7px; }
  .fx-author-card-body { padding: 8px 10px 10px; }
  .fx-author-article-title { font-size: 12px; }
  /* Yazar kartları 2'li sütun yerine 1'li */
  .fx-author-block .col-md-3 { width: 100% !important; padding-left: 8px; padding-right: 8px; }

  /* ── Filter bar (döviz/hava) ── */
  .posts--filter-bar .nav { gap: 4px; justify-content: flex-start; }
  .posts--filter-bar .nav > li > a { padding: 7px 10px !important; font-size: 11px; }
  .posts--filter-bar .nav > li > a > i.fa { font-size: 18px; }

  /* ── Sayfa içi breadcrumb ── */
  .breadcrumb { padding: 8px 14px; font-size: 12px; }

  /* ── Sidebar ── */
  .main--sidebar { margin-top: 16px; }
  .widget { margin-bottom: 16px; }
  .widget--title { padding: 10px 14px; }
  .widget--title .h4 { font-size: 14px; }

  /* ── Footer ── */
  .footer--widgets .col-md-3,
  .footer--widgets .col-md-9 { text-align: center !important; }
  .footer--copyright { text-align: center !important; }
  .footer--copyright .float--left,
  .footer--copyright .float--right { float: none !important; display: block !important; text-align: center; }
  .footer--copyright .links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 6px 0; }

  /* ── Yazar detay sayfası ── */
  .post--author-info { padding: 10px; }
  .post--author-info img { width: 100% !important; max-width: 220px; display: block; margin: 0 auto 10px; }
  .fx-action-bar { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; }
  #fx-author-sub-btn { font-size: 12px !important; padding: 8px 14px !important; }

  /* ── Main content col aralıkları ── */
  .main--content.col-md-8,
  .main--content.col-md-12 { padding-left: 8px; padding-right: 8px; }

  /* ── hidden/visible row ikizlerini yönet ── */
  .row.hidden-xs { display: none !important; }
  .row.hidden-lg.hidden-md { display: block !important; }
}

/* ── Küçük telefon (480px ve altı) ── */
@media (max-width: 480px) {
  .header--logo img { max-height: 44px; }
  .post--items-title .h4 { font-size: 13px; }
  .fx-img-sm { height: 110px; }
  .breadcrumb { font-size: 11px; padding: 6px 10px; }

  /* Haber kartları tek sütun */
  .col-xs-12.col-md-3,
  .col-xs-12.col-md-6,
  .col-xs-12.col-sm-6 { width: 100% !important; }

  /* Döviz bar scroll */
  .posts--filter-bar .nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .posts--filter-bar .nav::-webkit-scrollbar { height: 3px; }
  .posts--filter-bar .nav::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
  .posts--filter-bar .nav > li { flex-shrink: 0; }

  /* Abone blok başlığı */
  .fx-subscribe-title-main h2.h4 { font-size: 13px; }
  .fx-sub-badge, .fx-subscribe-reset { font-size: 9px; }

  /* Yazar kartları */
  .fx-author-card-top { flex-wrap: wrap; }
  .fx-author-unsub-btn { margin-left: 0 !important; }
}

/* ── Çok küçük telefon (360px ve altı) ── */
@media (max-width: 360px) {
  .container { padding-left: 8px !important; padding-right: 8px !important; }
  .beyaz { padding: 8px; }
  .fx-subscribe-block,
  .fx-author-block { padding: 8px; }
  .post--info { padding: 8px; }
  .post--info .title .h4 { font-size: 13px; }
  .fx-img-sm { height: 95px; }
  .footer--widgets .nav.social { flex-wrap: wrap; justify-content: center; gap: 6px; }
}

/* ── Tablet (768-991px) ── */
@media (min-width: 768px) and (max-width: 991px) {
  /* Abone kartları 2'li sütun */
  .fx-subscribable-card.col-md-3 { width: 50% !important; }
  .fx-author-block .col-md-3 { width: 50% !important; }

  /* Container */
  .container { padding-left: 16px !important; padding-right: 16px !important; }

  /* Header */
  .header--logo img { max-height: 60px; }

  /* Sticky reklamlar tablette de gizli (index.php'de fixed olduğundan taşar) */
  .header--ad-wrapper { display: none !important; }

  /* Post titles */
  .post--items-title .h4 { font-size: 15px; }

  /* Sidebar */
  .main--sidebar.col-sm-5 { margin-top: 0; }

  /* Filter bar tablet */
  .posts--filter-bar .nav { flex-wrap: wrap; }
}

/* ============================================================
   MOBİL KART YÜKSEKLİĞİ — Dinamik / İçeriğe Göre
   Masaüstünde sabit yükseklikler korunur.
   Mobilde resimler 16:9 aspect-ratio, kartlar içeriğe göre büyür.
   ============================================================ */

@media (max-width: 991px) {
  /* ── Tüm post card flex-column ── */
  .post--item {
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: 0 !important;
  }
  .post--img { flex-shrink: 0; }
  .post--info { flex: 1 1 auto; height: auto !important; }

  /* ── Sabit yükseklikleri kaldır, aspect-ratio ekle ── */
  .fx-img-sm,
  .fx-img-md {
    height: auto !important;
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    display: block;
  }
  .fx-img-auto { height: auto !important; width: 100%; object-fit: cover; display: block; }

  /* ── thumb içindeki resimler ── */
  .post--img .thumb img,
  .post--img > img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
  }

  /* ── Başlık: içeriğe göre büyür, max 4 satır ── */
  .post--info .title .h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
  }

  /* ── Abone kart içindeki yazı ── */
  .fx-author-article-title {
    -webkit-line-clamp: 4;
  }
}

/* ── Tablet: 4:3 oran ── */
@media (min-width: 768px) and (max-width: 991px) {
  .fx-img-sm,
  .fx-img-md,
  .post--img .thumb img,
  .post--img > img {
    aspect-ratio: 4 / 3;
  }
  .post--info .title .h4 { -webkit-line-clamp: 3; }
}

/* ── Masaüstü: sabit yükseklikleri geri yükle ── */
@media (min-width: 992px) {
  .fx-img-sm { height: 160px !important; aspect-ratio: unset; }
  .fx-img-md { height: 220px !important; aspect-ratio: unset; }
  .post--img .thumb img,
  .post--img > img { height: auto !important; aspect-ratio: unset; }
  .post--info .title .h4 { -webkit-line-clamp: unset; overflow: visible; }
}


/* ============================================================
   SIDEBAR GENİŞLİK KÜÇÜLTME - Reklamlar için
   ============================================================ */

@media (min-width: 992px) {
  /* Ana içerik alanını genişlet: col-md-8 -> %75 */
  .main--content.col-md-8 {
    width: 75% !important;
  }
  
  /* Sidebar'ı küçült: col-md-4 -> %25 */
  .main--sidebar.col-md-4 {
    width: 25% !important;
  }
  
  /* Sidebar içindeki widget'ları küçült */
  .main--sidebar .widget {
    max-width: 100%;
  }
  
  /* Widget aralarındaki boşluğu minimuma indir */
  .main--sidebar .widget + .widget {
    margin-top: 2px !important;
  }
  
  /* Widget padding'i azalt */
  .main--sidebar .widget {
    padding: 8px !important;
  }
  
  /* Widget'in kendisini de daralt */
  .main--sidebar .widget {
    max-width: 85% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Orta boyutlu ekranlar için ÖZEL REKLAM DÜZENLEMESİ (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Reklamları göster ama kontrollü küçült */
  .main--sidebar .ad--widget {
    display: block !important;
    max-width: 75% !important;
    max-height: 250px !important;
    overflow: hidden;
    transform: scale(0.55);
    transform-origin: top center;
    margin: 0 auto !important;
    margin-bottom: -45% !important;
  }
  
  .main--sidebar .ad--widget img {
    max-width: 100% !important;
    max-height: 250px !important;
    height: auto !important;
    object-fit: contain !important;
  }
  
  .main--sidebar .ad--widget iframe {
    max-width: 100% !important;
    width: 100% !important;
    max-height: 250px !important;
    transform: scale(0.55);
    transform-origin: top center;
  }
  
  .main--sidebar .ad--widget > * {
    max-width: 100% !important;
    max-height: 250px !important;
    overflow: hidden !important;
  }
  
  /* Widget'leri biraz daha geniş tut */
  .main--sidebar .widget {
    max-width: 95% !important;
  }
}

/* Sadece geniş ekranlarda (1200px+) reklamları göster ve küçült */
@media (min-width: 1200px) {
  /* Sidebar içindeki reklam alanlarını KÜÇÜLT ama görünür tut */
  .main--sidebar .ad--widget {
    display: block !important;
    max-width: 100% !important;
    overflow: hidden;
    transform: scale(0.55);
    transform-origin: top center;
    margin: 0 auto !important;
    margin-bottom: -30% !important;
  }
  
  /* Sidebar içindeki resimleri küçült */
  .main--sidebar .ad--widget img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  
  /* Sidebar içindeki iframe'leri küçült */
  .main--sidebar .ad--widget iframe {
    max-width: 100% !important;
    width: 100% !important;
    transform: scale(0.55);
    transform-origin: top center;
  }
  
  /* Sidebar içindeki div, ins gibi reklam elementlerini küçült */
  .main--sidebar .ad--widget > * {
    max-width: 100% !important;
    overflow: hidden !important;
  }
}

/* Tablet için de ayarlama */
@media (min-width: 768px) and (max-width: 991px) {
  .main--content.col-sm-7 {
    width: 70% !important;
  }
  
  .main--sidebar.col-sm-5 {
    width: 30% !important;
  }
  
  /* Tablet'te reklamları gizle */
  .main--sidebar .ad--widget {
    display: none !important;
  }
  
  .main--sidebar .widget {
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* ============================================================
   HEADER DÜZELTMELER - Orta Boyutlu Ekranlar (992px - 1199px)
   ============================================================ */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Header mainbar düzeltmeleri */
  .header--mainbar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
  }
  
  .header--logo {
    flex: 0 0 auto;
  }
  
  .header--logo img {
    max-height: 50px !important;
  }
  
  .header--ad {
    flex: 1 1 100%;
    justify-content: center;
    margin-top: 8px;
  }
  
  /* Navbar menü düzeltmeleri */
  .header--navbar .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  .header--menu-links.navbar-nav {
    flex-wrap: wrap !important;
    gap: 0;
  }
  
  .header--menu-links > li > a {
    padding: 12px 8px !important;
    font-size: 12px !important;
  }
  
  /* Arama formu küçült */
  .header--search-control {
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;
    flex: 0 0 180px !important;
    height: 38px !important;
    font-size: 13px !important;
  }
  
  .header--search-btn {
    height: 38px !important;
    width: 42px !important;
    min-width: 42px !important;
    flex: 0 0 42px !important;
  }
}

/* Daha küçük ekranlar için (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .header--mainbar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 10px 0;
  }
  
  .header--logo img {
    max-height: 48px !important;
  }
  
  .header--ad {
    justify-content: center;
  }
  
  /* Navbar hamburger göster */
  .header--navbar .navbar-header {
    display: flex !important;
  }
  
  .navbar-toggle {
    display: block !important;
  }
  
  .header--menu-links.navbar-nav {
    flex-direction: column !important;
    width: 100%;
  }
  
  .navbar-collapse.collapse {
    display: none !important;
  }
  
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  
  .header--search-control {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* ============================================================
   SOL VE SAĞ SABİT REKLAMLAR - Küçültme
   ============================================================ */

/* Orta boyutlu ekranlarda gizle */
@media (max-width: 1399px) {
  .header--ad-wrapper,
  .advert_header {
    display: none !important;
  }
}

/* Sadece çok geniş ekranlarda göster ve küçült */
@media (min-width: 1400px) {
  .advert_header {
    transform: scale(0.4) !important;
    transform-origin: top left !important;
  }
  
  .advert_header[style*="left:0"] {
    transform-origin: top left !important;
    left: 0 !important;
  }
  
  .advert_header[style*="right:0"] {
    transform-origin: top right !important;
    right: 0 !important;
  }
  
  /* İçindeki tüm elementleri küçült */
  .advert_header * {
    max-width: 100% !important;
  }
  
  .advert_header img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  .advert_header iframe {
    max-width: 100% !important;
    transform: scale(0.4);
    transform-origin: top center;
  }
}

/* Ekstra geniş ekranlarda biraz daha büyük */
@media (min-width: 1600px) {
  .advert_header {
    transform: scale(0.5) !important;
  }
  
  .advert_header iframe {
    transform: scale(0.5);
  }
}


/* ============================================================
   MOBİL TASARIM İYİLEŞTİRMELERİ - Haber Kartları
   ============================================================ */
@media (max-width: 767px) {
  /* Haber kartlarının yüksekliğini artır */
  .post--item {
    min-height: auto !important;
    margin-bottom: 20px !important;
  }
  
  /* Haber resimlerinin yüksekliğini ÇOK DAHA FAZLA artır */
  .post--item .post--img .thumb img {
    height: 320px !important;
    min-height: 320px !important;
    object-fit: cover !important;
  }
  
  /* Büyük haber kartları için daha da fazla yükseklik */
  .post--item.post--layout-1 .post--img .thumb img,
  .post--item.post--title-larger .post--img .thumb img {
    height: 400px !important;
    min-height: 400px !important;
  }
  
  /* Post info alanını çok daha fazla genişlet */
  .post--item .post--info {
    padding: 18px 16px !important;
    min-height: 160px !important;
  }
  
  /* Başlık fontunu daha da büyüt */
  .post--item .post--info .title .h4 {
    font-size: 18px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
    font-weight: 700 !important;
  }
  
  /* Büyük kartlarda başlık çok daha büyük */
  .post--item.post--layout-1 .post--info .title .h4,
  .post--item.post--title-larger .post--info .title .h4 {
    font-size: 22px !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;
  }
  
  /* Meta bilgileri daha okunaklı */
  .post--item .post--info .meta {
    font-size: 13px !important;
    margin-top: 10px !important;
  }
  
  /* Kategori badge'i büyüt */
  .post--item .post--img .cat {
    font-size: 12px !important;
    padding: 6px 12px !important;
    font-weight: 600 !important;
  }
  
  /* Kart aralarındaki boşluğu daha da artır */
  .post--items .nav > li {
    margin-bottom: 24px !important;
  }
  
  /* Beyaz kartlara daha fazla padding */
  .beyaz {
    padding: 18px !important;
    margin-bottom: 18px !important;
  }
  
  /* Post items başlığını büyüt */
  .post--items-title {
    padding: 14px 0 !important;
    margin-bottom: 16px !important;
  }
  
  .post--items-title .h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
  }
  
  /* Resim container'ı */
  .post--item .post--img {
    margin-bottom: 0 !important;
  }
  
  /* Thumb link */
  .post--item .post--img .thumb {
    display: block !important;
    overflow: hidden !important;
    border-radius: 12px 12px 0 0 !important;
  }
}

/* Küçük telefonlar için ekstra düzenlemeler */
@media (max-width: 480px) {
  .post--item .post--img .thumb img {
    height: 280px !important;
    min-height: 280px !important;
  }
  
  .post--item.post--layout-1 .post--img .thumb img,
  .post--item.post--title-larger .post--img .thumb img {
    height: 350px !important;
    min-height: 350px !important;
  }
  
  .post--item .post--info .title .h4 {
    font-size: 17px !important;
  }
  
  .post--item.post--layout-1 .post--info .title .h4,
  .post--item.post--title-larger .post--info .title .h4 {
    font-size: 20px !important;
  }
  
  .post--item .post--info {
    min-height: 140px !important;
  }
}

/* ============================================================
   MOBİL - ÜST HEADER İYİLEŞTİRMELERİ
   ============================================================ */
@media (max-width: 767px) {
  /* Üst kırmızı bar */
  .top {
    padding: 10px 0 !important;
  }
  
  /* Son dakika başlığı */
  .title.saving {
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
  }
  
  /* Kayıt ol, giriş yap butonları */
  .header--topbar a {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  
  /* Dil seçici */
  .header--topbar .dropdown-toggle {
    font-size: 12px !important;
    padding: 6px 10px !important;
  }
  
  /* Sosyal medya ikonları */
  .header--topbar .social--icons a {
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
  }
}

/* ============================================================
   MOBİL - NAVBAR İYİLEŞTİRMELERİ
   ============================================================ */
@media (max-width: 767px) {
  /* Navbar yüksekliği */
  .header--navbar {
    min-height: 56px !important;
  }
  
  /* Hamburger menü butonu */
  .navbar-toggle {
    padding: 8px 12px !important;
    margin: 8px 0 !important;
    border-radius: 8px !important;
  }
  
  .navbar-toggle .icon-bar {
    width: 24px !important;
    height: 3px !important;
    border-radius: 2px !important;
  }
  
  /* Menü açıldığında */
  .navbar-collapse {
    border-top: 1px solid var(--fx-border) !important;
    margin-top: 8px !important;
    padding-top: 8px !important;
  }
  
  .header--menu-links > li > a {
    padding: 12px 16px !important;
    font-size: 14px !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
  }
  
  /* Arama kutusu mobilde */
  .header--search-form.hidden-md.hidden-lg {
    display: flex !important;
    width: 100% !important;
    padding: 8px 0 !important;
  }
  
  .header--search-control {
    width: 100% !important;
    max-width: 100% !important;
    height: 44px !important;
    font-size: 15px !important;
  }
  
  .header--search-btn {
    height: 44px !important;
    width: 52px !important;
  }
}

/* ============================================================
   MOBİL - GENEL OKUNAKLILIK İYİLEŞTİRMELERİ
   ============================================================ */
@media (max-width: 767px) {
  /* Genel font boyutları */
  body {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
  
  /* Paragraflar */
  p {
    font-size: 15px !important;
    line-height: 1.65 !important;
    margin-bottom: 12px !important;
  }
  
  /* Linkler daha kolay tıklanabilir */
  a {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  
  /* Butonlar daha büyük */
  .btn,
  button {
    min-height: 44px !important;
    padding: 10px 16px !important;
    font-size: 15px !important;
  }
  
  /* Kartlar arası boşluk */
  .row > [class*="col-"] {
    margin-bottom: 12px !important;
  }
}


/* ============================================================
   MOBİL - YAZAR RESİMLERİ DÜZELTMESİ
   ============================================================ */
@media (max-width: 767px) {
  /* Yazar profil resimleri - tam ortaya odaklan */
  .post--item .post--img .thumb img[src*="profil"],
  .list--widget .post--img .thumb img,
  .widget .post--img .thumb img {
    object-position: center center !important;
    object-fit: cover !important;
  }
  
  /* Yazar widget'ındaki resimler */
  .list--widget-2 .post--img .thumb img,
  .list--widget-3 .post--img .thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  
  /* Yuvarlak yazar resimleri */
  .post--img .thumb img[style*="border-radius"],
  img[style*="border-radius: 50%"],
  img.rounded-circle,
  .rounded-circle img {
    object-fit: cover !important;
    object-position: center center !important;
  }
  
  /* Sidebar yazar listesi - daha büyük boyut */
  .main--sidebar .post--img .thumb {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
  }
  
  .main--sidebar .post--img .thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  
  /* Yazar kartları için özel düzenleme - daha büyük */
  .post--item.post--layout-3 .post--img .thumb {
    width: 85px !important;
    height: 85px !important;
    min-width: 85px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
  }
  
  .post--item.post--layout-3 .post--img .thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  
  /* Yazar detay sayfası */
  .post--author-info img {
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* Küçük telefonlar için */
@media (max-width: 480px) {
  .main--sidebar .post--img .thumb {
    width: 70px !important;
    height: 70px !important;
  }
  
  .post--item.post--layout-3 .post--img .thumb {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
  }
}
