@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&display=swap');

.cle-dc-showcase,
.cle-dc-showcase * {
  box-sizing: border-box;
}

.cle-dc-showcase {
  --cle-cream: #fbf4ec;
  --cle-soft: #fffaf5;
  --cle-coral: #f04b4b;
  --cle-ink: #2f2f2f;
  --cle-muted: #77716b;
  --cle-line: #eaded2;
  background: #ffffff;
  color: var(--cle-ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 100%;
}

.cle-dc-shell {
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px 20px;
}

.cle-dc-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.cle-dc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--cle-line);
  background: rgba(255,255,255,.7);
  color: var(--cle-coral);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(80,60,40,.04);
}

.cle-dc-lang {
  display: inline-flex;
  border: 1px solid var(--cle-line);
  background: rgba(255,255,255,.8);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 10px 30px rgba(80,60,40,.06);
}

.cle-dc-lang button {
  border: 0;
  background: transparent;
  padding: 8px 20px;
  border-radius: 999px;
  color: var(--cle-muted);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}

.cle-dc-lang button.is-active {
  background: var(--cle-coral);
  color: #fff;
  box-shadow: 0 12px 28px rgba(240,75,75,.2);
}

.cle-dc-filterbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  margin: 24px -8px 0;
  padding: 12px 8px;
  background: #fff;
  border-radius: 22px;
}

.cle-dc-filter-inner {
  border-top: 1px solid var(--cle-line);
  border-bottom: 1px solid var(--cle-line);
  padding: 16px 0;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px) auto;
  gap: 16px;
  align-items: center;
}

.cle-dc-filter-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #a77d61;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.cle-dc-filter-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--cle-coral);
  border-radius: 999px;
  flex: 0 0 auto;
}

.cle-dc-select-wrap {
  position: relative;
}

.cle-dc-select {
  width: 100%;
  height: 48px;
  appearance: none;
  border-radius: 999px;
  border: 1px solid var(--cle-line);
  background: rgba(255,255,255,.9);
  color: #444;
  padding: 0 48px 0 20px;
  font-size: 14px;
  font-weight: 900;
  outline: none;
  box-shadow: 0 10px 24px rgba(80,60,40,.045);
  transition: .2s ease;
}

.cle-dc-select:focus {
  border-color: rgba(240,75,75,.45);
  box-shadow: 0 0 0 4px rgba(240,75,75,.10);
}

.cle-dc-select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cle-coral);
  pointer-events: none;
  font-weight: 900;
}

.cle-dc-summary {
  border: 1px solid var(--cle-line);
  background: rgba(255,255,255,.55);
  color: var(--cle-muted);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.cle-dc-departments {
  display: grid;
  gap: 56px;
  margin-top: 48px;
}

.cle-dc-department-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.cle-dc-department-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cle-dc-pin {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff1ee;
  color: var(--cle-coral);
  box-shadow: 0 2px 8px rgba(80,60,40,.04);
  flex: 0 0 auto;
}

.cle-dc-overline {
  color: #c98b5a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.cle-dc-department-title {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.04em;
  font-weight: 900;
  margin: 0;
  color: var(--cle-ink);
}

.cle-dc-count {
  border: 1px solid var(--cle-line);
  background: rgba(255,255,255,.7);
  color: var(--cle-muted);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(80,60,40,.04);
}

.cle-dc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.cle-dc-card {
  overflow: hidden;
  border-radius: 23px;
  border: 1px solid var(--cle-line);
  background: #fff;
  box-shadow: 0 18px 55px rgba(80,60,40,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.cle-dc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(80,60,40,.13);
}

.cle-dc-photo {
  position: relative;
  aspect-ratio: 750 / 1040;
  overflow: hidden;
  border-radius: 23px 23px 0 0;
  background: #f3eadf;
}

.cle-dc-photo-empty {
  background: #f3eadf;
}

.cle-dc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}

.cle-dc-card:hover .cle-dc-photo img {
  transform: scale(1.03);
}

.cle-dc-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,.18), transparent);
  pointer-events: none;
}

.cle-dc-card-body {
  padding: 24px 28px 28px;
}

.cle-dc-role {
  color: var(--cle-coral);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
  margin: 0;
}

.cle-dc-name {
  margin: 8px 0 0;
  color: var(--cle-ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.03em;
}

.cle-dc-department-line {
  margin: 8px 0 0;
  color: var(--cle-muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.cle-dc-footer {
  margin-top: 48px;
  border-top: 1px solid var(--cle-line);
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--cle-muted);
  font-size: 14px;
  line-height: 1.55;
}

.cle-dc-footer-icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--cle-line);
  background: #fff;
  color: var(--cle-coral);
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .cle-dc-filter-inner {
    grid-template-columns: 1fr;
  }
  .cle-dc-summary {
    text-align: left;
    white-space: normal;
  }
  .cle-dc-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 700px) and (max-width: 980px) {
  .cle-dc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cle-dc-shell {
    padding: 24px 16px;
  }
  .cle-dc-topbar,
  .cle-dc-department-head,
  .cle-dc-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .cle-dc-filterbar {
    top: 0;
    margin-left: -4px;
    margin-right: -4px;
  }
  .cle-dc-department-title {
    font-size: 22px;
  }
}
