:root {
  --bg: #ffffff;
  --bg-subtle: #fafafa;
  --surface: #ffffff;
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.1);
  --accent: #0f6d49;
  --accent-hover: #0b5a3c;
  --accent-soft: rgba(15, 109, 73, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-header: 0 1px 0 rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 70% at 0% -10%, rgba(15, 109, 73, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 110%, rgba(15, 109, 73, 0.04) 0%, transparent 50%),
    linear-gradient(rgba(0, 0, 0, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.018) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.app-shell {
  min-height: 100vh;
  position: relative;
}

/* Floating header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, var(--shadow-header);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  min-width: 150px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.header-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

.header-title-sep {
  width: 1px;
  height: 14px;
  background: rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.header-title::before {
  content: "";
  width: 3px;
  height: 15px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(15, 109, 73, 0.35) 100%);
  flex-shrink: 0;
}

.header-meta {
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 0;
  font-weight: 400;
  white-space: nowrap;
}

/* Search */
.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 420px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-form:focus-within {
  border-color: rgba(15, 109, 73, 0.35);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.search-icon {
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
}

.search-input::placeholder {
  color: var(--text-tertiary);
}

/* Main layout */
.main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Filters */
.filters-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.filters-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px 20px;
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 140px;
}

.filter-field--action {
  margin-left: auto;
  min-width: auto;
  justify-content: flex-end;
}

.filter-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-control {
  appearance: none;
  padding: 9px 32px 9px 12px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-subtle) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.filter-control:hover {
  border-color: rgba(0, 0, 0, 0.15);
}

.filter-control:focus {
  outline: none;
  border-color: rgba(15, 109, 73, 0.4);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.btn-reset {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: all 0.2s;
}

.btn-reset:hover {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.18);
  background: var(--bg);
}

/* Table card */
.table-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table thead {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  border-bottom: 1px solid var(--border);
}

.data-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.data-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.data-table tbody tr {
  transition: background 0.15s ease;
}

.data-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.cell-date {
  color: var(--text-secondary);
  font-size: 13px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.cell-lang,
.cell-category {
  color: var(--text);
  font-size: 14px;
  white-space: nowrap;
}

.cell-source {
  color: var(--text-secondary);
  font-size: 13px;
  max-width: 200px;
}

.cell-icon-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inline-icon {
  flex-shrink: 0;
  color: var(--text-tertiary);
  opacity: 0.85;
}

.cell-title {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  max-width: 480px;
}

.cell-title-text {
  display: block;
}

.cell-title-text--rtl {
  direction: rtl;
  text-align: right;
  unicode-bidi: plaintext;
}

.cell-action {
  text-align: right;
  white-space: nowrap;
}

/* CTA button */
.btn-article {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: var(--accent);
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(15, 109, 73, 0.2);
}

.btn-article:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 109, 73, 0.25);
}

/* Empty state */
.empty-state {
  padding: 64px 32px;
  text-align: center;
  color: var(--text-tertiary);
  font-size: 15px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px;
}

.pagination-info {
  font-size: 13px;
  color: var(--text-tertiary);
}

.pagination-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.page-num:hover {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-sm);
}

.page-num--active {
  color: var(--text);
  background: var(--bg-subtle);
  border-color: rgba(15, 109, 73, 0.25);
  box-shadow: inset 0 0 0 1px rgba(15, 109, 73, 0.08);
}

.page-ellipsis {
  color: var(--text-tertiary);
  padding: 0 4px;
  font-size: 13px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.page-btn:hover {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-sm);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stat-keyword {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 16px;
  }

  .header-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .search-form {
    max-width: none;
    width: 100%;
    order: 3;
  }

  .filters-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
  }

  .filter-field--action {
    margin-left: 0;
    grid-column: 1 / -1;
  }

  .btn-reset {
    width: 100%;
    justify-content: center;
  }

  .cell-title {
    max-width: 320px;
  }
}

.site-footer {
  margin-top: 8px;
  padding: 0 32px 20px;
}

.site-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.footer-divider {
  border: none;
  height: 1px;
  margin: 0 0 14px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.06) 15%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.06) 85%,
    transparent 100%
  );
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 26px;
  font-size: 16px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}

.footer-badge:hover {
  border-color: rgba(15, 109, 73, 0.2);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transform: translateY(-1px);
}

.footer-copyright {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.footer-made,
.footer-by {
  font-weight: 400;
  color: var(--text-tertiary);
}

.footer-sep {
  color: var(--text-tertiary);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  opacity: 0.85;
  user-select: none;
}

.footer-brand {
  font-size: 17px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-badge:hover .footer-brand {
  color: var(--accent-hover);
}

.footer-heart {
  display: inline-block;
  vertical-align: -3px;
  color: #e25555;
  transition: transform 0.2s;
}

.footer-badge:hover .footer-heart {
  transform: scale(1.08);
}

/* Hero banner */
.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(15, 109, 73, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #f4faf6 0%, #eef6f0 45%, #e8f2ec 100%);
  border: 1px solid rgba(15, 109, 73, 0.1);
  box-shadow: var(--shadow-md);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 10 L90 35 L75 70 L45 70 L30 35 Z' fill='none' stroke='%230f6d49' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-card-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 42%);
  align-items: stretch;
  min-height: 280px;
  position: relative;
  z-index: 1;
}

.hero-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 32px 28px 32px 32px;
}

.hero-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-periodic-wrap {
  flex-shrink: 0;
  padding: 10px;
  background: #1e1e1e;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero-periodic {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 10px;
  object-fit: cover;
}

.hero-card-title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 10px;
}

.hero-card-title-accent {
  color: var(--accent);
}

.hero-card-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 520px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stat {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(15, 109, 73, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--accent), rgba(15, 109, 73, 0.35));
  opacity: 0.85;
}

.hero-stat:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 6px rgba(15, 109, 73, 0.08);
}

.hero-stat:nth-child(1)::before {
  background: linear-gradient(90deg, #0f6d49, #2d9a6e);
}

.hero-stat:nth-child(2)::before {
  background: linear-gradient(90deg, #1a7a52, #4db88a);
}

.hero-stat:nth-child(3)::before {
  background: linear-gradient(90deg, #0d5c3d, #3a9f72);
}

.hero-stat:nth-child(2) .hero-stat-icon {
  background: rgba(255, 255, 255, 0.38);
}

.hero-stat:nth-child(3) .hero-stat-icon {
  background: rgba(255, 255, 255, 0.38);
}

.hero-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.hero-stat-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.hero-stat-keyword {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}

.hero-card-visual {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.hero-card-visual::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 45%;
  background: linear-gradient(
    to right,
    #eef6f0 0%,
    rgba(238, 246, 240, 0.92) 18%,
    rgba(238, 246, 240, 0.55) 45%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 1024px) {
  .hero-card-inner {
    grid-template-columns: 1fr;
  }

  .hero-card-visual {
    min-height: 220px;
    order: -1;
    width: 100%;
  }

  .hero-card-visual::after {
    inset: auto 0 0 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(238, 246, 240, 0.45) 40%,
      rgba(238, 246, 240, 0.88) 75%,
      #eef6f0 100%
    );
  }

  .hero-card-content {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 16px;
  }

  .header-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .header-title-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .header-title-sep {
    display: none;
  }

  .header-meta {
    white-space: normal;
  }

  .logo-img {
    height: 44px;
    min-width: 120px;
  }

  .main {
    padding: 16px;
    gap: 16px;
  }

  .site-footer {
    padding: 0 16px 16px;
  }

  .filters-card {
    padding: 16px;
  }

  .filters-form {
    grid-template-columns: 1fr;
  }

  .filter-field {
    min-width: 0;
    width: 100%;
  }

  .hero-card-content {
    gap: 24px;
    padding: 20px;
    text-align: left;
  }

  .hero-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }

  .hero-card-title,
  .hero-card-desc,
  .hero-stat-copy {
    text-align: left;
  }

  .hero-card-desc {
    max-width: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    min-width: 0;
    width: 100%;
  }

  .table-card {
    border-radius: var(--radius-lg);
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .table-scroll {
    overflow-x: visible;
  }

  .data-table {
    display: block;
  }

  .data-table thead {
    display: none;
  }

  .data-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .data-table tbody tr {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }

  .data-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.98);
  }

  .data-table td {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    white-space: normal;
    max-width: none;
    text-align: left;
  }

  .data-table td::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    padding-top: 0;
  }

  .data-table td[data-label=""]::before {
    content: none;
  }

  .data-table td:last-child {
    border-bottom: none;
    padding-top: 8px;
    padding-bottom: 14px;
  }

  .cell-title {
    max-width: none;
    font-size: 15px;
    text-align: left;
    width: 100%;
  }

  .cell-title-text--rtl {
    width: 100%;
  }

  .cell-source {
    max-width: none;
    text-align: left;
    width: 100%;
  }

  .cell-lang,
  .cell-category {
    text-align: left;
    width: 100%;
  }

  .cell-icon-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .cell-date {
    text-align: left;
    width: 100%;
  }

  .cell-action {
    text-align: left;
    width: 100%;
  }

  .btn-article {
    width: 100%;
    justify-content: center;
  }

  .pagination {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .pagination-links {
    justify-content: center;
  }

  .footer-badge {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 480px) {
  .header-title {
    font-size: 14px;
  }

  .search-input {
    font-size: 16px;
  }

  .hero-card-title {
    font-size: 20px;
  }

  .hero-periodic {
    width: 72px;
    height: 72px;
  }

  .page-num,
  .page-btn {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
    padding: 0 8px;
  }

  .pagination-links {
    gap: 4px;
  }
}
