.tadbirlar-area {
  background: #fff;
  padding: 60px 0 52px;
}

.td-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.td-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: #7F77DD;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.td-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #7F77DD;
  border-radius: 2px;
}

.td-main-title {
  font-size: 32px;
  font-weight: 500;
  color: #1a0e3d;
  line-height: 1.2;
}
.td-main-title span {
  color: #7F77DD;
}

.td-head-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #534AB7;
  background: #fff;
  border: 1.5px solid #CECBF6;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s;
}
.td-head-btn:hover {
  background: #EEEDFE;
  color: #534AB7;
}

.td-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ece9fb;
  margin-bottom: 24px;
  transition: border-color .25s;
}
.td-card:hover {
  border-color: #AFA9EC;
}
.td-card:hover .td-img-inner {
  transform: scale(1.04);
}

.td-img-box {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #EEEDFE;
}
.td-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.td-cat-pill {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #534AB7;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .5px;
}

.td-num-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.92);
  color: #534AB7;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.td-body {
  padding: 20px 20px 18px;
}

.td-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.td-meta-date {
  font-size: 11px;
  color: #888780;
  display: flex;
  align-items: center;
  gap: 4px;
}
.td-meta-date i {
  font-size: 13px;
  color: #AFA9EC;
}
.td-divider-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #D3D1C7;
}
.td-meta-cat {
  font-size: 11px;
  color: #AFA9EC;
}

.td-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #1a0e3d;
  line-height: 1.65;
  margin-bottom: 18px;
  min-height: 46px;
}

.td-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0eeff;
  padding-top: 14px;
}

.td-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #534AB7;
  text-decoration: none;
}
.td-card:hover .td-read-btn i {
  transform: translateX(3px);
  transition: transform .2s;
}

.td-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #CECBF6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7F77DD;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s;
}
.td-card:hover .td-arrow-circle {
  background: #EEEDFE;
}