:root{
  --dunlop-yellow:#FFD100;
  --dunlop-red:#E10600;
  --dv-border:rgba(0,0,0,.08);
  --dv-shadow: 0 14px 35px rgba(0,0,0,.10);
}

.dv-careers{ width:100%; }
.dv-count{ font-weight:800; font-size:16px; margin: 0 0 12px; color:#111; opacity:.9; }

/* Filters */
.dv-filters{ width:100%; margin: 0 0 18px; }
.dv-filters-row{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.dv-field{ flex: 1 1 180px; min-width: 170px; }
.dv-field select,
.dv-field input{
  width:100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  outline:none;
  font-size:14px;
}
.dv-search{ flex: 1 1 220px; }

.dv-btn{
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: #eee;
  cursor:pointer;
  font-weight:800;
  text-decoration:none;
  color:#111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: .15s ease;
}
.dv-btn:hover{ filter:brightness(.98); transform: translateY(-1px); }
.dv-btn-ghost{ background:#fff; }

/* Grid + cards */
.dv-grid{ display:grid; gap:18px; }
.dv-cols-1{ grid-template-columns: 1fr; }
.dv-cols-2{ grid-template-columns: repeat(2, 1fr); }
.dv-cols-3{ grid-template-columns: repeat(3, 1fr); }
.dv-cols-4{ grid-template-columns: repeat(4, 1fr); }

.dv-card-link{ text-decoration:none; color:inherit; }
.dv-card{
  background:#fff;
  border:1px solid var(--dv-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--dv-shadow);
  display:flex;
  flex-direction:column;
  min-height: 280px;
  transition: .15s ease;
}
.dv-card:hover{ transform: translateY(-2px); filter: brightness(.995); }

.dv-card-title{ margin:0 0 10px; font-size:22px; letter-spacing:-.3px; }
.dv-card-chips{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:12px; }

.dv-chip-lite{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  color:#222;
  font-size:13px;
  white-space:nowrap;
}

.dv-card-excerpt{ margin: 0 0 16px; color:#333; opacity:.9; flex:1; }

.dv-close-pill{
  display:inline-block;
  background: var(--dunlop-yellow);
  color:#000;
  font-weight:900;
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 12px;
  width: fit-content;
}

.dv-card-cta{
  text-align:center;
  background: var(--dunlop-yellow);
  color:#000;
  font-weight:900;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
}

.dv-empty{
  grid-column: 1 / -1;
  background: rgba(255,255,255,.65);
  border:1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 16px;
  text-align:center;
  color:#444;
}

/* Single template helpers */
.dv-chips{ display:flex; flex-wrap:wrap; gap:14px; margin: 10px 0 0; }
.dv-chip{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 18px; border-radius:999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20), 0 6px 18px rgba(0,0,0,0.20);
  font-size:14px; font-weight:500; letter-spacing:0.2px; white-space:nowrap;
  transition: all 0.2s ease;
}
.dv-chip:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

.dv-status{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top: 12px; }
.dv-badge{ padding: 6px 10px; border-radius:999px; font-weight:900; font-size:12px; letter-spacing:.4px; }
.dv-open .dv-badge{ background: var(--dunlop-yellow); color:#000; }
.dv-closed .dv-badge{ background: var(--dunlop-red); color:#fff; }
.dv-close-date{ color: rgba(255,255,255,0.9); font-size: 14px; }

.dv-apply-btn{
  display:block; text-align:center; text-decoration:none;
  background: var(--dunlop-yellow); color:#000;
  font-weight:900; padding: 12px 16px; border-radius:12px;
  transition: transform .15s ease, filter .15s ease;
}
.dv-apply-btn:hover{ transform: translateY(-2px); filter: brightness(.98); }
.dv-apply-email{ margin-top: 10px; font-size: 13px; color:#666; text-align:center; }

.dv-jd-link{
  display:block; margin-top: 12px; text-align:center; text-decoration:none;
  border: 1px solid rgba(0,0,0,.10); border-radius: 12px;
  padding: 10px 12px; background: #fff; font-weight: 800; color:#111;
}
.dv-jd-link:hover{ filter: brightness(.98); }

/* Responsive */
@media (max-width: 980px){
  .dv-cols-4, .dv-cols-3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .dv-cols-4, .dv-cols-3, .dv-cols-2{ grid-template-columns: 1fr; }
  .dv-field{ min-width: 100%; }
}
