body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.container {
	max-width: 1150px;
	margin: 0 auto;
	padding: 0 14px;
}
	

.col-md-8 {
    border: 2px solid #ddd; /* Çerçeve rengi */
    border-radius: 10px; /* Köşeleri yuvarlak yap */
    padding: 10px; /* İç boşluk */
	padding-bottom:20px;
    background-color: white; /* Arka plan rengi */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}



nav {
	background: linear-gradient(105deg, #333 20%, #FF4B2F 100%);
	color: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1000;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1150px;
	margin: 0 auto;
	padding: 0 8px;
    }

.logo img {
    width: 305px;
    height: 50px;
	margin: 10px 0 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (max-width: 380px) {
  .logo img {
    max-width: 280px;
  }
}

@media (max-width: 320px) {
  .logo img {
    max-width: 230px;
  }
}


.logo img:hover {
	transform: scale(1.03);
}

    .toggle {
      font-size: 28px;
      cursor: pointer;
      color: white;
      display: none;
      padding: 15px;
    }

    .desktop-menu {
      display: flex;
      flex-grow: 1;
      justify-content: center;
    }

    .menu {
      display: flex;
      gap: 3px;
      align-items: center;
    }

    .menu-item {
      position: relative;
    }

    .menu-item-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 10px;
      color: white;
      cursor: pointer;
      font-weight: 600;
      font-size: 18px;
      transition: all 0.3s ease;
      position: relative;
    }

    .menu-item-header span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .menu-item-header:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #4fc3f7;
    }

    .toggle-submenu {
      background: none;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
      padding: 6px 12px;
    }

    .submenu-toggle-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .submenu,
    .subsubmenu {
      display: block;
      position: absolute;
      background-color: #fff;
      top: 100%;
      left: 0;
      min-width: 240px;
      z-index: 1000;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px);
      transition: all 0.3s ease;
    }

    .subsubmenu {
      left: 100%;
      top: 0;
      border-radius: 0 8px 8px 8px;
    }

    .menu-item:hover > .submenu,
    .submenu li:hover > .subsubmenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .submenu a,
    .subsubmenu a {
      padding: 12px 20px;
      color: #333;
      display: block;
      text-decoration: none;
      transition: all 0.3s ease;
      font-weight: 600;
      font-size: 18px;
    }

    .submenu a:hover,
    .subsubmenu a:hover {
      background-color: #f0f7ff;
      color: #1e3c72;
      border-left: 3px solid #4fc3f7;
      padding-left: 25px;
    }

    .submenu li,
    .subsubmenu li {
      border-bottom: 1px solid #f0f0f0;
      position: relative;
    }

    .submenu li:last-child,
    .subsubmenu li:last-child {
      border-bottom: none;
    }

    .search-bar {
      position: relative;
      width: 180px;
    }

    .search-bar input {
      width: 100%;
      padding: 12px 20px;
      padding-right: 45px;
      border: none;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .search-bar input:focus {
      outline: none;
      background: white;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    }

.search-bar button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #2a5298;
  cursor: pointer;
  font-size: 24px; /* 👈 Büyüklük artırıldı */
  line-height: 1;
}

.sidebar {
    background: #ffffff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
    border-left: 4px solid #2ecc71;
    border-right: 2px solid #000;
    transition: all 0.3s ease;
}

.sidebar:hover {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    border-left-color: #17a2b8;
}

.sidebar-baslik {
    background: linear-gradient(105deg, #ea5009, #0090f7);
    color: white;
    padding: 12px 18px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.sidebar-test-kartlar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
}

.col-md-6, .col-md-8, .col-md-4, .col-md-3 {
  position: relative;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}

/* === Margin ve Padding Yardımcı Sınıflar === */
.mt-4 {margin-top: 1.5rem !important;}
.mt-3 { margin-top: 1rem !important; }
.mt-2 { margin-top: 0.75rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important;}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* === Bootstrap Button Yapısı (isteğe bağlı) === */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  background-color: #0056b3;
  border-color: #004085;
}

.test-mini-kart {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    border: 1px solid #ccc;
}

.test-mini-kart:hover {
    background: #e2f0ff;
    transform: translateX(2px);
}

.test-mini-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.test-mini-link i {
    color: #007bff;
}


.test-list li a {
    text-decoration: none;
    font-weight: bold;
    color: #444;
    transition: 0.3s;
}

.test-list li a:hover {
    color: #17a2b8;
}

.test-category {
    background: linear-gradient(135deg, #ff4b2b, #ff416c); /* kırmızı-mor degrade */
    color: white;
    padding: 4px 16px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.test-category::before {
    content: "📚";
    font-size: 24px;
}

footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

footer a{color: #169df7;}


.category-desc {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 25px;
}

.unit-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.unit-header {
    background: #17a2b8;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.unit-body {
    padding: 15px;
    text-align: center;
}

.unit-body p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
}

.unit-btn {
    display: inline-block;
    padding: 12px 18px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.unit-btn:hover {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


.no-units {
    font-size: 16px;
    font-weight: bold;
    color: #dc3545;
    text-align: center;
    margin-top: 20px;
}

.aciklama-kutu {
    background-color: #ffffff;
    padding: 12px;
    margin-top: 10px;
    border-radius: 10px;
    line-height: 1.8;
    font-size: 17px;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Başlıklar */
.aciklama-kutu h1 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #212529;
    border-top: 2px solid #17a2b8;
    padding-top: 10px;
}

.aciklama-kutu h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 25px 0 15px;
    color: #212529;
    border-left: 5px solid #17a2b8;
    padding-left: 10px;
}

.aciklama-kutu h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    color: #343a40;
}

.aciklama-kutu h4,
.aciklama-kutu h5,
.aciklama-kutu h6 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 18px;
    color: #495057;
}

/* Kalın yazılar */
.aciklama-kutu b,
.aciklama-kutu strong {
    color: #000;
    font-weight: bold;
}

/* Paragraflar */
.aciklama-kutu p {
    margin-bottom: 18px;
}

/* Listelemeler */
.aciklama-kutu ul,
.aciklama-kutu ol {
    padding-left: 25px;
    margin-bottom: 18px;
}

.aciklama-kutu li {
    margin-bottom: 8px;
}

/* Linkler */
.aciklama-kutu a {
    color: #007bff;
    text-decoration: underline;
}

.aciklama-kutu a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* ----------- Kategori Başlığı (Banner) ----------- */
.category-title {
    font-size: 22px;
    font-weight: bold;
    padding: 10px 15px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center; /* EKLENDİ */
    gap: 14px;
    margin-bottom: 15px;
}


.category-title i {
    font-size: 28px;
}

/* ----------- Kategori Kartı ----------- */
.kategori-kart-wrapper {
    margin-bottom: 10px;
}

.kategori-kart {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border: 1px solid #999;
    border-radius: 14px;
    padding: 16px 20px;
    text-decoration: none;
    gap: 16px;
    transition: all 0.3s ease;
    min-height: 75px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.kategori-kart:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    border-color: #4e54c8;
    transform: translateY(-3px);
}

.kategori-kart-icerik {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kategori-ikon {
    font-size: 24px;
    color: #ffc107;
}

.kategori-isim {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* ----------- Ünite Listesi (Yazı) ----------- */
.yazi-listesi {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.yazi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #ddd;
    border-left: 6px solid #00b4db;
    border-right: 2px solid #000;
    border-radius: 14px;
    padding: 14px 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.yazi-item:hover {
    border-left-color: #0074a2;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.yazi-item.alt-yazi {
    margin-left: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
    padding-left: 12px;
    border-radius: 4px;
}
.yazi-item.alt-alt-yazi {
    margin-left: 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
    padding-left: 12px;
    border-radius: 4px;
}


.alt-yazi.test-rozet {
    background: linear-gradient(135deg, #ffc, #ffc107);
    color: #212529;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.2);
    white-space: nowrap;
}


.yazi-info {
    display: flex;
    align-items: center;
    gap: 4px;
    max-width: 98%;
}

.yazi-icon {
    font-size: 22px;
    color: #17a2b8;
}

.yazi-link {
    font-size: 18px;
    font-weight: 600;
    color: #343a40;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.yazi-link:hover {
    color: #00b4db;
}

.test-rozet {
    background: linear-gradient(135deg, #ffd600, #ffc107);
    color: #212529;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.2);
    white-space: nowrap;
}

.benzer-konular-kutu {
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    border: 2px solid #007bff;
    border-radius: 14px;
    padding: 8px 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.benzer-konular-baslik {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.benzer-konular-listesi {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benzer-konular-listesi li {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 3px solid #007bff;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}

.benzer-konular-link {
    display: block;
    padding: 12px 14px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.benzer-konular-link i {
    color: #007bff;
    margin-right: 8px;
}

.benzer-konular-link:hover {
    background-color: #eaf4ff;
    color: #007bff;
}


.anasayfa-listesi {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.anasayfa-kart {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #007bff;
}

.anasayfa-kart:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-left-color: #6610f2;
}

.anasayfa-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.anasayfa-baslik {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.anasayfa-ikon {
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
}


.anasayfa-detay {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.anasayfa-unite {
    font-style: italic;
    color: #6c757d;
}

.anasayfa-test {
    background: linear-gradient(135deg, #00c9ff, #92fe9d);
    color: #1b1b1b;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.anasayfa-test:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}


.category-spacing {
    margin-bottom: 20px;
}

.kart-yazi {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 4px solid #007bff;
    border-right: 2px solid #000;
	transition: all 0.3s ease, transform 0.2s ease-in-out;
}

.kart-yazi:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border-left-color: #6610f2;
	transform: translateY(-6px) scale(1.02);
}

.kart-yazi-link {
    text-decoration: none;
    color: #212529;
    flex-grow: 1;
}

.kart-yazi-baslik {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* En fazla 2 satır gözüksün */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px; /* 2 satır yüksekliği kadar sabitle */
    line-height: 1.5;
}


.kart-unite {
    margin-top: 6px;
}

.kart-unite .unite-link {
    font-size: 14px;
    color: #aa1906;
    font-weight: 500;
    text-decoration: none;
}

.kart-unite .unite-link:hover {
    text-decoration: underline;
}


.breadcrumb-modern {
  position: relative;
  z-index: 1;
 background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.breadcrumb-modern ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-radius: 12px;
    margin: 0;
    font-size: 14px;
    gap: 6px;
}

.breadcrumb-modern ul li {
    display: flex;
    align-items: center;
    color: #085edd;
    position: relative;
}

.breadcrumb-modern ul li:not(:last-child)::after {
    content: "›";
    margin: 0 4px;
    color: #adb5bd;
    font-weight: bold;
}

.breadcrumb-modern ul li a {
    color: #0918ea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-modern ul li a:hover {
    color: #db3208;
    text-decoration: underline;
}

.breadcrumb-modern ul li.active {
    color: #343a40;
    font-weight: 600;
}


    * { margin: 0; padding: 0; box-sizing: border-box; }

	
.alert {
  padding: 12px 20px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

/* === Buton Sınıfları === */
.btn-outline-success {
  color: #28a745;
  border: 1px solid #28a745;
  background-color: transparent;
}
.btn-outline-success:hover {
  background-color: #28a745;
  color: #fff;
  border-color: #28a745;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

/* === Hizalama Yardımcıları === */
.text-center {
  text-align: center !important;
}


    @media (min-width: 768px) {
      .toggle-submenu { display: none !important; }
      .menu-item > .menu-item-header span::after {
        content: "";
        display: inline-block;
        margin-left: 8px;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #4fc3f7;
        vertical-align: middle;
      }
      .submenu li:has(.subsubmenu) > .submenu-toggle-wrapper a::after {
        content: "";
        display: inline-block;
        margin-left: 8px;
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #4fc3f7;
        vertical-align: middle;
      }
    }
	
.bolum-baslik {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 16px;
}



@media (max-width: 768px) {

    .test-category {
        font-size: 18px;
        padding: 4px 14px;
    }

    .anasayfa-kart {
        padding: 14px 16px;
    }
	

      .toggle { display: block; }
      .desktop-menu { width: 100%; display: none; }
      .desktop-menu.active { display: flex; }
      .menu { flex-direction: column; width: 100%; 
      background: linear-gradient(105deg, #333 20%, #FF4B2F 100%);
	  }
      .menu-item { width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
      .menu-item-header { padding: 15px 20px; }
      .submenu, .subsubmenu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        border: none;
        background-color: rgba(0, 0, 0, 0.1);
        width: 100%;
      }
      .menu-item.open > .submenu { display: block; }
      .submenu li.open > .subsubmenu { display: block; }
      .submenu a, .subsubmenu a {
        color: #fff;
        padding-left: 30px;
      }
      .submenu a:hover, .subsubmenu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #4fc3f7;
        border-left: 3px solid #4fc3f7;
      }
      .toggle-submenu::after {
        content: attr(data-icon);
        font-weight: bold;
      }
      .search-bar { display: none; width: 100%; margin: 10px 0; }
      .search-bar.active { display: block; }
}

/* sidebar sadece masaüstünde görünsün */
.only-desktop {
  display: none;
}

@media (min-width: 840px) {
  .only-desktop {
    display: block;
  }
}

.soru img {
    max-width: 100%;  /* Görselin, içinde bulunduğu alandan taşmasını engeller. */
    height: auto;     /* Genişlik değiştiğinde en-boy oranını korumak için yüksekliği otomatik ayarlar. */
    display: block;   /* Görselin altındaki istenmeyen boşlukları kaldırır. */
}