/* Haber listesi — mobil (haber_listesi.php) */

.hl-page {
  padding-bottom: 88px;
}

.hl-page .breadcrumb {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.hl-page .breadcrumb a {
  color: var(--blue);
}

.hl-filters {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hl-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.hl-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f8fafc;
  color: #0f172a;
}

.hl-submit {
  margin-top: 4px;
  padding: 12px 16px;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  cursor: pointer;
}

.hl-submit:active {
  opacity: 0.94;
}

.hl-results-info {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: #243c58;
  border-left: 4px solid var(--blue);
}

.hl-results-info p {
  margin: 0;
}

.hl-count {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}

.hl-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hl-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(8, 60, 116, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hl-card:active {
  transform: scale(0.99);
}

.hl-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #e8eef5;
}

.hl-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hl-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(239, 68, 68, 0.92);
}

.hl-card-body {
  padding: 14px 16px 16px;
}

.hl-card-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hl-card-excerpt {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hl-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}

.hl-card-cta {
  font-size: 13px;
  font-weight: 800;
  color: #dc2626;
}

.hl-empty {
  padding: 28px 16px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hl-empty h2 {
  margin: 0 0 10px;
  font-size: 17px;
  color: #0f172a;
}

.hl-empty p {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}

.hl-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.hl-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px;
}

.hl-pager-btn {
  min-width: 40px;
  padding: 8px 12px;
  text-align: center;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  color: #0f172a;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(8, 60, 116, 0.06);
}

.hl-pager-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, #0d6efd, #1688ff);
  border-color: transparent;
}
