/* ==========================================================================
   Mergensoft Kategori Kartı (Child Component)
   ========================================================================== */

.cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-card {
  flex: 0 0 calc(80% - 10px);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  user-select: none;
  background-color: #f1f5f9;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

@media (min-width: 600px) {
  .cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-card {
    flex: 0 0 calc(48% - 10px);
  }
}

@media (min-width: 900px) {
  .cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-card {
    flex: 0 0 calc(32% - 12px);
  }
}

@media (min-width: 1200px) {
  .cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-card {
    flex: 0 0 calc(var(--mergensoft-cat-col-width, 25%) - 18px);
  }
}

.cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-card:hover .mergensoft-kategori-img {
  transform: scale(1.06);
}

.cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.25) 35%,
      rgba(0, 0, 0, 0) 65%);
  transition: opacity 0.3s ease;
}

.cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

@media (max-width: 640px) {
  .cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-info {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }
}

.cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-bar {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-right: 10px;
  flex-shrink: 0;
  border-radius: 1px;
}

.cc_GsPxrqBlgS_mergensoft_kategori_karti .mergensoft-kategori-name {
  margin: 0;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}