/* Turac PDF Kartlari */
.turac-pdf-cards{
  --turac-green:#2DA736;
  --turac-brown:#673B0E;
  --turac-ink:#1f1f1f;
  --turac-soft:#fbfaf7;
  --turac-border: rgba(103,59,14,.16);
  --turac-dash: rgba(103,59,14,.18);
}

.turac-pdf-cards__heading{
  font-size:18px;
  font-weight:700;
	display:none;
  color:var(--turac-ink);
  margin:0 0 14px 0;
}

.turac-pdf-cards__grid{
  display:grid;
  grid-template-columns: repeat(var(--turac-cols, 2), minmax(0, 1fr));
  gap:18px;
}

.turac-pdf-cards__card{
  background:#fff;
  border:1px solid var(--turac-border);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.07);
  overflow:hidden;
  position:relative;
}

.turac-pdf-cards__card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(45,167,54,.08), rgba(103,59,14,.06));
  pointer-events:none;
}

.turac-pdf-cards__inner{
  position:relative;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:170px;
}

.turac-pdf-cards__top{
  display:flex;
  align-items:center;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px dashed var(--turac-dash);
}

.turac-pdf-cards__icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(45,167,54,.10);
  border:1px solid rgba(45,167,54,.20);
  flex:0 0 auto;
  overflow:hidden;
}

.turac-pdf-cards__icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.turac-pdf-cards__icon svg{
  width:22px;
  height:22px;
  fill:var(--turac-green);
  display:block;
}

.turac-pdf-cards__title{
  margin:0;
  font-size:16px;
  line-height:1.25;
  color:var(--turac-ink);
  font-weight:700;
}

.turac-pdf-cards__meta{
  margin-top:4px;
  font-size:12px;
  color:rgba(31,31,31,.65);
}

.turac-pdf-cards__actions{
  margin-top:auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.turac-pdf-cards__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:12px;
  text-decoration:none;
  font-size:13px;
  line-height:1;
  transition:transform .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
  user-select:none;
  white-space:nowrap;
}

.turac-pdf-cards__btn--primary{
  background:var(--turac-green);
  color:#fff;
}

.turac-pdf-cards__btn--primary:hover{
  background:var(--turac-brown);
  transform:translateY(-1px);
}

.turac-pdf-cards__btn--ghost{
  background:transparent;
  color:var(--turac-brown);
  border:1px solid rgba(103,59,14,.35);
}

.turac-pdf-cards__btn--ghost:hover{
  background:rgba(45,167,54,.10);
  border-color:rgba(45,167,54,.55);
  color:var(--turac-ink);
  transform:translateY(-1px);
}

@media (max-width: 980px){
  .turac-pdf-cards__grid{
    grid-template-columns: 1fr;
  }
}
