.page-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 68px;
  background:
    radial-gradient(circle at top right, rgba(240, 180, 41, 0.2), transparent 34%),
    linear-gradient(135deg, #071525 0%, #0d2137 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 37, 0.08), rgba(7, 21, 37, 0));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.62);
}

.breadcrumb a {
  color: inherit;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb i {
  font-size: 0.62rem;
}

.page-hero-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.page-hero-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), #ffd166);
  color: var(--navy-dark);
  box-shadow: 0 18px 34px rgba(240, 180, 41, 0.26);
  font-size: 1.35rem;
}

.page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.85;
}

.tendik-filter-wrap {
  position: relative;
  margin-top: -24px;
  padding: 0 0 18px;
  background: transparent;
}

.tendik-filter-shell {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(circle at top left, rgba(140, 199, 240, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(226, 239, 249, 0.98) 100%);
  border: 1px solid rgba(13, 33, 55, 0.08);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 20px 52px rgba(10, 37, 64, 0.1);
}

.tendik-filter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.tendik-filter-copy {
  max-width: 760px;
}

.tendik-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(240, 180, 41, 0.14);
  color: #9a6900;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tendik-filter-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  color: var(--navy);
}

.tendik-filter-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.tendik-filter-form {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) auto auto;
  gap: 14px;
  align-items: stretch;
}

.tendik-search {
  position: relative;
  min-width: 0;
}

.tendik-search i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  z-index: 2;
  color: #72859b;
  font-size: 0.95rem;
  pointer-events: none;
}

.tendik-search input,
.tendik-submit,
.tendik-reset {
  position: relative;
  overflow: hidden;
}

.tendik-search input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 18px 0 46px;
  border: 1.5px solid rgba(15, 76, 129, 0.12);
  border-radius: 18px;
  outline: none;
  background: #fbfcff;
  color: var(--navy);
  font-family: inherit;
  font-size: 0.93rem;
  line-height: 1.2;
  transition: var(--transition);
}

.tendik-search input::placeholder {
  color: #8092a7;
}

.tendik-search input:focus {
  border-color: rgba(240, 180, 41, 0.95);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.14);
}

.tendik-submit,
.tendik-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease, color .28s ease;
}

.tendik-submit::after,
.tendik-reset::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.3) 45%, transparent 100%);
  transform: translateX(-130%);
  transition: transform .5s ease;
}

.tendik-submit {
  border: 1px solid rgba(28, 107, 178, .34);
  background: linear-gradient(135deg, #1c6bb2 0%, #327fc4 100%);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(28, 107, 178, .24);
}

.tendik-submit:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--gold);
  color: var(--dark);
  border-color: rgba(240, 180, 41, .5);
  box-shadow: 0 16px 26px rgba(216, 157, 16, .28);
}

.tendik-submit:hover::after {
  transform: translateX(130%);
}

.tendik-reset {
  border: 1px solid rgba(28, 107, 178, .34);
  background: linear-gradient(135deg, #1c6bb2 0%, #327fc4 100%);
  color: var(--white);
  box-shadow: 0 14px 24px rgba(28, 107, 178, .24);
}

.tendik-reset:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--gold);
  border-color: rgba(240, 180, 41, .5);
  color: var(--dark);
  box-shadow: 0 16px 26px rgba(216, 157, 16, .28);
}

.tendik-reset:hover::after {
  transform: translateX(130%);
}

.tendik-content {
  padding: 56px 0 64px;
  background:
    radial-gradient(circle at top left, rgba(240, 180, 41, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(140, 199, 240, 0.20), transparent 28%),
    linear-gradient(180deg, #eef6fc 0%, #dbeaf6 100%);
}

.tendik-results {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.tendik-results-summary {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.97rem;
}

.tendik-results-summary strong,
.tendik-results-summary b {
  color: var(--navy);
}

.tendik-results-note {
  color: #667b91;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.tendik-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.tendik-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  border: 1px solid rgba(15, 76, 129, 0.08);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 28px rgba(10, 37, 64, 0.08);
  transform: translateZ(0);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
  cursor: default;
}

.tendik-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(28, 107, 178, 0.2);
  opacity: 0;
  transform: scale(.985);
  pointer-events: none;
  transition: opacity .32s ease, transform .32s ease, border-color .32s ease;
}

.tendik-card:hover {
  transform: translateY(-6px);
  border-color: rgba(28, 107, 178, 0.22);
  box-shadow: 0 24px 48px rgba(10, 37, 64, 0.14);
}

.tendik-card:hover::after {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(28, 107, 178, 0.36);
}

.tendik-card.is-hidden {
  display: none;
}

.tendik-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.tendik-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tendik-card:hover .tendik-card-media img {
  transform: scale(1.06);
}

.tendik-card-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  background: linear-gradient(to top, rgba(7, 21, 37, 0.44), rgba(7, 21, 37, 0));
  pointer-events: none;
}

.tendik-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.tendik-card-placeholder i {
  font-size: 2.3rem;
  color: rgba(255, 255, 255, 0.28);
}

.tendik-card-placeholder span {
  font-size: 0.82rem;
  font-weight: 700;
}

.tendik-card-media-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 37, 64, 0.58);
  color: #fff;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-8px);
  transition: transform .28s ease, opacity .28s ease, background .28s ease;
}

.tendik-card:hover .tendik-card-media-badge {
  opacity: 1;
  transform: translateY(0);
}

.tendik-card:hover .tendik-card-media-badge,
.tendik-card:focus-within .tendik-card-media-badge {
  background: rgba(10, 37, 64, 0.72);
}

.tendik-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: #fff;
}

.tendik-role-chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(240, 180, 41, 0.14);
  color: #9a6900;
  font-size: 0.66rem;
  font-weight: 800;
}

.tendik-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.35;
}

.tendik-meta-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--secondary);
  font-size: 0.76rem;
  line-height: 1.6;
  font-weight: 600;
}

.tendik-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tendik-contact {
  display: none;
}

.tendik-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e3ebf5;
  color: var(--text);
  font-size: 0.72rem;
  word-break: break-word;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, color .24s ease;
}

.tendik-contact-item i {
  color: var(--secondary);
}

.tendik-contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 76, 129, 0.18);
  color: var(--secondary);
  box-shadow: 0 12px 22px rgba(15, 76, 129, 0.08);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 56px;
  flex-wrap: wrap;
}

.pagination a,
.pagination button,
.pagination span {
  position: relative;
  overflow: hidden;
  min-width: 52px;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(28, 107, 178, .34);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .96rem;
  font-weight: 800;
  color: var(--white);
  font-family: inherit;
  cursor: pointer;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease, color .28s ease;
  background: linear-gradient(135deg, #1c6bb2 0%, #327fc4 100%);
  box-shadow: 0 12px 24px rgba(28, 107, 178, .24);
}

.pagination a::after,
.pagination button::after,
.pagination span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.3) 45%, transparent 100%);
  transform: translateX(-130%);
  transition: transform .5s ease;
}

.pagination a:hover,
.pagination button:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: rgba(240, 180, 41, .5);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 28px rgba(216, 157, 16, .3);
}

.pagination a:hover::after,
.pagination button:hover::after {
  transform: translateX(130%);
}

.pagination .current {
  border-color: rgba(13, 49, 84, .22);
  background: var(--btn-bg-active);
  color: var(--white);
  box-shadow: 0 16px 26px rgba(18, 73, 121, .24);
}

.pagination .current::after {
  transform: translateX(0);
}

.pagination a i,
.pagination button i {
  font-size: .9rem;
}

.empty-box {
  grid-column: 1 / -1;
  padding: 42px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--muted);
}

.empty-box i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.section-empty-card {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 24px auto 0;
  padding: 44px 36px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(240, 180, 41, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(15, 76, 129, 0.16), transparent 28%),
    linear-gradient(160deg, #f8fbff 0%, #e6f0f8 100%);
  border: 1px solid rgba(15, 76, 129, 0.08);
  box-shadow: 0 24px 46px rgba(10, 37, 64, 0.12);
}

.section-empty-card::before,
.section-empty-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.section-empty-card::before {
  top: 20px;
  right: 22px;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.56), rgba(255,255,255,0));
  opacity: .8;
}

.section-empty-card::after {
  left: 28px;
  bottom: 24px;
  width: 140px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 76, 129, .12), transparent 72%);
  filter: blur(10px);
}

.section-empty-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15, 76, 129, 0.08);
  color: #8b6516;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section-empty-icon {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  margin: 4px auto 22px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.88), rgba(255,255,255,.18)),
    linear-gradient(145deg, rgba(140, 199, 240, .24), rgba(240, 180, 41, .22));
  border: 1px solid rgba(15, 76, 129, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 20px 34px rgba(15, 76, 129, 0.12);
}

.section-empty-icon i {
  margin: 0;
  font-size: 2.65rem;
  color: var(--secondary);
}

.section-empty-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--dark);
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.section-empty-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  color: #4f6478;
  line-height: 1.9;
}

.tendik-empty-state {
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(140, 199, 240, 0.22), transparent 26%),
    radial-gradient(circle at bottom left, rgba(240, 180, 41, 0.14), transparent 24%),
    linear-gradient(160deg, #f7fbff 0%, #e4eff8 100%);
}

@media (max-width: 1100px) {
  .tendik-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tendik-filter-head,
  .tendik-results {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .tendik-submit,
  .tendik-reset {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .tendik-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-empty-card {
    padding: 38px 26px;
    border-radius: 28px;
  }

  .section-empty-icon {
    width: 96px;
    height: 96px;
    border-radius: 26px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 124px 0 56px;
  }

  .page-hero-title {
    align-items: flex-start;
  }

  .tendik-filter-shell {
    padding: 22px;
    border-radius: 24px;
  }

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

  .tendik-results-note {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .tendik-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tendik-card-body {
    padding: 17px;
  }

  .pagination {
    gap: 10px;
    padding-top: 42px;
  }

  .pagination a,
  .pagination button,
  .pagination span {
    min-width: 46px;
    height: 46px;
    padding: 0 14px;
    font-size: .9rem;
  }

  .section-empty-card {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .section-empty-badge {
    margin-bottom: 14px;
    font-size: .72rem;
  }

  .section-empty-icon {
    width: 84px;
    height: 84px;
    margin-bottom: 18px;
    border-radius: 22px;
  }

  .section-empty-icon i {
    font-size: 2.15rem;
  }

  .section-empty-card h3 {
    font-size: 1.35rem;
  }

  .section-empty-card p {
    font-size: .92rem;
  }
}

@media (max-width: 420px) {
  .tendik-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .tendik-card-body {
    padding: 12px;
  }

  .tendik-card h3 {
    font-size: 0.86rem;
  }

  .tendik-meta-line,
  .tendik-desc {
    font-size: 0.72rem;
  }

}
