
.fk-tlp-h-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:32px;
}
.fk-tlp-h-card{
  background:#ffffff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(15,23,42,.15);
  display:flex;
  flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;
}
.fk-tlp-h-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 45px rgba(15,23,42,.18);
}
.fk-tlp-h-media{
  position:relative;
  /* Fiyat bandının beyaz alana taşması için görünür olmalı */
  overflow:visible;
  z-index:2;
}
.fk-tlp-h-img{
  display:block;
  overflow:hidden; /* hover zoom dışarı taşmasın */
}
.fk-tlp-h-img img{
  display:block;
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .45s ease;
}
.fk-tlp-h-card:hover .fk-tlp-h-img img{
  transform:scale(1.06);
}
.fk-tlp-h-top-left{
  position:absolute;
  left:18px;
  top:18px;
  z-index:6;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.fk-tlp-h-badge-top{
  position:static;
}
.fk-tlp-h-badge-top span{
  display:inline-flex;
  align-items:center;
  padding:6px 12px;
  background:#b91c1c;
  color:#fff;
  font-size:12px;
  font-weight:700;
  border-radius:6px;
}
.fk-tlp-h-duration{
  position:absolute;
  right:18px;
  bottom:18px;
  z-index:3;
}
.fk-tlp-h-duration span{
  display:inline-flex;
  align-items:center;
  padding:6px 12px;
  background:#f97316;
  color:#111827;
  font-size:13px;
  font-weight:600;
  border-radius:999px;
}
.fk-tlp-h-price-band{
  position:absolute;
  left:0;
  right:0;
  bottom:-26px; /* beyaz alana daha fazla binsin */
  z-index:5; /* body'nin üstünde kalsın */
  padding:10px 24px;
  background:#facc15;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  font-size:13px;
  font-weight:600;
}
.fk-tlp-h-price-prefix{
  text-transform:uppercase;
}
.fk-tlp-h-price-main{
  font-size:20px;
  font-weight:800;
}
.fk-tlp-h-price-suffix{
  opacity:.9;
}
.fk-tlp-h-body{
  position:relative;
  z-index:1;
  /* Üstte fiyat bandı bindirmesi için ekstra üst boşluk */
  padding:54px 26px 24px;
}
.fk-tlp-h-cat-badge{
  position:static;
}
.fk-tlp-h-cat-badge span{
  display:inline-flex;
  align-items:center;
  padding:6px 12px;
  background:#111827;
  color:#fff;
  font-size:12px;
  font-weight:700;
  border-radius:6px;
  max-width:100%;
}
.fk-tlp-h-title{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.3;
}
.fk-tlp-h-title a{
  color:#111827;
  text-decoration:none;
}
.fk-tlp-h-title a:hover{
  text-decoration:underline;
}
.fk-tlp-h-excerpt{
  font-size:14px;
  line-height:1.6;
  color:#4b5563;
  margin-bottom:18px;
}
.fk-tlp-h-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.fk-tlp-h-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 22px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  border:2px solid transparent;
  background:#111827;
  color:#fff;
  text-decoration:none;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,border-color .2s ease,transform .15s ease;
}
.fk-tlp-h-btn-primary{
  background:#111827;
  color:#fff;
  border-color:#111827;
}
.fk-tlp-h-btn-secondary{
  background:#fff;
  color:#111827;
  border-color:#d1d5db;
  margin-left:auto; /* SEE DATES sağa it */
}
.fk-tlp-h-btn:hover{
  transform:translateY(-1px);
}
.fk-tlp-h-btn-primary:hover{
  background:#cf8d17;
  border-color:#cf8d17;
}
.fk-tlp-h-btn-secondary:hover{
  background:#f3f4f6;
}
.fk-tlp-h-more{
  margin-top:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 22px;
  border-radius:999px;
  border:2px solid #111827;
  background:#111827;
  color:#fff;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}
.fk-tlp-h-more:hover{
  background:#cf8d17;
  border-color:#cf8d17;
}
.fk-tlp-h-sentinel{
  width:1px;
  height:1px;
  opacity:0;
}
@media (max-width:1024px){
  .fk-tlp-h-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
  }
  .fk-tlp-h-img img{
    height:230px;
  }
}
@media (max-width:767px){
  .fk-tlp-h-grid{
    grid-template-columns:repeat(1,minmax(0,1fr));
    gap:20px;
  }
  .fk-tlp-h-img img{
    height:220px;
  }
}
