@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    button[type="submit"] {
        font-family: inherit;
        font-size: 16px;
    }
}
/* Neden Allianz? blok stili */
.allianz-why {
  margin: 24px 0;
}

.allianz-why h2 {
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1;
  margin: 0 0 12px;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-list li {
  position: relative;
  padding-left: 28px;
  margin: 0;
  line-height: 1.6;
}

/* Basit tik işareti */
.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(2px);
  font-weight: 800;
  /* Renk istersen marka rengine uyarlayabilirsin */
  color: #16a34a; /* yeşil */
}

.allianz {
    margin-top:30px
}
.acente-yazi {
    font-size:14px
}
.allianz-img {
   width: 15%;
}
.al-y {
    font-size:1.1rem;
    margin-bottom:20px;
    text-align: left !important;
}
.al-y p{
 padding-bottom:14px;
 line-height: 1.6;
}
.al-y b{
 color:#004a93;
}
.m-b {
    margin-bottom: 24px !important;
}
.beyaz {
    color:#0b0b0b !important;
    text-decoration: none !important;
}
.rbilisim {
    margin-top:8px;
}

.sk-logo {
    width: 280px;
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(
        135deg,
        #fff 0%,
        #fff 15%,
        #f6f8ff 35%,
        #f6f8ff 50%,
        #ecf7ff 70%,
        #ecf7ff 85%,
        #ecf7ff 100%
    );
    min-height: 100vh;
    overflow-x: hidden;
}
/* Animated background elements */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.shape {
    position: absolute;
    background: rgba(0, 74, 147, 0.1);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(35, 75, 255, 0.1);
}
.shape:nth-child(1) {
    width: 120px;
    height: 80px;
    border-radius: 15px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}
.shape:nth-child(2) {
    width: 90px;
    height: 140px;
    border-radius: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-20deg);
}
.shape:nth-child(3) {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(25deg);
}
.shape:nth-child(4) {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
    transform: rotate(-10deg);
}
.shape:nth-child(5) {
    width: 110px;
    height: 70px;
    border-radius: 14px;
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
    transform: rotate(30deg);
}
.shape:nth-child(6) {
    width: 95px;
    height: 95px;
    border-radius: 20px;
    top: 40%;
    left: 5%;
    animation-delay: 5s;
    transform: rotate(-15deg);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(var(--start-rotation, 0deg));
    }
    50% {
        transform: translateY(-20px)
            rotate(calc(var(--start-rotation, 0deg) + 180deg));
    }
}
/* Glass container styles */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.glass:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}
/* Header styles */
header {
    padding: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}
.logo {
    font-size: 32px;
    font-weight: bold;
    color: #0b0b0b;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}
.logo:hover .logo-icon svg {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: #0b0b0b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 24px 13px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
	border: 1px solid rgba(57, 57, 57, 0.2);
}
.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: #385997;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Page system */
.page {
    display: none;
    min-height: 100vh;
    padding: 40px 20px 20px;
}
.page.active {
    display: block;
}
/* Content wrapper to contain page content */
.content-wrapper {
    min-height: calc(100vh - 300px);
}
/* Home page styles */
.cus-card {
    padding: 40px 40px !important;
}
.blog-yazi {
    display: flex !important;
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 40px;
    margin-bottom: 40px;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.hero-content {
    text-align: left;
}
.hero h1 {
    font-size: 2.8rem;
    color: #004a93;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}
.hero p {
    font-size: 1.1rem;
    color: #0b0b0b;
    margin-bottom: 30px;
    line-height: 1.6;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: #0b0b0b;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
button[type="submit"] {
    font-family: inherit;
    font-size: 16px;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.feature-card {
    padding: 40px 30px;
    text-align: center;
    color: #0b0b0b;
}
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0b0b0b;
}
.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
/* About page styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}
.about-text {
    padding: 40px;
    color: #0b0b0b;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #0b0b0b
    ;
    margin-bottom: 20px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.stat-card {
    text-align: center;
    padding: 30px;
    color: #0b0b0b;
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #0b0b0b;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.stat-label {
    font-size: 1.1rem;
    color: #0b0b0b;
    margin-top: 10px;
}
/* Team section styles */
.team-section {
    margin-bottom: 60px;
}
.team-section h2 {
    font-size: 2.5rem;
    color: #0b0b0b;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-member {
    padding: 40px 30px;
    text-align: center;
    color: #0b0b0b;
    transition: all 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px);
}
.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.team-member:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}
.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #0b0b0b;
}
.team-member .role {
    font-size: 1rem;
    color: #0b0b0b;
    margin-bottom: 15px;
}
.team-member .bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #0b0b0b;
    margin-bottom: 20px;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b0b0b;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.team-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #0b0b0b;
}
/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.service-card {
    padding: 40px 30px;
    color: #0b0b0b;
    text-align: left;
}
.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(56, 89, 151, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}
.service-card h3 {
    font-size: 1.4rem;
    color: white;
}
.service-card p {
    color: #0b0b0b;
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
}
.service-features li {
    color: #0b0b0b;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0b0b0b;
}
/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.contact-map-section {
    margin-top: 40px;
}
.contact-form {
    padding: 40px;
}
.contact-form h2 {
    color: #0b0b0b;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: #0b0b0b;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #0b0b0b;
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.form-group textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.5;
}
.contact-info {
    padding: 40px;
    color: #0b0b0b;
}
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}
.contact-item-text h4 {
    color: #0b0b0b;
    margin-bottom: 5px;
}
.contact-item-text p {
    color:#0b0b0b;
}
.contact-map {
    padding: 40px;
    color: #0b0b0b;
    width: 100%;
}
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.map-container {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #0b0b0b;
    text-align: center;
}
.map-placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}
.map-placeholder p {
    margin: 8px 0;
    font-size: 16px;
}
.map-placeholder .address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.map-placeholder .integration-note {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 20px;
}
/* Footer styles */
#footer {
    margin-top: 60px;
    padding: 30px 0;
}
.footer-content {
    padding: 30px;
    text-align: center;
    color: #0b0b0b;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-weight: 700;
}
.footer-links a {
    color: #0b0b0b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 10px;
}
.footer-links a:hover {
    color: #0b0b0b;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.copyright {
    font-size: 14px;
    color: #0b0b0b;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}
.copyright a {
	color: #0b0b0b;
	text-decoration: none;
}
/* Responsive design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* Adjust padding for mobile */
    .page {
        padding: 30px 20px 20px;
    }
    .content-wrapper {
        min-height: auto;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .hero-content {
        text-align: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }
    .nav-links {
        gap: 15px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .nav-links a {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 200px;
        font-size: 14px;
        padding: 10px 20px;
    }
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-links {
        gap: 15px;
        flex-direction: column;
    }
    .footer-links a {
        display: block;
        text-align: center;
    }
    button[type="submit"] {
        width: 100%;
    }
    .map-container {
        height: 350px;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    .logo {
        font-size: 22px;
    }
}


/* KÜÇÜK, SABİT FAB */
.wa-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom)); /* iPhone çentik vb. için güvenli alan */
  z-index: 2147483000; /* çoğu çerez/sohbet katmanının üstünde */
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #25D366;
  color: #fff;
  text-decoration: none;

  height: 48px;                 /* öncekiye göre küçük */
  padding: 0 12px;              /* kompakt yatay boşluk */
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}

.wa-fab:hover { transform: translateY(-1px) scale(1.03); box-shadow: 0 10px 22px rgba(0,0,0,.22); }
.wa-fab:active { transform: translateY(0); }

.whatsapp-icon {
  width: 28px;
  height: 28px;
}

.wa-label {
  font: 600 13px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
  white-space: nowrap;
}

/* Mobilde sadece daire ikon (yer kaplamasın) */
@media (max-width: 600px) {
  .wa-fab {
    height: 54px;            /* parmak dostu */
    width: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .wa-label { display: none; }
  .wa-icon { width: 26px; height: 26px; }
}

/* Eğer sayfada başka sabit alt bar varsa, butonu biraz yukarı al */
.has-sticky-footer .wa-fab {
  bottom: calc(max(16px, env(safe-area-inset-bottom)) + 64px); /* alt bardan 64px yukarı */
}

/* Basit, temiz tipografi */
:root{
  --bg:rgba(0,0,0,0.1);
  --ink:#fff;
  --muted:#5e6470;
  --accent:#0ea5e9;          /* isteğe göre marka rengi */
  --accent-2:#25D366;        /* WhatsApp buton rengi */
  --card:rgba(0,0,0,0.1);
  --border:rgba(0,0,0,0.3);
}

.blog-wrap{
  display:block;
  background:var(--bg);
  padding:clamp(16px,3vw,32px);
}

.blog{
  max-width: 880px;
  margin: 0 auto;
  color: var(--ink);
  font: 400 16px/1.7 system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
}

/* Header */
.blog__eyebrow{
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  font-size: 12px;
  margin: 0 0 6px;
}

.blog__title{
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.25;
  margin: 0 0 10px;
}

.blog__intro{
  font-size: clamp(15px, 2.2vw, 18px);
  color: #0b0b0b;
  margin: 0 0 22px;
}

/* İçindekiler */
.blog__toc{
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 12px 0 18px;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom: 24px;
}
.blog__toc a{
  color: #0b0b0b;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.1);
  padding:6px 8px;
  border-radius: 4px;
}
.blog__toc a:hover{ color: #fff !important; }

/* Bölümler */
.blog__section{
  margin: 26px 0;
}
.blog__section h2{
  font-size: clamp(18px, 2.6vw, 26px);
  line-height: 1.25;
  margin: 0 0 10px;
  color:#0b0b0b;
}
.blog__section p{
  margin: 0 0 12px;
}

/* Listeler */
.blog__bullets{
  margin: 0;
  padding-left: 18px;
  color: #0b0b0b;
}
.blog__bullets li{
  margin: 6px 0;
  color:#0b0b0b;
}

/* Vurgulu kutu */
.blog__highlight{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(14px,2.5vw,18px);
}

/* Check simgeli liste (basit) */
.blog__checks{
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog__checks li{
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  color:#0b0b0b;
}
.blog__checks li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 800;
}

/* SEO tag'leri */
.blog__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0369a1;
  border: 1px solid #dbeafe;
}

/* CTA */
.blog__cta{
  margin: 28px 0 10px;
  padding: clamp(14px,2.5vw,18px);
  border: 1px dashed var(--border);
  border-radius: 12px;
  text-align: center;
  background: rgba(0,0,0,0.1);
}
.blog__cta h3{
  margin: 0 0 6px;
  font-size: clamp(17px, 2.4vw, 22px);
  color:#0b0b0b;
}
.blog__cta p{
  color: #0b0b0b;
  margin: 0 0 12px;
}
.cta-btn{
  display: inline-block;
  background: var(--accent-2);
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(37,211,102,.25);
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
}
.cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37,211,102,.35);
}

/* Footer */
.blog__footer{
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

/* Küçük ekran optimizasyonları */
@media (max-width: 640px){
  .blog__toc{
    gap: 10px;
  }
}
