.fg-home-hero h1 {
  max-width: 800px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.7rem, 5.4vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.047em;
}

.fg-home-hero h1 strong {
  display: block;
  margin-top: 8px;
  color: var(--fg-home-gold-light);
  font-weight: inherit;
}

.fg-home-hero__content > p {
  max-width: 690px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(1.03rem, 1.65vw, 1.22rem);
  line-height: 1.75;
}

.fg-home-hero__actions,
.fg-home-center-actions,
.fg-home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* ==========================================================================
   FON GAYRİMENKUL AKADEMİ
   Dosya: /css/blog/academy.css
   Açıklama: Akademi ana sayfa, kategori, arama ve makale sayfaları için
   tek dosyalık, mobil uyumlu ve bağımsız stil altyapısı.
   ========================================================================== */

/* ==========================================================================
   01. TASARIM DEĞİŞKENLERİ
   ========================================================================== */

:root {
  --academy-primary: #f58220;
  --academy-primary-dark: #d96b08;
  --academy-primary-soft: #fff4ea;
  --academy-secondary: #14213d;
  --academy-secondary-soft: #eaf0f8;

  --academy-bg: #f7f8fa;
  --academy-surface: #ffffff;
  --academy-surface-alt: #f1f3f6;

  --academy-text: #202124;
  --academy-text-soft: #5f6368;
  --academy-text-light: #80868b;

  --academy-border: #e6e8eb;
  --academy-border-strong: #d7dbe0;

  --academy-success: #1f8f4e;
  --academy-warning: #b86b00;
  --academy-danger: #c62828;
  --academy-info: #2563eb;

  --academy-shadow-xs: 0 2px 8px rgba(20, 33, 61, 0.06);
  --academy-shadow-sm: 0 8px 24px rgba(20, 33, 61, 0.08);
  --academy-shadow: 0 14px 40px rgba(20, 33, 61, 0.11);
  --academy-shadow-lg: 0 24px 70px rgba(20, 33, 61, 0.16);

  --academy-radius-sm: 10px;
  --academy-radius: 16px;
  --academy-radius-lg: 24px;
  --academy-radius-pill: 999px;

  --academy-container: 1240px;
  --academy-content: 820px;
  --academy-sidebar: 340px;

  --academy-transition: 0.28s ease;
  --academy-header-height: 76px;

  --academy-font:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  --academy-serif:
    Georgia,
    "Times New Roman",
    serif;
}

/* ==========================================================================
   02. TEMEL SIFIRLAMA
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--academy-header-height) + 24px);
}

body {
  margin: 0;
  color: var(--academy-text);
  background: var(--academy-bg);
  font-family: var(--academy-font);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
figure {
  margin-top: 0;
}

::selection {
  color: #ffffff;
  background: var(--academy-primary);
}

:focus-visible {
  outline: 3px solid rgba(245, 130, 32, 0.35);
  outline-offset: 3px;
}

/* ==========================================================================
   03. ORTAK YAPI
   ========================================================================== */

.container,
.academy-container,
.footer-container {
  width: min(var(--academy-container), calc(100% - 40px));
  margin-inline: auto;
}

.academy-section {
  padding: 96px 0;
}

.academy-section--white {
  background: var(--academy-surface);
}

.academy-section--soft {
  background: var(--academy-surface-alt);
}

.academy-section--dark {
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(245, 130, 32, 0.18), transparent 34%),
    linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading > span,
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--academy-primary-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading > span::before,
.section-heading > span::after {
  width: 26px;
  height: 2px;
  content: "";
  background: var(--academy-primary);
  border-radius: var(--academy-radius-pill);
}

.section-heading h2 {
  margin-bottom: 16px;
  color: var(--academy-secondary);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--academy-text-soft);
  font-size: 18px;
}

.academy-section--dark .section-heading h2,
.academy-section--dark .section-heading p {
  color: #ffffff;
}

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

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

.text-muted {
  color: var(--academy-text-soft);
}

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

.hidden {
  display: none !important;
}

/* ==========================================================================
   04. BUTONLAR
   ========================================================================== */

.cta-button,
.secondary-button,
.academy-button,
.read-more,
.pagination a,
.pagination button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--academy-radius-pill);
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform var(--academy-transition),
    background-color var(--academy-transition),
    color var(--academy-transition),
    border-color var(--academy-transition),
    box-shadow var(--academy-transition);
}

.cta-button,
.academy-button--primary {
  color: #ffffff;
  background: var(--academy-primary);
  box-shadow: 0 10px 28px rgba(245, 130, 32, 0.28);
}

.cta-button:hover,
.academy-button--primary:hover {
  background: var(--academy-primary-dark);
  transform: translateY(-2px);
}

.secondary-button,
.academy-button--secondary {
  color: var(--academy-secondary);
  background: #ffffff;
  border-color: var(--academy-border);
}

.secondary-button:hover,
.academy-button--secondary:hover {
  color: var(--academy-primary-dark);
  border-color: var(--academy-primary);
  transform: translateY(-2px);
}

.read-more {
  min-height: auto;
  padding: 0;
  color: var(--academy-primary-dark);
  border-radius: 0;
}

.read-more:hover {
  color: var(--academy-secondary);
  transform: translateX(4px);
}

/* ==========================================================================
   05. AKADEMİ ÜST MENÜ
   ========================================================================== */

.academy-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(230, 232, 235, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.academy-header.is-scrolled {
  box-shadow: var(--academy-shadow-xs);
}

.academy-header__inner {
  display: flex;
  min-height: var(--academy-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.academy-logo {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.academy-logo img {
  width: auto;
  max-height: 48px;
}

.academy-logo__text {
  color: var(--academy-secondary);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.academy-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.academy-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.academy-nav a {
  position: relative;
  color: var(--academy-text);
  font-size: 15px;
  font-weight: 700;
}

.academy-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--academy-primary);
  border-radius: var(--academy-radius-pill);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--academy-transition);
}

.academy-nav a:hover,
.academy-nav a[aria-current="page"],
.academy-nav a.active {
  color: var(--academy-primary-dark);
}

.academy-nav a:hover::after,
.academy-nav a[aria-current="page"]::after,
.academy-nav a.active::after {
  transform: scaleX(1);
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--academy-secondary);
  background: #ffffff;
  border: 1px solid var(--academy-border);
  border-radius: 12px;
}

.mobile-menu-button span,
.mobile-menu-button span::before,
.mobile-menu-button span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: var(--academy-radius-pill);
  transition: var(--academy-transition);
}

.mobile-menu-button span {
  position: relative;
}

.mobile-menu-button span::before,
.mobile-menu-button span::after {
  position: absolute;
  left: 0;
  content: "";
}

.mobile-menu-button span::before {
  top: -7px;
}

.mobile-menu-button span::after {
  top: 7px;
}

.mobile-menu-button[aria-expanded="true"] span {
  background: transparent;
}

.mobile-menu-button[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ==========================================================================
   06. HERO
   ========================================================================== */

.academy-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 96px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(9, 16, 31, 0.96), rgba(20, 33, 61, 0.78)),
    var(--hero-image, none) center/cover no-repeat;
}

.academy-hero::before,
.academy-hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.academy-hero::before {
  width: 430px;
  height: 430px;
  top: -180px;
  right: -100px;
  background: rgba(245, 130, 32, 0.16);
}

.academy-hero::after {
  width: 250px;
  height: 250px;
  bottom: -130px;
  left: 8%;
  background: rgba(255, 255, 255, 0.06);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-content .eyebrow {
  color: #ffd4ae;
}

.hero-content h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-content p {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-buttons .secondary-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-buttons .secondary-button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   07. BREADCRUMB
   ========================================================================== */

.breadcrumb {
  padding: 18px 0;
  background: var(--academy-surface);
  border-bottom: 1px solid var(--academy-border);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--academy-text-soft);
  font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
  color: var(--academy-text-light);
  content: "/";
}

.breadcrumb a:hover {
  color: var(--academy-primary-dark);
}

.breadcrumb [aria-current="page"] {
  color: var(--academy-text);
  font-weight: 700;
}

/* ==========================================================================
   08. AKADEMİ ARAMA
   ========================================================================== */

.academy-search {
  padding: 64px 0;
  background: var(--academy-surface);
}

.search-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.search-wrapper input {
  width: 100%;
  min-height: 68px;
  padding: 0 170px 0 26px;
  color: var(--academy-text);
  background: #ffffff;
  border: 2px solid var(--academy-border);
  border-radius: var(--academy-radius-pill);
  box-shadow: var(--academy-shadow-xs);
  transition: var(--academy-transition);
}

.search-wrapper input::placeholder {
  color: var(--academy-text-light);
}

.search-wrapper input:focus {
  border-color: var(--academy-primary);
  box-shadow: 0 0 0 6px rgba(245, 130, 32, 0.12);
  outline: none;
}

.search-wrapper button {
  position: absolute;
  top: 7px;
  right: 7px;
  min-width: 146px;
  min-height: 54px;
  padding: 0 26px;
  color: #ffffff;
  background: var(--academy-primary);
  border: 0;
  border-radius: var(--academy-radius-pill);
  font-weight: 800;
}

.search-wrapper button:hover {
  background: var(--academy-primary-dark);
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.popular-searches a {
  padding: 9px 15px;
  color: var(--academy-primary-dark);
  background: var(--academy-primary-soft);
  border-radius: var(--academy-radius-pill);
  font-size: 14px;
  font-weight: 700;
  transition: var(--academy-transition);
}

.popular-searches a:hover {
  color: #ffffff;
  background: var(--academy-primary);
}

.search-status,
.no-results {
  margin-top: 24px;
  text-align: center;
  color: var(--academy-text-soft);
}

.no-results {
  display: block;
  padding: 28px;
  background: var(--academy-surface);
  border: 1px dashed var(--academy-border-strong);
  border-radius: var(--academy-radius);
}

.no-results[hidden] {
  display: none !important;
}

/* ==========================================================================
   09. KATEGORİLER
   ========================================================================== */

.category-section {
  padding: 94px 0;
  background: var(--academy-bg);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 30px;
  color: var(--academy-text);
  background: var(--academy-surface);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-lg);
  box-shadow: var(--academy-shadow-sm);
  transition:
    transform var(--academy-transition),
    box-shadow var(--academy-transition),
    border-color var(--academy-transition);
}

.category-card::before {
  position: absolute;
  width: 120px;
  height: 120px;
  top: -40px;
  right: -40px;
  content: "";
  background: var(--academy-primary-soft);
  border-radius: 50%;
  transition: transform var(--academy-transition);
}

.category-card:hover {
  border-color: rgba(245, 130, 32, 0.34);
  box-shadow: var(--academy-shadow);
  transform: translateY(-7px);
}

.category-card:hover::before {
  transform: scale(1.3);
}

.category-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--academy-primary-dark);
  background: var(--academy-primary-soft);
  border-radius: 16px;
  font-size: 28px;
}

.category-content {
  position: relative;
  z-index: 1;
}

.category-content h3 {
  margin-bottom: 12px;
  color: var(--academy-secondary);
  font-size: 23px;
  line-height: 1.25;
}

.category-content p {
  margin-bottom: 18px;
  color: var(--academy-text-soft);
}

.category-content a {
  color: var(--academy-primary-dark);
  font-weight: 800;
}

/* ==========================================================================
   10. ÖNE ÇIKAN YAZILAR
   ========================================================================== */

.featured-posts {
  padding: 96px 0;
  background: var(--academy-surface);
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
  gap: 28px;
}

.featured-main,
.featured-side {
  display: grid;
  gap: 24px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  color: #ffffff;
  background: #111827;
  border-radius: var(--academy-radius-lg);
  box-shadow: var(--academy-shadow);
}

.featured-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(8, 15, 29, 0.96), rgba(8, 15, 29, 0.08) 70%);
}

.featured-card:hover img {
  transform: scale(1.045);
}

.featured-card__content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 38px;
}

.featured-card__content h2,
.featured-card__content h3 {
  margin-bottom: 14px;
  line-height: 1.18;
}

.featured-card__content h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.featured-card__content h3 {
  font-size: 26px;
}

.featured-card__content p {
  max-width: 760px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.featured-side .featured-card {
  min-height: 248px;
}

.featured-side .featured-card img {
  min-height: 248px;
}

.featured-side .featured-card__content {
  padding: 26px;
}

/* ==========================================================================
   11. YAZI KARTLARI
   ========================================================================== */

.latest-posts,
.posts-section {
  padding: 96px 0;
  background: var(--academy-bg);
}

.post-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* Kart */
.post-card {
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: var(--academy-surface);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-lg);
  box-shadow: var(--academy-shadow-sm);
  transition:
    transform var(--academy-transition),
    box-shadow var(--academy-transition),
    border-color var(--academy-transition);
}

.post-card:hover {
  border-color: rgba(245, 130, 32, 0.32);
  box-shadow: var(--academy-shadow);
  transform: translateY(-7px);
}

/* Görsel kutusu */
.post-card__media,
.post-card > a:first-child {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: #f3f4f6;
  border-bottom: 1px solid var(--academy-border);
}

/* Görselin tamamı kutuya sığar */
.post-card__media img,
.post-card > a:first-child img,
.post-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  object-fit: contain;
  object-position: center;
  background: #f3f4f6;
  transition: transform 0.45s ease;
}

/* Görsel taşmadan hafif hareket eder */
.post-card:hover .post-card__media img,
.post-card:hover > a:first-child img {
  transform: scale(1.025);
}

/* Kart içerik alanı */
.post-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

/* Kategori etiketi */
.post-category {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 13px;
  color: var(--academy-primary-dark);
  background: var(--academy-primary-soft);
  border-radius: var(--academy-radius-pill);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Başlık */
.post-body h2,
.post-body h3 {
  margin-bottom: 13px;
  overflow-wrap: anywhere;
  color: var(--academy-secondary);
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.post-body h2 a,
.post-body h3 a {
  transition: color var(--academy-transition);
}

.post-body h2 a:hover,
.post-body h3 a:hover {
  color: var(--academy-primary-dark);
}

/* Açıklama */
.post-body p {
  margin-bottom: 20px;
  color: var(--academy-text-soft);
}

/* Alt bilgiler */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--academy-text-light);
  border-top: 1px solid var(--academy-border);
  font-size: 13px;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Tablet */
@media (max-width: 1100px) {
  .post-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Telefon */
@media (max-width: 640px) {
  .post-grid,
  .related-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .post-body {
    padding: 22px;
  }

  .post-body h2,
  .post-body h3 {
    font-size: 21px;
  }
}

/* ==========================================================================
   12. YENİ BAŞLAYANLAR YOL HARİTASI
   ========================================================================== */

.beginner-section {
  padding: 96px 0;
  background: var(--academy-surface);
}

.roadmap {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.roadmap::before {
  position: absolute;
  width: 4px;
  top: 0;
  bottom: 0;
  left: 31px;
  content: "";
  background: linear-gradient(var(--academy-primary), #ffd4ae);
  border-radius: var(--academy-radius-pill);
}

.road-item {
  position: relative;
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  padding-left: 90px;
}

.road-item:last-child {
  margin-bottom: 0;
}

.road-number {
  position: absolute;
  left: 0;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--academy-primary);
  border: 6px solid var(--academy-surface);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(245, 130, 32, 0.28);
  font-size: 22px;
  font-weight: 900;
}

.road-content {
  flex: 1;
  padding: 30px;
  background: var(--academy-surface);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-lg);
  box-shadow: var(--academy-shadow-sm);
  transition: var(--academy-transition);
}

.road-content:hover {
  box-shadow: var(--academy-shadow);
  transform: translateY(-5px);
}

.road-content h3 {
  margin-bottom: 12px;
  color: var(--academy-secondary);
  font-size: 26px;
  line-height: 1.25;
}

.road-content p {
  margin-bottom: 16px;
  color: var(--academy-text-soft);
}

.road-content a {
  color: var(--academy-primary-dark);
  font-weight: 800;
}

/* ==========================================================================
   13. İSTATİSTİKLER
   ========================================================================== */

.academy-stats {
  padding: 84px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 130, 32, 0.17), transparent 28%),
    linear-gradient(135deg, #101827, #1f2937);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.stat-card {
  padding: 34px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--academy-radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--academy-transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-6px);
}

.stat-icon {
  margin-bottom: 12px;
  font-size: 38px;
}

.stat-card h3 {
  margin-bottom: 6px;
  color: #ffb474;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.stat-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* ==========================================================================
   14. NEDEN AKADEMİ
   ========================================================================== */

.why-academy {
  padding: 96px 0;
  background: var(--academy-surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  padding: 32px 26px;
  text-align: center;
  background: var(--academy-surface);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-lg);
  box-shadow: var(--academy-shadow-sm);
  transition: var(--academy-transition);
}

.why-card:hover {
  border-color: rgba(245, 130, 32, 0.3);
  box-shadow: var(--academy-shadow);
  transform: translateY(-6px);
}

.why-icon {
  display: flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: var(--academy-primary-soft);
  border-radius: 50%;
  font-size: 36px;
}

.why-card h3 {
  margin-bottom: 12px;
  color: var(--academy-secondary);
  font-size: 22px;
}

.why-card p {
  margin-bottom: 0;
  color: var(--academy-text-soft);
}

/* ==========================================================================
   15. MAKALE SAYFASI
   ========================================================================== */

.article-header {
  padding: 76px 0 44px;
  background: var(--academy-surface);
  border-bottom: 1px solid var(--academy-border);
}

.article-header__inner {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.article-header .post-category {
  margin-inline: auto;
}

.article-header h1 {
  margin-bottom: 22px;
  color: var(--academy-secondary);
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.article-lead {
  max-width: 800px;
  margin: 0 auto 24px;
  color: var(--academy-text-soft);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  color: var(--academy-text-light);
  font-size: 14px;
}

.article-meta span,
.article-meta time,
.article-meta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-meta a:hover {
  color: var(--academy-primary-dark);
}

.featured-image {
  width: min(1120px, calc(100% - 40px));
  margin: 40px auto 0;
  overflow: hidden;
  background: var(--academy-surface-alt);
  border-radius: var(--academy-radius-lg);
  box-shadow: var(--academy-shadow);
}

.featured-image img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
}

.featured-image figcaption {
  padding: 12px 18px;
  color: var(--academy-text-light);
  background: var(--academy-surface);
  font-size: 13px;
  text-align: center;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--academy-sidebar);
  gap: 52px;
  align-items: start;
  padding: 64px 0 96px;
}

.article-content {
  min-width: 0;
  padding: 42px;
  background: var(--academy-surface);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-lg);
  box-shadow: var(--academy-shadow-sm);
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--academy-secondary);
  scroll-margin-top: calc(var(--academy-header-height) + 24px);
}

.article-content h2 {
  margin: 50px 0 18px;
  font-size: clamp(30px, 3.8vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.article-content h3 {
  margin: 38px 0 14px;
  font-size: 28px;
  line-height: 1.28;
}

.article-content h4 {
  margin: 30px 0 12px;
  font-size: 22px;
}

.article-content p {
  margin-bottom: 22px;
  color: #303236;
  font-size: 18px;
  line-height: 1.9;
}

.article-content a:not(.cta-button):not(.secondary-button) {
  color: var(--academy-primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content a:hover {
  color: var(--academy-secondary);
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px 24px;
  padding-left: 10px;
}

.article-content li {
  margin-bottom: 9px;
  color: #303236;
  font-size: 18px;
}

.article-content img {
  width: 100%;
  margin: 30px 0;
  border-radius: var(--academy-radius);
}

.article-content figure {
  margin: 34px 0;
}

.article-content figcaption {
  margin-top: -18px;
  color: var(--academy-text-light);
  font-size: 13px;
  text-align: center;
}

.article-content blockquote {
  margin: 34px 0;
  padding: 28px 30px;
  color: var(--academy-secondary);
  background: var(--academy-primary-soft);
  border-left: 5px solid var(--academy-primary);
  border-radius: 0 var(--academy-radius) var(--academy-radius) 0;
  font-family: var(--academy-serif);
  font-size: 22px;
  line-height: 1.65;
}

.article-content hr {
  margin: 42px 0;
  border: 0;
  border-top: 1px solid var(--academy-border);
}

.article-content table {
  width: 100%;
  margin: 32px 0;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius);
}

.article-content th,
.article-content td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--academy-border);
}

.article-content th {
  color: var(--academy-secondary);
  background: var(--academy-primary-soft);
  font-weight: 800;
}

.article-content tr:last-child td {
  border-bottom: 0;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  margin: 32px 0;
}

.info-box,
.warning-box,
.success-box,
.note-box {
  margin: 30px 0;
  padding: 24px 26px;
  border-radius: var(--academy-radius);
  border-left: 5px solid;
}

.info-box {
  color: #16436d;
  background: #eaf4ff;
  border-color: var(--academy-info);
}

.warning-box {
  color: #6c4300;
  background: #fff7e6;
  border-color: var(--academy-warning);
}

.success-box {
  color: #155b35;
  background: #eaf8f0;
  border-color: var(--academy-success);
}

.note-box {
  color: #5d4317;
  background: #fff8df;
  border-color: #d5a000;
}

.article-source {
  margin-top: 42px;
  padding: 22px 24px;
  background: var(--academy-surface-alt);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius);
}

.article-source h2,
.article-source h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.article-source p,
.article-source ul {
  margin-bottom: 0;
  font-size: 15px;
}

/* ==========================================================================
   16. OKUMA SÜRESİ VE İLERLEME
   ========================================================================== */

.reading-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  color: var(--academy-primary-dark);
  background: var(--academy-primary-soft);
  border-radius: var(--academy-radius-pill);
  font-size: 13px;
  font-weight: 800;
}

.reading-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--academy-primary), #ffb474);
  box-shadow: 0 1px 6px rgba(245, 130, 32, 0.35);
}

/* ==========================================================================
   17. İÇİNDEKİLER
   ========================================================================== */

.table-of-contents {
  margin-bottom: 30px;
  padding: 26px;
  background: var(--academy-surface);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-lg);
  box-shadow: var(--academy-shadow-sm);
}

.table-of-contents h2,
.table-of-contents h3 {
  margin-bottom: 16px;
  color: var(--academy-secondary);
  font-size: 21px;
}

.table-of-contents ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.table-of-contents li {
  margin: 0;
  border-bottom: 1px solid var(--academy-border);
}

.table-of-contents li:last-child {
  border-bottom: 0;
}

.table-of-contents a {
  display: block;
  padding: 11px 0;
  color: var(--academy-text-soft);
  font-size: 14px;
  font-weight: 650;
  transition:
    color var(--academy-transition),
    padding-left var(--academy-transition);
}

.table-of-contents a:hover,
.table-of-contents a.active {
  padding-left: 6px;
  color: var(--academy-primary-dark);
}

.table-of-contents .toc-sub {
  padding-left: 18px;
}

.table-of-contents .toc-sub a {
  font-size: 13px;
}

/* ==========================================================================
   18. SIDEBAR
   ========================================================================== */

.sidebar {
  position: sticky;
  top: calc(var(--academy-header-height) + 24px);
}

.sidebar-widget {
  margin-bottom: 24px;
  padding: 26px;
  background: var(--academy-surface);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-lg);
  box-shadow: var(--academy-shadow-sm);
}

.sidebar-widget h2,
.sidebar-widget h3 {
  margin-bottom: 18px;
  color: var(--academy-secondary);
  font-size: 22px;
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget li {
  padding: 11px 0;
  border-bottom: 1px solid var(--academy-border);
}

.sidebar-widget li:last-child {
  border-bottom: 0;
}

.sidebar-widget a {
  color: var(--academy-text-soft);
  font-weight: 700;
  transition: color var(--academy-transition);
}

.sidebar-widget a:hover {
  color: var(--academy-primary-dark);
}

.popular-post {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.popular-post:last-child {
  margin-bottom: 0;
}

.popular-post img {
  width: 88px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}

.popular-post h4 {
  margin-bottom: 5px;
  color: var(--academy-secondary);
  font-size: 15px;
  line-height: 1.4;
}

.popular-post span {
  color: var(--academy-text-light);
  font-size: 12px;
}

.sidebar-cta {
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(135deg, var(--academy-secondary), #0c1325);
}

.sidebar-cta h2,
.sidebar-cta h3,
.sidebar-cta p {
  color: #ffffff;
}

.sidebar-cta p {
  opacity: 0.82;
}

/* ==========================================================================
   19. ETİKETLER VE PAYLAŞIM
   ========================================================================== */

.article-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-tags {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--academy-border);
}

.article-tags a,
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--academy-text-soft);
  background: var(--academy-surface-alt);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-pill);
  font-size: 13px;
  font-weight: 700;
  transition: var(--academy-transition);
}

.article-tags a:hover,
.tag-cloud a:hover {
  color: #ffffff;
  background: var(--academy-primary);
  border-color: var(--academy-primary);
}

.share-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--academy-border);
}

.share-box strong {
  margin-right: 4px;
  color: var(--academy-secondary);
}

.share-box a,
.share-box button {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  color: var(--academy-secondary);
  background: var(--academy-surface-alt);
  border: 1px solid var(--academy-border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: var(--academy-transition);
}

.share-box a:hover,
.share-box button:hover {
  color: #ffffff;
  background: var(--academy-primary);
  border-color: var(--academy-primary);
}

/* ==========================================================================
   20. YAZAR KUTUSU
   ========================================================================== */

.author-box {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 46px;
  padding: 30px;
  background: var(--academy-surface-alt);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-lg);
}

.author-box img {
  width: 110px;
  height: 110px;
  padding: 10px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--academy-border);
  border-radius: 18px;
}

.author-box h2,
.author-box h3 {
  margin-bottom: 8px;
  color: var(--academy-secondary);
  font-size: 24px;
}

.author-box p {
  margin-bottom: 14px;
  color: var(--academy-text-soft);
  font-size: 15px;
}

.author-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.author-social a {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--academy-secondary);
  background: #ffffff;
  border: 1px solid var(--academy-border);
  border-radius: 50%;
  transition: var(--academy-transition);
}

.author-social a:hover {
  color: #ffffff;
  background: var(--academy-primary);
  border-color: var(--academy-primary);
}

/* ==========================================================================
   21. BENZER YAZILAR
   ========================================================================== */

.related-posts {
  padding: 90px 0;
  background: var(--academy-bg);
}

.related-posts .section-heading {
  text-align: left;
  margin-inline: 0;
}

.related-posts .section-heading > span::before,
.related-posts .section-heading > span::after {
  display: none;
}

/* ==========================================================================
   22. FAQ
   ========================================================================== */

.faq-section {
  padding: 96px 0;
  background: var(--academy-surface-alt);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--academy-surface);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius);
  box-shadow: var(--academy-shadow-xs);
}

.faq-list details[open] {
  border-color: rgba(245, 130, 32, 0.32);
  box-shadow: var(--academy-shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 22px 64px 22px 24px;
  color: var(--academy-secondary);
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 32px;
  height: 32px;
  content: "+";
  color: var(--academy-primary-dark);
  background: var(--academy-primary-soft);
  border-radius: 50%;
  line-height: 32px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--academy-text-soft);
}

/* ==========================================================================
   23. CTA
   ========================================================================== */

.academy-cta {
  padding: 104px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 130, 32, 0.22), transparent 32%),
    linear-gradient(135deg, #101827, #1f2937);
}

.academy-cta-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.academy-cta-box h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.academy-cta-box p {
  max-width: 700px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.academy-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.academy-buttons a {
  min-width: 210px;
}

.academy-cta .secondary-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.academy-cta .secondary-button:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ==========================================================================
   24. SAYFALAMA
   ========================================================================== */

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 46px;
}

.pagination a,
.pagination button {
  min-width: 46px;
  min-height: 46px;
  padding: 10px 14px;
  color: var(--academy-secondary);
  background: var(--academy-surface);
  border-color: var(--academy-border);
  box-shadow: var(--academy-shadow-xs);
}

.pagination a:hover,
.pagination button:hover,
.pagination .active,
.pagination [aria-current="page"] {
  color: #ffffff;
  background: var(--academy-primary);
  border-color: var(--academy-primary);
}

.pagination .disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* ==========================================================================
   25. FOOTER
   ========================================================================== */

.site-footer {
  padding: 82px 0 28px;
  color: #c9ced6;
  background: #0d111b;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1.1fr;
  gap: 42px;
}

.footer-logo {
  width: auto;
  max-width: 220px;
  max-height: 70px;
  margin-bottom: 22px;
}

.footer-column h2,
.footer-column h3 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 20px;
}

.footer-column p {
  margin-bottom: 12px;
  color: #aeb5c0;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #c9ced6;
  transition:
    color var(--academy-transition),
    padding-left var(--academy-transition);
}

.footer-column a:hover {
  padding-left: 4px;
  color: #ffad66;
}

.footer-bottom {
  width: min(var(--academy-container), calc(100% - 40px));
  margin: 56px auto 0;
  padding-top: 22px;
  color: #8f97a3;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

/* ==========================================================================
   26. WHATSAPP VE YUKARI ÇIK
   ========================================================================== */

.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 999;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  transition:
    transform var(--academy-transition),
    opacity var(--academy-transition),
    visibility var(--academy-transition);
}

.whatsapp-float {
  bottom: 20px;
  width: 62px;
  height: 62px;
  color: #ffffff;
  background: #25d366;
}

.whatsapp-float img {
  width: 31px;
  height: 31px;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.back-to-top {
  bottom: 94px;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: var(--academy-secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-top.show,
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--academy-primary);
}

/* ==========================================================================
   27. FORM ELEMANLARI
   ========================================================================== */

.academy-form {
  padding: 30px;
  background: var(--academy-surface);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-lg);
  box-shadow: var(--academy-shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--academy-secondary);
  font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--academy-text);
  background: #ffffff;
  border: 1px solid var(--academy-border-strong);
  border-radius: 12px;
  transition: var(--academy-transition);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--academy-primary);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.1);
  outline: none;
}

/* ==========================================================================
   28. BOŞ DURUM VE 404
   ========================================================================== */

.empty-state,
.error-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 90px 24px;
  text-align: center;
}

.empty-state__icon,
.error-page__code {
  margin-bottom: 20px;
  color: var(--academy-primary);
  font-size: clamp(54px, 10vw, 110px);
  font-weight: 900;
  line-height: 1;
}

.empty-state h1,
.empty-state h2,
.error-page h1 {
  margin-bottom: 14px;
  color: var(--academy-secondary);
}

.empty-state p,
.error-page p {
  margin-bottom: 26px;
  color: var(--academy-text-soft);
}

/* ==========================================================================
   29. ANİMASYONLAR
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  animation: academyFadeUp 0.65s ease both;
}

@keyframes academyFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   30. GÖRSEL YÜKLEME
   ========================================================================== */

img[loading="lazy"] {
  background: var(--academy-surface-alt);
}

.lazy-image {
  opacity: 0;
  transition: opacity 0.45s ease;
}

.lazy-image.is-loaded,
.lazy-image.loaded {
  opacity: 1;
}

/* ==========================================================================
   31. DARK MODE
   ========================================================================== */

[data-theme="dark"],
body.dark-mode {
  --academy-bg: #0d1117;
  --academy-surface: #151b23;
  --academy-surface-alt: #1b232d;
  --academy-text: #ecf0f4;
  --academy-text-soft: #b3bbc6;
  --academy-text-light: #8f98a5;
  --academy-border: #2a3440;
  --academy-border-strong: #384554;
  --academy-secondary: #f4f7fa;

  color-scheme: dark;
}

[data-theme="dark"] .academy-header,
body.dark-mode .academy-header {
  background: rgba(13, 17, 23, 0.94);
  border-bottom-color: var(--academy-border);
}

[data-theme="dark"] .mobile-menu-button,
body.dark-mode .mobile-menu-button,
[data-theme="dark"] .search-wrapper input,
body.dark-mode .search-wrapper input,
[data-theme="dark"] .form-group input,
body.dark-mode .form-group input,
[data-theme="dark"] .form-group textarea,
body.dark-mode .form-group textarea,
[data-theme="dark"] .form-group select,
body.dark-mode .form-group select {
  color: var(--academy-text);
  background: var(--academy-surface);
}

[data-theme="dark"] .article-content p,
[data-theme="dark"] .article-content li,
body.dark-mode .article-content p,
body.dark-mode .article-content li {
  color: var(--academy-text);
}

[data-theme="dark"] .secondary-button,
body.dark-mode .secondary-button {
  color: var(--academy-text);
  background: var(--academy-surface);
}

/* ==========================================================================
   32. ERİŞİLEBİLİRLİK VE HAREKET AZALTMA
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   33. TABLET
   ========================================================================== */

@media (max-width: 1100px) {
  :root {
    --academy-sidebar: 300px;
  }

  .category-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar {
    position: static;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .table-of-contents {
    grid-column: 1 / -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================================
   34. MOBİL MENÜ VE MOBİL YAPI
   ========================================================================== */

@media (max-width: 820px) {
  :root {
    --academy-header-height: 68px;
  }

  .academy-section,
  .category-section,
  .featured-posts,
  .latest-posts,
  .posts-section,
  .beginner-section,
  .why-academy,
  .faq-section,
  .related-posts {
    padding: 74px 0;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .academy-nav {
    position: fixed;
    z-index: 999;
    top: var(--academy-header-height);
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    display: block;
    padding: 24px;
    overflow-y: auto;
    background: var(--academy-surface);
    border-left: 1px solid var(--academy-border);
    box-shadow: -14px 0 40px rgba(0, 0, 0, 0.16);
    transform: translateX(105%);
    transition: transform var(--academy-transition);
  }

  .academy-nav.is-open,
  .academy-nav.open {
    transform: translateX(0);
  }

  .academy-nav ul {
    display: grid;
    gap: 0;
  }

  .academy-nav li {
    border-bottom: 1px solid var(--academy-border);
  }

  .academy-nav a {
    display: block;
    padding: 15px 4px;
  }

  .academy-nav a::after {
    display: none;
  }

  .academy-hero {
    padding: 92px 0 78px;
  }

  .hero-content {
    text-align: center;
    margin-inline: auto;
  }

  .hero-content p {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .search-wrapper input {
    min-height: 62px;
    padding-right: 132px;
  }

  .search-wrapper button {
    min-width: 118px;
    min-height: 48px;
  }

  .article-header {
    padding-top: 58px;
  }

  .article-content {
    padding: 30px;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .featured-side {
    grid-template-columns: 1fr;
  }

  .footer-container {
    gap: 34px;
  }
}

/* ==========================================================================
   35. TELEFON
   ========================================================================== */

@media (max-width: 640px) {
  .container,
  .academy-container,
  .footer-container,
  .footer-bottom {
    width: min(100% - 28px, var(--academy-container));
  }

  body {
    font-size: 15px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .category-grid,
  .post-grid,
  .related-grid,
  .why-grid,
  .stats-grid,
  .footer-container,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .academy-hero {
    padding: 76px 0 64px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-buttons,
  .academy-buttons {
    flex-direction: column;
  }

  .hero-buttons a,
  .academy-buttons a {
    width: 100%;
  }

  .academy-search {
    padding: 48px 0;
  }

  .search-wrapper {
    display: grid;
    gap: 12px;
  }

  .search-wrapper input {
    min-height: 56px;
    padding: 0 18px;
  }

  .search-wrapper button {
    position: static;
    width: 100%;
    min-height: 52px;
  }

  .featured-card,
  .featured-card img {
    min-height: 420px;
  }

  .featured-side .featured-card,
  .featured-side .featured-card img {
    min-height: 320px;
  }

  .featured-card__content,
  .featured-side .featured-card__content {
    padding: 24px;
  }

  .post-card img {
    height: 220px;
  }

  .roadmap::before {
    left: 19px;
  }

  .road-item {
    padding-left: 58px;
  }

  .road-number {
    width: 42px;
    height: 42px;
    border-width: 4px;
    font-size: 16px;
  }

  .road-content {
    padding: 24px;
  }

  .article-layout {
    padding: 42px 0 72px;
  }

  .article-content {
    padding: 24px 20px;
    border-radius: var(--academy-radius);
  }

  .article-content p,
  .article-content li {
    font-size: 17px;
  }

  .article-content h2 {
    margin-top: 40px;
  }

  .article-content table {
    min-width: 620px;
  }

  .author-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-box img {
    margin: 0 auto;
  }

  .author-social {
    justify-content: center;
  }

  .share-box {
    align-items: stretch;
  }

  .share-box strong {
    width: 100%;
  }

  .academy-cta {
    padding: 78px 0;
  }

  .academy-cta-box p {
    font-size: 17px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .back-to-top {
    right: 18px;
    bottom: 82px;
    width: 44px;
    height: 44px;
  }

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

  .footer-logo {
    margin-inline: auto;
  }
}

/* ==========================================================================
   36. KÜÇÜK TELEFON
   ========================================================================== */

@media (max-width: 420px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .post-body h2,
  .post-body h3,
  .category-content h3,
  .road-content h3 {
    font-size: 21px;
  }

  .featured-card__content h2 {
    font-size: 29px;
  }

  .article-header h1 {
    font-size: 34px;
  }

  .article-content {
    padding: 22px 16px;
  }

  .faq-list summary {
    padding: 19px 58px 19px 18px;
    font-size: 16px;
  }

  .faq-list summary::after {
    right: 16px;
  }

  .faq-list details p {
    padding: 0 18px 20px;
  }
}

/* ==========================================================================
   37. YAZDIRMA
   ========================================================================== */

@media print {
  .academy-header,
  .academy-nav,
  .breadcrumb,
  .sidebar,
  .share-box,
  .related-posts,
  .academy-cta,
  .site-footer,
  .whatsapp-float,
  .back-to-top,
  .reading-progress,
  .academy-search {
    display: none !important;
  }

  body {
    color: #000000;
    background: #ffffff;
  }

  .container,
  .academy-container {
    width: 100%;
  }

  .article-layout {
    display: block;
    padding: 0;
  }

  .article-content {
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .featured-image {
    width: 100%;
    box-shadow: none;
  }

  .article-content a {
    color: #000000;
    text-decoration: none;
  }
}

/* ==========================================================================
   38. ORTAK BİLEŞEN ONARIMLARI
   ========================================================================== */

.source-box {
  margin-top: 42px;
  padding: 24px 26px;
  background: var(--academy-surface-alt);
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius);
}

.source-box h2,
.source-box h3 {
  margin: 0 0 14px;
  color: var(--academy-secondary);
  font-size: 21px;
}

.source-box ul {
  margin: 0;
  padding-left: 20px;
}

.source-box li {
  margin-bottom: 9px;
  font-size: 15px;
}

.source-box li:last-child {
  margin-bottom: 0;
}

.article-tags a,
.share-box a,
.author-social a,
.sidebar-widget .cta-button,
.sidebar-widget .secondary-button {
  text-decoration: none !important;
}

.sidebar-widget .cta-button {
  color: #ffffff;
}

.sidebar-widget .cta-button:hover {
  color: #ffffff;
}

.sidebar-cta .secondary-button {
  color: var(--academy-secondary);
}

[hidden] {
  display: none !important;
}

.table-scroll {
  -webkit-overflow-scrolling: touch;
}

.academy-logo img,
.footer-logo,
.author-box img {
  object-position: center;
}

body.fg-academy-home {
  color-scheme: light;
}


/* ==========================================================================
   38. BLOG ANA SAYFA — YENİ PROFESYONEL TASARIM
   ========================================================================== */

body.fg-academy-home {
  --fg-home-navy: #071a2f;
  --fg-home-navy-2: #0d2b4b;
  --fg-home-navy-3: #163d64;
  --fg-home-gold: #f5a800;
  --fg-home-gold-light: #ffc33d;
  --fg-home-ink: #13233a;
  --fg-home-muted: #607086;
  --fg-home-soft: #f3f6fa;
  --fg-home-line: #e3e8ef;
  --fg-home-white: #ffffff;
  background: #ffffff;
}

body.fg-academy-home .academy-header {
  border-bottom-color: rgba(7, 26, 47, 0.09);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 24px rgba(7, 26, 47, 0.05);
}

body.fg-academy-home .academy-logo img {
  max-height: 52px;
}

body.fg-academy-home .academy-nav a {
  color: #1b2b42;
}

body.fg-academy-home .academy-nav a:hover,
body.fg-academy-home .academy-nav a.active,
body.fg-academy-home .academy-nav a[aria-current="page"] {
  color: #c77f00;
}

body.fg-academy-home .breadcrumb {
  position: relative;
  z-index: 2;
  padding: 14px 0;
  background: #ffffff;
}

.fg-home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0 34px;
  color: #ffffff;
  background:
    linear-gradient(103deg, rgba(4, 19, 36, 0.98) 0%, rgba(7, 33, 60, 0.94) 53%, rgba(7, 33, 60, 0.72) 100%),
    url("/img/yatirim-rehberi.jpg") center / cover no-repeat;
}

.fg-home-hero::before,
.fg-home-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
  border-radius: 50%;
}

.fg-home-hero::before {
  width: 520px;
  height: 520px;
  top: -310px;
  right: 4%;
  background: radial-gradient(circle, rgba(245, 168, 0, 0.34), transparent 68%);
}

.fg-home-hero::after {
  width: 420px;
  height: 420px;
  bottom: -290px;
  left: -150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.fg-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.fg-home-hero__content {
  max-width: 760px;
}

.fg-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.fg-home-eyebrow::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--fg-home-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(245, 168, 0, 0.16);
}

.fg-home-hero__actions {
  margin-top: 30px;
}

.fg-home-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.fg-home-button:hover {
  transform: translateY(-2px);
}

.fg-home-button--gold {
  color: #14213d;
  background: linear-gradient(135deg, var(--fg-home-gold-light), var(--fg-home-gold));
  box-shadow: 0 15px 34px rgba(245, 168, 0, 0.26);
}

.fg-home-button--gold:hover {
  box-shadow: 0 20px 42px rgba(245, 168, 0, 0.34);
}

.fg-home-button--glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.fg-home-button--glass:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.fg-home-button--navy {
  color: #ffffff;
  background: var(--fg-home-navy);
  box-shadow: 0 12px 28px rgba(7, 26, 47, 0.17);
}

.fg-home-button--outline {
  color: var(--fg-home-navy);
  background: #ffffff;
  border-color: #ced7e2;
}

.fg-home-button--outline:hover {
  color: #a36a00;
  border-color: var(--fg-home-gold);
}

.fg-home-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.fg-home-hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.91rem;
  font-weight: 650;
}

.fg-home-hero__checks li::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  content: "✓";
  color: var(--fg-home-gold-light);
  background: rgba(245, 168, 0, 0.13);
  border-radius: 50%;
  font-weight: 900;
}

.fg-home-search-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  color: var(--fg-home-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.fg-home-search-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--fg-home-gold), #ffd56a 55%, var(--fg-home-navy));
}

.fg-home-search-card__head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
}

.fg-home-search-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #9b6500;
  background: #fff3d5;
  border-radius: 15px;
}

.fg-home-search-card__icon svg {
  width: 25px;
  height: 25px;
}

.fg-home-search-card__head span:not(.fg-home-search-card__icon) {
  display: block;
  color: #a16b05;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fg-home-search-card h2 {
  margin: 4px 0 0;
  color: var(--fg-home-ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.fg-home-search-card > p {
  margin: 18px 0 0;
  color: var(--fg-home-muted);
  line-height: 1.65;
}

.fg-home-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  margin-top: 23px;
  padding: 7px;
  background: #ffffff;
  border: 1px solid #d9e0e9;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.08);
}

.fg-home-search__field {
  position: relative;
  min-width: 0;
}

.fg-home-search__field svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 21px;
  height: 21px;
  color: #8794a6;
  transform: translateY(-50%);
  pointer-events: none;
}

.fg-home-search input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px 12px 47px;
  color: var(--fg-home-ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.fg-home-search input::placeholder {
  color: #8794a6;
  opacity: 1;
}

.fg-home-search input:focus-visible {
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(245, 168, 0, 0.22);
}

.fg-home-search button {
  min-width: 104px;
  min-height: 52px;
  padding: 12px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--fg-home-navy-2), var(--fg-home-navy));
  border: 0;
  border-radius: 11px;
  box-shadow: 0 10px 22px rgba(8, 26, 47, 0.18);
  font-weight: 850;
}

.fg-home-search button:hover {
  background: var(--fg-home-navy-3);
}

.fg-home-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.fg-home-search-tags a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  color: #4d5d73;
  background: #f5f7fa;
  border: 1px solid #e2e7ed;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
}

.fg-home-search-tags a:hover {
  color: #986200;
  background: #fff7e4;
  border-color: #e9bd60;
}

.fg-home-search-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid #e7ebf0;
}

.fg-home-search-card__stats strong,
.fg-home-search-card__stats span {
  display: block;
}

.fg-home-search-card__stats strong {
  color: var(--fg-home-ink);
  font-size: 1.3rem;
  line-height: 1;
}

.fg-home-search-card__stats span {
  margin-top: 5px;
  color: #758195;
  font-size: 0.72rem;
  line-height: 1.35;
}

.fg-home-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(44px, 6vw, 72px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.fg-home-trust-item {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 13px;
  padding: 19px;
}

.fg-home-trust-item + .fg-home-trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.fg-home-trust-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--fg-home-gold-light);
  background: rgba(245, 168, 0, 0.10);
  border-radius: 12px;
}

.fg-home-trust-item svg {
  width: 25px;
  height: 25px;
}

.fg-home-trust-item strong,
.fg-home-trust-item small {
  display: block;
}

.fg-home-trust-item strong {
  color: #ffffff;
  font-size: 0.91rem;
}

.fg-home-trust-item small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  line-height: 1.4;
}

.fg-home-section {
  padding: clamp(74px, 8vw, 112px) 0;
}

.fg-home-section--white {
  background: #ffffff;
}

.fg-home-section--soft {
  background:
    radial-gradient(circle at 8% 5%, rgba(245, 168, 0, 0.09), transparent 24%),
    var(--fg-home-soft);
}

.fg-home-section--dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 8%, rgba(245, 168, 0, 0.17), transparent 25%),
    linear-gradient(135deg, #071a2f, #102f50);
}

.fg-home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.46fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 39px;
}

.fg-home-section-head > div > span,
.fg-home-section-title > span,
.fg-home-final-cta__box > div > span {
  display: inline-flex;
  color: #a66b00;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fg-home-section-head h2,
.fg-home-section-title h2,
.fg-home-final-cta h2 {
  color: var(--fg-home-ink);
  letter-spacing: -0.035em;
}

.fg-home-section-head h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
}

.fg-home-section-head > p {
  margin: 0;
  color: var(--fg-home-muted);
  line-height: 1.72;
}

.fg-home-section-head--light h2 {
  color: #ffffff;
}

.fg-home-section-head--light > div > span {
  color: #ffc85a;
}

.fg-home-section-head--light > p {
  color: rgba(255, 255, 255, 0.70);
}

.fg-home-section-title {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.fg-home-section-title h2 {
  margin: 12px 0 15px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
}

.fg-home-section-title p {
  margin: 0;
  color: var(--fg-home-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.fg-home-centers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}

.fg-home-center-card {
  position: relative;
  display: flex;
  min-height: 270px;
  overflow: hidden;
  flex-direction: column;
  padding: 27px;
  color: var(--fg-home-ink);
  background: #ffffff;
  border: 1px solid var(--fg-home-line);
  border-radius: 20px;
  box-shadow: 0 12px 38px rgba(8, 26, 47, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.fg-home-center-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: var(--fg-accent);
}

.fg-home-center-card::after {
  position: absolute;
  width: 148px;
  height: 148px;
  top: -78px;
  right: -66px;
  content: "";
  background: var(--fg-soft);
  border-radius: 50%;
  transition: transform 250ms ease;
}

.fg-home-center-card:hover {
  border-color: var(--fg-accent);
  box-shadow: 0 24px 62px rgba(8, 26, 47, 0.12);
  transform: translateY(-7px);
}

.fg-home-center-card:hover::after {
  transform: scale(1.16);
}

.fg-home-center-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.fg-home-center-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  color: var(--fg-accent);
  background: var(--fg-soft);
  border-radius: 15px;
}

.fg-home-center-card__icon svg {
  width: 28px;
  height: 28px;
}

.fg-home-center-card__count {
  position: relative;
  z-index: 1;
  padding: 7px 10px;
  color: #647188;
  background: #f4f6f9;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.fg-home-center-card h3 {
  margin: 22px 0 10px;
  color: var(--fg-home-ink);
  font-size: 1.28rem;
  line-height: 1.28;
}

.fg-home-center-card p {
  margin: 0;
  color: var(--fg-home-muted);
  line-height: 1.65;
}

.fg-home-center-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--fg-accent);
  font-size: 0.87rem;
  font-weight: 850;
}

.fg-home-center-card__link span {
  transition: transform 180ms ease;
}

.fg-home-center-card:hover .fg-home-center-card__link span {
  transform: translateX(4px);
}

.fg-home-start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.fg-home-start-card {
  position: relative;
  display: flex;
  min-height: 300px;
  overflow: hidden;
  flex-direction: column;
  padding: 25px;
  color: var(--fg-home-ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #dfe5ec;
  border-radius: 19px;
  box-shadow: 0 10px 32px rgba(8, 26, 47, 0.06);
  transition:
    transform 210ms ease,
    box-shadow 210ms ease,
    border-color 210ms ease;
}

.fg-home-start-card:hover {
  border-color: #deb04e;
  box-shadow: 0 22px 52px rgba(8, 26, 47, 0.11);
  transform: translateY(-6px);
}

.fg-home-start-card__number {
  position: absolute;
  top: 17px;
  right: 19px;
  color: #e1e6ec;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.fg-home-start-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: #fff5dd;
  border-radius: 15px;
  font-size: 25px;
}

.fg-home-start-card h3 {
  margin: 24px 0 11px;
  color: var(--fg-home-ink);
  font-size: 1.19rem;
  line-height: 1.3;
}

.fg-home-start-card p {
  margin: 0;
  color: var(--fg-home-muted);
  line-height: 1.65;
}

.fg-home-start-card > span:last-child {
  margin-top: auto;
  padding-top: 22px;
  color: #a66b00;
  font-size: 0.86rem;
  font-weight: 850;
}

.fg-home-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 20px;
}

.fg-home-featured-main,
.fg-home-featured-small {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.19);
}

.fg-home-featured-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  min-height: 510px;
}

.fg-home-featured-main__media {
  min-height: 510px;
  overflow: hidden;
}

.fg-home-featured-main__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.fg-home-featured-main:hover .fg-home-featured-main__media img {
  transform: scale(1.04);
}

.fg-home-featured-main__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
}

.fg-home-featured-main__body > span,
.fg-home-featured-small > div > span {
  color: #ffc85a;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fg-home-featured-main h3 {
  margin: 14px 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.fg-home-featured-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.fg-home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: #ffc85a;
  font-weight: 850;
}

.fg-home-featured-side {
  display: grid;
  gap: 20px;
}

.fg-home-featured-small {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 245px;
}

.fg-home-featured-small__media {
  min-height: 245px;
  overflow: hidden;
}

.fg-home-featured-small__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fg-home-featured-small > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 23px;
}

.fg-home-featured-small h3 {
  margin: 9px 0 10px;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.28;
}

.fg-home-featured-small p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  line-height: 1.55;
}

.fg-home-featured-small > div > a:last-child {
  margin-top: 15px;
  color: #ffc85a;
  font-size: 0.83rem;
  font-weight: 850;
}

.fg-home-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}

.fg-home-post-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--fg-home-line);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(8, 26, 47, 0.07);
  transition:
    transform 210ms ease,
    box-shadow 210ms ease,
    border-color 210ms ease;
}

.fg-home-post-card:hover {
  border-color: #d9ab45;
  box-shadow: 0 24px 56px rgba(8, 26, 47, 0.12);
  transform: translateY(-7px);
}

.fg-home-post-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef2f6;
}

.fg-home-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 440ms ease;
}

.fg-home-post-card:hover .fg-home-post-card__media img {
  transform: scale(1.045);
}

.fg-home-post-card__media > span {
  position: absolute;
  bottom: 13px;
  left: 13px;
  padding: 7px 11px;
  color: #ffffff;
  background: rgba(7, 26, 47, 0.88);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.fg-home-post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.fg-home-post-card h3 {
  margin: 0 0 11px;
  color: var(--fg-home-ink);
  font-size: 1.2rem;
  line-height: 1.32;
}

.fg-home-post-card h3 a:hover {
  color: #a66b00;
}

.fg-home-post-card p {
  margin: 0;
  color: var(--fg-home-muted);
  line-height: 1.62;
}

.fg-home-post-card__body > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 19px;
  color: #8190a2;
  font-size: 0.76rem;
}

.fg-home-center-actions {
  justify-content: center;
  margin-top: 38px;
}

.fg-home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.fg-home-why-grid article {
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #dfe5ec;
  border-radius: 18px;
}

.fg-home-why-grid article > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #d7a33d;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}

.fg-home-why-grid h3 {
  margin: 0 0 10px;
  color: var(--fg-home-ink);
  font-size: 1.13rem;
}

.fg-home-why-grid p {
  margin: 0;
  color: var(--fg-home-muted);
  line-height: 1.65;
}

.fg-home-final-cta {
  padding: clamp(72px, 8vw, 104px) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 168, 0, 0.24), transparent 31%),
    linear-gradient(135deg, #071a2f, #11395f);
}

.fg-home-final-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.fg-home-final-cta__box > div > span {
  color: #ffc85a;
}

.fg-home-final-cta h2 {
  max-width: 760px;
  margin: 12px 0 15px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
}

.fg-home-final-cta p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.fg-home-final-cta__actions {
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .fg-home-hero__grid {
    grid-template-columns: 1fr;
  }

  .fg-home-search-card {
    max-width: 780px;
  }

  .fg-home-centers,
  .fg-home-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fg-home-start-grid,
  .fg-home-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fg-home-featured {
    grid-template-columns: 1fr;
  }

  .fg-home-featured-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fg-home-final-cta__box {
    grid-template-columns: 1fr;
  }

  .fg-home-final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  body.fg-academy-home .academy-nav {
    background: #ffffff;
  }

  body.fg-academy-home .academy-nav a {
    color: #1b2b42;
  }

  .fg-home-hero {
    padding-top: 64px;
  }

  .fg-home-trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fg-home-trust-item + .fg-home-trust-item {
    border-left: 0;
  }

  .fg-home-trust-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .fg-home-trust-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .fg-home-section-head {
    grid-template-columns: 1fr;
  }

  .fg-home-featured-main {
    grid-template-columns: 1fr;
  }

  .fg-home-featured-main__media {
    min-height: 360px;
  }

  .fg-home-featured-main {
    min-height: auto;
  }

  .fg-home-featured-small {
    grid-template-columns: 130px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .fg-home-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .fg-home-hero__actions,
  .fg-home-center-actions,
  .fg-home-final-cta__actions {
    display: grid;
  }

  .fg-home-button {
    width: 100%;
  }

  .fg-home-search {
    grid-template-columns: 1fr;
  }

  .fg-home-search button {
    width: 100%;
  }

  .fg-home-search-card__stats {
    grid-template-columns: 1fr 1fr;
  }

  .fg-home-trust-bar,
  .fg-home-centers,
  .fg-home-start-grid,
  .fg-home-featured-side,
  .fg-home-post-grid,
  .fg-home-why-grid {
    grid-template-columns: 1fr;
  }

  .fg-home-trust-item:nth-child(even) {
    border-left: 0;
  }

  .fg-home-trust-item + .fg-home-trust-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .fg-home-center-card {
    min-height: 250px;
  }

  .fg-home-featured-small {
    grid-template-columns: 1fr;
  }

  .fg-home-featured-small__media {
    min-height: 220px;
  }

  .fg-home-featured-main__media {
    min-height: 280px;
  }

  .fg-home-final-cta__box {
    padding: 27px 22px;
  }
}

@media (max-width: 430px) {
  .fg-home-search-card {
    padding: 23px 18px;
    border-radius: 18px;
  }

  .fg-home-search-card__head {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .fg-home-search-card__icon {
    width: 44px;
    height: 44px;
  }

  .fg-home-search-card__stats {
    grid-template-columns: 1fr;
  }

  .fg-home-section-head h2,
  .fg-home-section-title h2,
  .fg-home-final-cta h2 {
    font-size: 2rem;
  }

  .fg-home-center-card,
  .fg-home-start-card,
  .fg-home-post-card__body {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fg-home-button,
  .fg-home-center-card,
  .fg-home-center-card::after,
  .fg-home-center-card__link span,
  .fg-home-start-card,
  .fg-home-featured-main__media img,
  .fg-home-post-card,
  .fg-home-post-card__media img {
    transition: none;
  }
}

/* ==========================================================================
   40. AKADEMİ ARAMA SAYFASI — PROFESYONEL TASARIM
   ========================================================================== */

body.fg-search-page {
  --fg-search-navy: #071a2f;
  --fg-search-navy-2: #0d2d4d;
  --fg-search-gold: #f5a800;
  --fg-search-gold-light: #ffc548;
  --fg-search-ink: #14213d;
  --fg-search-muted: #627187;
  --fg-search-soft: #f3f6fa;
  color-scheme: light;
  background: #ffffff;
}

body.fg-search-page .academy-header {
  border-bottom-color: rgba(7, 26, 47, 0.09);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 24px rgba(7, 26, 47, 0.05);
}

body.fg-search-page .academy-nav a {
  color: #1b2b42;
}

body.fg-search-page .academy-nav a:hover,
body.fg-search-page .academy-nav a.active,
body.fg-search-page .academy-nav a[aria-current="page"] {
  color: #b87800;
}

body.fg-search-page .breadcrumb {
  position: relative;
  z-index: 2;
  padding: 14px 0;
  background: #ffffff;
}

.fg-search-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 114px) 0 clamp(66px, 8vw, 94px);
  color: #ffffff;
  background:
    linear-gradient(105deg, rgba(4, 19, 36, 0.98), rgba(7, 33, 60, 0.91)),
    url("/img/yatirim-rehberi.jpg") center / cover no-repeat;
}

.fg-search-hero::before,
.fg-search-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.fg-search-hero::before {
  width: 520px;
  height: 520px;
  top: -320px;
  right: 2%;
  background: radial-gradient(circle, rgba(245, 168, 0, 0.34), transparent 68%);
}

.fg-search-hero::after {
  width: 420px;
  height: 420px;
  bottom: -310px;
  left: -160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.fg-search-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 970px;
  margin: 0 auto;
  text-align: center;
}

.fg-search-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  padding: 9px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.fg-search-eyebrow::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--fg-search-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(245, 168, 0, 0.16);
}

.fg-search-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(2.65rem, 5.4vw, 5.35rem);
  line-height: 0.99;
  letter-spacing: -0.047em;
}

.fg-search-hero h1 strong {
  display: block;
  margin-top: 8px;
  color: var(--fg-search-gold-light);
  font-weight: inherit;
}

.fg-search-hero__inner > p {
  max-width: 760px;
  margin: 25px auto 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.fg-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 850px;
  margin: 34px auto 0;
  padding: 8px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.fg-search-form__field {
  position: relative;
  min-width: 0;
}

.fg-search-form__field svg {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 23px;
  height: 23px;
  color: #8794a5;
  transform: translateY(-50%);
  pointer-events: none;
}

.fg-search-form input {
  width: 100%;
  min-height: 58px;
  padding: 13px 16px 13px 54px;
  color: var(--fg-search-ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1rem;
}

.fg-search-form input::placeholder {
  color: #8794a5;
  opacity: 1;
}

.fg-search-form input:focus-visible {
  border-radius: 11px;
  box-shadow: 0 0 0 3px rgba(245, 168, 0, 0.23);
}

.fg-search-form button {
  display: inline-flex;
  min-width: 150px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--fg-search-navy-2), var(--fg-search-navy));
  border: 0;
  border-radius: 12px;
  box-shadow: 0 12px 27px rgba(7, 26, 47, 0.22);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fg-search-form button:hover {
  box-shadow: 0 16px 34px rgba(7, 26, 47, 0.28);
  transform: translateY(-1px);
}

.fg-search-popular {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 19px;
}

.fg-search-popular > span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 750;
}

.fg-search-popular a {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.83);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.81rem;
  font-weight: 750;
  backdrop-filter: blur(9px);
}

.fg-search-popular a:hover {
  color: #14213d;
  background: var(--fg-search-gold-light);
  border-color: var(--fg-search-gold-light);
}

.fg-search-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  margin: 34px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.fg-search-hero__stats > div {
  padding: 17px 15px;
}

.fg-search-hero__stats > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.fg-search-hero__stats strong,
.fg-search-hero__stats span {
  display: block;
}

.fg-search-hero__stats strong {
  color: var(--fg-search-gold-light);
  font-size: 1.45rem;
  line-height: 1;
}

.fg-search-hero__stats span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 700;
}

.fg-search-content {
  padding: clamp(70px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 7% 2%, rgba(245, 168, 0, 0.08), transparent 24%),
    #f5f7fa;
}

.fg-search-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.43fr) minmax(0, 1fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 37px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e1e6ed;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(8, 26, 47, 0.07);
}

.fg-search-toolbar__title > span {
  color: #a66b00;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fg-search-toolbar__title h2 {
  margin: 7px 0 7px;
  color: var(--fg-search-ink);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.fg-search-toolbar__title p {
  margin: 0;
  color: var(--fg-search-muted);
  font-size: 0.9rem;
}

.fg-search-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.fg-search-filters button {
  min-height: 40px;
  padding: 8px 14px;
  color: #536176;
  background: #f5f7fa;
  border: 1px solid #dfe5ec;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.fg-search-filters button:hover {
  color: #936000;
  background: #fff7e5;
  border-color: #e4b854;
  transform: translateY(-1px);
}

.fg-search-filters button[aria-pressed="true"] {
  color: #ffffff;
  background: var(--fg-search-navy);
  border-color: var(--fg-search-navy);
  box-shadow: 0 8px 20px rgba(7, 26, 47, 0.17);
}

.fg-search-results-grid {
  align-items: stretch;
}

body.fg-search-page .fg-search-results-grid .post-card {
  background: #ffffff;
  border-color: #e1e6ed;
  box-shadow: 0 12px 36px rgba(8, 26, 47, 0.07);
}

body.fg-search-page .fg-search-results-grid .post-card:hover {
  border-color: #d7a33d;
  box-shadow: 0 24px 58px rgba(8, 26, 47, 0.12);
}

body.fg-search-page .fg-search-results-grid .post-card__media {
  background: #f0f3f7;
}

body.fg-search-page .fg-search-results-grid .post-card__media img {
  object-fit: contain;
  background: #f0f3f7;
}

.fg-search-empty {
  max-width: 720px;
  margin: 30px auto;
  padding: 46px 30px;
  text-align: center;
  background: #ffffff;
  border: 1px dashed #cdd6e1;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(8, 26, 47, 0.06);
}

.fg-search-empty > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 18px;
  color: #a66b00;
  background: #fff3d3;
  border-radius: 18px;
  font-size: 2rem;
  font-weight: 900;
}

.fg-search-empty h2 {
  margin: 0 0 12px;
  color: var(--fg-search-ink);
  font-size: 1.7rem;
}

.fg-search-empty p {
  max-width: 570px;
  margin: 0 auto 22px;
  color: var(--fg-search-muted);
  line-height: 1.7;
}

.fg-search-empty button {
  min-height: 46px;
  padding: 11px 18px;
  color: #ffffff;
  background: var(--fg-search-navy);
  border: 0;
  border-radius: 11px;
  font-weight: 850;
}

.fg-search-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}

.fg-search-pagination button,
.fg-search-pagination span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  color: var(--fg-search-ink);
  background: #ffffff;
  border: 1px solid #dce3eb;
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(8, 26, 47, 0.05);
  font-weight: 800;
}

.fg-search-pagination button:hover:not(:disabled) {
  color: #ffffff;
  background: var(--fg-search-navy-2);
  border-color: var(--fg-search-navy-2);
}

.fg-search-pagination button.is-current {
  color: #14213d;
  background: var(--fg-search-gold);
  border-color: var(--fg-search-gold);
}

.fg-search-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.fg-search-pagination span {
  min-width: 28px;
  color: #8a96a6;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

body.fg-search-page .category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.fg-search-page .category-card {
  min-height: 225px;
}

@media (max-width: 980px) {
  .fg-search-toolbar {
    grid-template-columns: 1fr;
  }

  .fg-search-filters {
    justify-content: flex-start;
  }

  body.fg-search-page .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.fg-search-page .academy-nav {
    background: #ffffff;
  }

  body.fg-search-page .academy-nav a {
    color: #1b2b42;
  }
}

@media (max-width: 640px) {
  .fg-search-hero {
    padding-top: 62px;
  }

  .fg-search-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.65rem);
  }

  .fg-search-form {
    grid-template-columns: 1fr;
  }

  .fg-search-form button {
    width: 100%;
  }

  .fg-search-popular > span {
    width: 100%;
    justify-content: center;
  }

  .fg-search-hero__stats {
    grid-template-columns: 1fr;
  }

  .fg-search-hero__stats > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .fg-search-toolbar {
    padding: 22px;
  }

  .fg-search-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 6px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .fg-search-filters button {
    flex: 0 0 auto;
  }

  body.fg-search-page .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .fg-search-form {
    padding: 7px;
    border-radius: 15px;
  }

  .fg-search-form input {
    min-height: 54px;
    padding-left: 49px;
    font-size: 0.94rem;
  }

  .fg-search-form button {
    min-height: 52px;
  }

  .fg-search-content {
    padding-top: 58px;
  }

  .fg-search-pagination button {
    min-width: 40px;
    min-height: 40px;
    padding: 8px 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fg-search-form button,
  .fg-search-filters button {
    transition: none;
  }
}

/* ========================================================================== 
   BLOG HABER DETAY SAYFASI — OKUNABİLİR, ORTALANMIŞ İÇERİK
   ========================================================================== */

body.fg-blog-detail {
  overflow-x: hidden;
  background: #ffffff;
}

body.fg-blog-detail .breadcrumb {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

body.fg-blog-detail #main-content {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
  padding: 48px 0 88px;
}

body.fg-blog-detail .blog-article {
  width: 100%;
  min-width: 0;
}

body.fg-blog-detail .blog-header {
  width: min(100%, 980px);
  margin: 0 auto 36px;
}

body.fg-blog-detail .blog-category-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  color: #171717;
  background: #f5b800;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

body.fg-blog-detail .blog-header h1 {
  margin: 0 0 20px;
  color: #111827;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

body.fg-blog-detail .blog-summary {
  margin: 0 0 20px;
  color: #4b5563;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

body.fg-blog-detail .blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  color: #6b7280;
  font-size: 0.9rem;
}

body.fg-blog-detail .blog-cover-wrapper {
  width: 100%;
  margin: 0 auto;
}

body.fg-blog-detail .blog-cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

body.fg-blog-detail .blog-cover-wrapper figcaption {
  margin-top: 9px;
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.5;
}

body.fg-blog-detail .blog-content {
  width: min(100%, 920px);
  margin: 46px auto 0;
  color: #252a32;
  font-size: 1.06rem;
  line-height: 1.85;
}

body.fg-blog-detail .blog-content p {
  margin: 0 0 1.35em;
}

body.fg-blog-detail .blog-content h2,
body.fg-blog-detail .blog-content h3,
body.fg-blog-detail .blog-content h4 {
  color: #111827;
  line-height: 1.25;
  text-wrap: balance;
}

body.fg-blog-detail .blog-content h2 {
  margin: 2.2em 0 0.7em;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

body.fg-blog-detail .blog-content h3 {
  margin: 1.8em 0 0.65em;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

body.fg-blog-detail .blog-content h4 {
  margin: 1.6em 0 0.6em;
  font-size: 1.2rem;
}

body.fg-blog-detail .info-box,
body.fg-blog-detail .warning-box,
body.fg-blog-detail .source-box,
body.fg-blog-detail .service-cta {
  margin: 30px 0;
  padding: 24px 26px;
  border-radius: 14px;
}

body.fg-blog-detail .blog-table-wrapper {
  width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
}

body.fg-blog-detail .blog-table-wrapper table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

body.fg-blog-detail .blog-table-wrapper th,
body.fg-blog-detail .blog-table-wrapper td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e5e7eb;
}

body.fg-blog-detail .blog-table-wrapper th {
  color: #111827;
  background: #fff7db;
}

body.fg-blog-detail .blog-table-wrapper tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 760px) {
  body.fg-blog-detail .breadcrumb,
  body.fg-blog-detail #main-content {
    width: min(100% - 28px, 1200px);
  }

  body.fg-blog-detail #main-content {
    padding: 30px 0 64px;
  }

  body.fg-blog-detail .blog-header {
    margin-bottom: 26px;
  }

  body.fg-blog-detail .blog-cover {
    border-radius: 10px;
  }

  body.fg-blog-detail .blog-content {
    margin-top: 32px;
    font-size: 1rem;
    line-height: 1.78;
  }

  body.fg-blog-detail .info-box,
  body.fg-blog-detail .warning-box,
  body.fg-blog-detail .source-box,
  body.fg-blog-detail .service-cta {
    padding: 20px 18px;
  }
}
