.case-two {
  position: relative;
  display: block;
  padding: 10px 0 0;
  z-index: 1;
  background-color: var(--thm-main-bg, #0f0f24);
  color: var(--thm-white, #fff);
  font-family: 'Poppins', sans-serif;
}

.case-two__wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.case-two__title {
  text-align: center;
  font-size: 40px;
  line-height: 56px;
  font-weight: 600;
  margin-bottom: 54px;
  color: var(--thm-white, #fff);
}

.case-two__title span {
  color: var(--thm-primary, #ff6b6b);
}

.case-two__carosuel {
  max-width: 1600px; 
  position: relative;
}

.case-two__img img {
  width: 100%;       /* Görsel slider kutusunu tam kaplar */
  height: 250px;     /* Sabit yükseklik */
  object-fit: cover; /* Görselin kırpılmadan kutuya sığması için */
  border-radius: 16px 16px 0 0;
}

.slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
  outline: none;
}

.item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--thm-main-bg, #1a1a3d);
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
  position: relative;
}

.case-two__img {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.case-two__img > img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 220px;
  border-radius: 16px 16px 0 0;
}

.case-two__content {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 10px 20px;
  transform: translateY(-66%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.slick-current .case-two__content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}

.case-two__user-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
  flex-wrap: wrap;
}

.case-two__user {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.case-two__user-img {
  width: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.case-two__user-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.case-two__user-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--thm-primary, #ff6b6b);
  margin-left: 10px;
}

.case-two__post-hour {
  font-size: 12px;
  line-height: 12px;
  color: var(--thm-white, #fff);
}

.case-two__text {
  font-size: 14px;
  line-height: 22px;
  color: var(--thm-white, #ddd);
  margin-bottom: 14px;
}

.case-two__btn-box {
  display: block;
}

.case-two__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: linear-gradient(85deg, #00B67A -4.03%, #E1F763 99.23%);
  width: 100%;
  padding: 11px 0;
  color: var(--thm-body-bg, #000);
  font-weight: 600;
  text-decoration: none;
  background-size: 200% auto;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.case-two__btn > img {
  width: auto !important;
  padding-right: 12px;
}

.case-two__btn:hover {
  background-position: right center;
  color: var(--thm-body-bg, #000);
}

.case-two__icon {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 36px;
  width: 36px;
  backdrop-filter: blur(8px);
  border: 1px solid var(--thm-bdr-color, #444);
  background-color: var(--thm-body-bg, #222);
  border-radius: var(--thm-border-radius, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100px);
  opacity: 0;
  transition: all 700ms ease;
  z-index: 1;
  cursor: pointer;
}

.slick-current .case-two__icon {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.3s;
}

.case-two__icon span {
  font-size: 15px;
  color: var(--thm-white, #fff);
}

.case-two__btn-two-box {
  text-align: center;
  margin-top: 55px;
}

.case-two__btn-two {
  background: var(--thm-main-bg, #03CB89);
  border: 1px solid var(--thm-bdr-color, #444);
  color: var(--thm-gray, #999);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.case-two__btn-two span {
  color: var(--thm-gray, #999);
}

.case-two__btn-two:hover span {
  color: var(--thm-white, #fff);
}

.slick-list {
  overflow: visible !important;
}

@media (max-width: 991px) {
  .case-two__carosuel {
    max-width: 100%;
  }
  .slick-slide {
    padding: 0 5px;
  }
  .item {
    max-width: 90vw !important;
  }
}