:root {
  --ink: #23313d;
  --muted: #77838e;
  --line: #e5eaed;
  --accent: #167b70;
  --soft: #eaf5f1;
  --bg: #f6f8fa;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font:
    14px -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
select {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 29px;
  letter-spacing: -1px;
  font-weight: 650;
}
h2 {
  font-size: 17px;
  font-weight: 650;
}
h3 {
  font-size: 15px;
}
p {
  line-height: 1.65;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 12px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.between {
  justify-content: space-between;
}
.wrap {
  flex-wrap: wrap;
}
.grow {
  flex: 1;
}
.stack {
  display: grid;
  gap: 20px;
}
.mt {
  margin-top: 22px;
}
.mb {
  margin-bottom: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 11px 16px;
  font-weight: 550;
  font-size: 12px;
}
.btn:hover {
  border-color: var(--accent);
  background: var(--soft);
}
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.btn.small {
  padding: 7px 11px;
}
.btn.full {
  width: 100%;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 650;
  border-radius: 5px;
  background: var(--soft);
  color: var(--accent);
  white-space: nowrap;
}
.badge.amber {
  background: #fff4df;
  color: #926b20;
}
.badge.red {
  background: #ffedef;
  color: #b65262;
}
.badge.blue {
  background: #edf3fa;
  color: #517ca4;
}
.badge.gray {
  background: #f0f2f5;
  color: #7b8794;
}
.dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}
.avatar {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e7eee9;
  color: #54806c;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.avatar.large {
  width: 62px;
  height: 62px;
  font-size: 20px;
}
.demo {
  height: 31px;
  background: #eaf1ef;
  color: #58736b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.3px;
}
.demo a {
  text-decoration: underline;
}
.sidebar {
  position: fixed;
  top: 31px;
  bottom: 0;
  width: 222px;
  background: white;
  border-right: 1px solid var(--line);
  padding: 25px 17px;
  display: flex;
  flex-direction: column;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.7px;
}
.brandmark {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  font-size: 18px;
}
.hospital {
  margin: 32px 0 22px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px;
  font-size: 11px;
  line-height: 1.7;
}
.navlabel {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #9ba3aa;
  margin: 8px 12px 12px;
}
.navitem {
  display: flex;
  gap: 11px;
  align-items: center;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 5px;
  font-size: 12px;
  color: #71808a;
}
.navitem.active {
  background: var(--soft);
  color: var(--accent);
  font-weight: 650;
}
.navitem:hover {
  background: #f5f7f8;
}
.sidebar-bottom {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.workspace {
  margin-left: 222px;
}
.topbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 34px;
  background: #ffffffc9;
}
.profile-tools {
  gap: 12px;
}
.role-switcher {
  position: relative;
}
.role-trigger {
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.18s,
    border-color 0.18s,
    box-shadow 0.18s;
}
.role-trigger:hover,
.role-trigger[aria-expanded="true"] {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 2px 8px #273c4b0a;
}
.role-trigger:focus-visible,
.role-option:focus-visible {
  outline: 3px solid #1677ff55;
  outline-offset: 2px;
}
.role-chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s;
}
.role-trigger[aria-expanded="true"] .role-chevron {
  transform: rotate(180deg);
}
.role-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  width: 208px;
  padding: 6px;
  border: 1px solid #e6ebef;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 12px 36px #1c2d3b1f,
    0 2px 8px #1c2d3b0b;
  transform-origin: top right;
  animation: role-menu-in 0.14s ease-out;
}
.role-menu[hidden] {
  display: none;
}
@keyframes role-menu-in {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.role-option {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}
.role-option:hover {
  background: #f4f7f9;
}
.role-option.selected {
  background: #f1f6fb;
  color: #185a88;
  font-weight: 600;
}
.role-option-name {
  white-space: nowrap;
}
.role-check {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.role-check svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.crumb {
  font-size: 12px;
  color: var(--muted);
}
.main {
  padding: 32px 34px;
  max-width: 1650px;
  margin: auto;
}
.pagehead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.pagehead p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px #273c4b03;
}
.pad {
  padding: 23px;
}
.cardhead {
  padding: 20px 23px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cardhead p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
}
.cols {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 22px;
}
.equal {
  grid-template-columns: 1fr 1fr;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-bottom: 24px;
}
.metric {
  padding: 21px;
}
.metric .value {
  font-size: 30px;
  letter-spacing: -1px;
  margin: 16px 0 7px;
  font-weight: 600;
}
.metric .small {
  font-size: 10px;
}
.positive {
  color: var(--accent);
}
.callout {
  border: 1px solid #d9eae3;
  background: #f1f8f4;
  color: #54776b;
  padding: 15px 17px;
  border-radius: 9px;
  font-size: 12px;
  line-height: 1.65;
}
.callout.amber {
  background: #fffaf0;
  border-color: #f1e4c4;
  color: #967844;
}
.callout.blue {
  background: #f0f5fa;
  border-color: #e0e9f4;
  color: #64809b;
}
.input {
  border: 1px solid #dfe5e8;
  border-radius: 8px;
  padding: 11px 12px;
  background: white;
  width: 100%;
  color: var(--ink);
  outline: none;
}
.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #167b7010;
}
.toolbar {
  display: flex;
  gap: 12px;
  padding: 17px 22px;
}
.toolbar .input {
  max-width: 330px;
  font-size: 12px;
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-size: 12px;
  font-weight: 550;
}
.error {
  color: #b65262;
  font-size: 12px;
  min-height: 16px;
}
.tablewrap {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
  white-space: nowrap;
}
th {
  text-align: left;
  color: #8c969e;
  font-size: 10px;
  font-weight: 500;
  background: #fcfcfd;
  padding: 13px 22px;
}
td {
  padding: 17px 22px;
  border-top: 1px solid #eef1f3;
}
td .sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
}
.tablefoot {
  padding: 15px 22px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
.listrow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #edf0f2;
}
.listrow:last-child {
  border: 0;
}
.symbol {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #f1f6f4;
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.chart {
  height: 173px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 20px 10px 25px;
  border-bottom: 1px solid var(--line);
}
.bar-group {
  flex: 1;
  display: flex;
  gap: 5px;
  height: 100%;
  align-items: flex-end;
  position: relative;
}
.bar {
  flex: 1;
  background: #77b5a1;
  border-radius: 4px 4px 0 0;
}
.bar.pale {
  background: #dcebe5;
}
.bar-label {
  position: absolute;
  bottom: -19px;
  font-size: 9px;
  color: var(--muted);
  width: 100%;
  text-align: center;
}
.legend {
  display: flex;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 19px;
}
.progress {
  height: 5px;
  background: #edf1ef;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
}
.progress span {
  height: 100%;
  display: block;
  background: #75ac99;
}
.timeline {
  padding-left: 10px;
}
.event {
  position: relative;
  border-left: 1px solid #dce9e3;
  padding: 0 0 27px 24px;
  font-size: 12px;
  line-height: 1.7;
}
.event:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #81b6a2;
  left: -5px;
  top: 5px;
  border: 2px solid white;
  box-sizing: content-box;
}
.event.pending:before {
  background: #d5dce0;
}
.event:last-child {
  padding-bottom: 0;
  border: 0;
}
.event small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.patient-hero {
  padding: 28px;
  background: linear-gradient(120deg, #edf6f1, #f7faf8);
  border: 1px solid #e0ebe4;
  border-radius: 13px;
}
.patient-hero h2 {
  font-size: 23px;
  margin: 8px 0;
}
.mealart {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 166px;
  background: #f1f5ef;
  overflow: hidden;
}
.plate {
  position: relative;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: #fbfaf6;
  border: 13px solid white;
  box-shadow: 0 7px 16px #52665116;
}
.food {
  position: absolute;
}
.rice {
  background: #eee6c9;
  width: 51px;
  height: 61px;
  left: 6px;
  top: 24px;
  border-radius: 47%;
}
.protein {
  background: repeating-linear-gradient(
    125deg,
    #d7ab77,
    #d7ab77 8px,
    #bc8c60 9px,
    #d7ab77 11px
  );
  width: 47px;
  height: 65px;
  right: 9px;
  top: 31px;
  transform: rotate(-25deg);
  border-radius: 45%;
}
.veg {
  background: #669165;
  width: 35px;
  height: 27px;
  right: 26px;
  top: 6px;
  border-radius: 50%;
  box-shadow:
    19px 9px #80a575,
    -21px 3px #9caf74;
}
.mealgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.mealoption {
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
  background: white;
  text-align: left;
  padding: 0;
}
.mealoption.selected {
  border: 2px solid var(--accent);
}
.mealoption .detail {
  padding: 18px;
}
.mealoption .detail p {
  font-size: 11px;
  color: var(--muted);
  margin: 7px 0 13px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chip {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  padding: 9px 14px;
  font-size: 12px;
}
.chip.active {
  background: var(--soft);
  border-color: #9dbdaf;
  color: var(--accent);
}
.stepper {
  display: flex;
  gap: 24px;
  margin: 25px 0 30px;
  font-size: 12px;
  color: #a0a9af;
}
.stepper .active {
  color: var(--accent);
}
.auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 31px);
  background: white;
}
.auth-story {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #edf5f0;
}
.auth-story h1 {
  font-size: 49px;
  line-height: 1.12;
  max-width: 420px;
  margin: 48px 0 22px;
}
.auth-content {
  padding: 65px;
  max-width: 620px;
  width: 100%;
  margin: auto;
}
.rolecard {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  margin-top: 12px;
}
.rolecard:hover {
  border-color: var(--accent);
  background: #f9fcfa;
}
.rolecard p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.onboard {
  max-width: 790px;
  margin: 45px auto;
}
.kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.kanban-col {
  background: #eef2f3;
  border-radius: 12px;
  padding: 16px;
}
.kanban-col > h3 {
  margin: 3px 0 20px;
  font-size: 12px;
}
.ticket {
  background: white;
  padding: 18px;
  border-radius: 9px;
  border: 1px solid var(--line);
  margin-bottom: 13px;
}
.ticket p {
  font-size: 11px;
  color: var(--muted);
  margin: 10px 0;
}
.cart {
  margin: 30px auto;
  width: 174px;
  height: 229px;
  background: linear-gradient(110deg, #e2e7e8, #f7f9f9 50%, #c5ccce);
  border: 2px solid #b7c2c5;
  border-radius: 14px;
  box-shadow: 18px 18px 35px #334d4f13;
  padding: 18px;
  position: relative;
}
.cart:before,
.cart:after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 17px;
  height: 18px;
  background: #59686c;
  border-radius: 5px;
}
.cart:after {
  right: 20px;
}
.cart-screen {
  background: #334a4b;
  color: #b9e5d1;
  border-radius: 5px;
  padding: 11px;
  text-align: center;
  font-size: 12px;
  margin-bottom: 15px;
}
.cart-doors {
  display: flex;
  gap: 7px;
  height: 128px;
}
.cart-doors i {
  flex: 1;
  border: 1px solid #aebbc0;
  border-radius: 4px;
  background: linear-gradient(100deg, #cbd4d6, #edf1f2);
}
.reading {
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 10px 0;
}
.stars {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin: 28px 0;
}
.star {
  border: 0;
  background: none;
  font-size: 39px;
  color: #d6dedb;
}
.star.active {
  color: #d9ae65;
}
.center {
  text-align: center;
}
.success-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--accent);
  font-size: 29px;
  margin: 15px auto 23px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.screen-preview {
  height: 236px;
  overflow: hidden;
  background: #e8ecef;
  position: relative;
}
.screen-preview iframe {
  width: 1280px;
  height: 780px;
  transform: scale(0.3);
  transform-origin: top left;
  border: 0;
  pointer-events: none;
  background: white;
}
.screen-preview.mobile iframe {
  width: 390px;
  height: 780px;
  transform: scale(0.3);
  left: 50%;
  margin-left: -58.5px;
  position: absolute;
  border-radius: 20px;
}
.screen-caption {
  padding: 17px;
}
.screen-caption h3 {
  font-size: 12px;
}
.screen-caption p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
}
.journey {
  padding: 20px 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
}
.pagefooter {
  font-size: 10px;
  color: #98a2a9;
  margin-top: 27px;
  display: flex;
  justify-content: space-between;
}
.mobile-menu,
.bottomnav {
  display: none;
}
.embed .demo {
  display: none;
}
.embed .sidebar {
  top: 0;
}
.embed .auth {
  min-height: 100vh;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #263f38;
  color: white;
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 12px;
  z-index: 20;
  display: none;
  box-shadow: 0 8px 35px #0002;
}
#toast.show {
  display: block;
}
svg {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  flex-shrink: 0;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #75b9a9;
  outline-offset: 3px;
}
@media (min-width: 1550px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .screen-preview iframe {
    transform: scale(0.34);
  }
}
@media (max-width: 1050px) {
  .cols {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .auth-story {
    padding: 40px;
  }
  .auth-content {
    padding: 35px;
  }
  .auth-story h1 {
    font-size: 38px;
  }
  .metrics {
    gap: 10px;
  }
  .metric {
    padding: 16px;
  }
}
@media (max-width: 700px) {
  .demo {
    font-size: 9px;
    height: 30px;
  }
  .demodetail {
    display: none;
  }
  .sidebar {
    display: none;
    z-index: 10;
    top: 30px;
    box-shadow: 10px 0 50px #263d3520;
  }
  .sidebar.open {
    display: flex;
  }
  .workspace {
    margin: 0;
  }
  .topbar {
    height: 62px;
    padding: 0 20px;
  }
  .crumb {
    font-size: 11px;
  }
  .topbar .avatar {
    display: none;
  }
  .profile-tools {
    gap: 6px;
  }
  .profile-label {
    display: none;
  }
  .role-trigger {
    height: 34px;
    font-size: 11px;
  }
  .mobile-menu {
    display: inline-flex;
    background: none;
    border: 0;
    padding: 3px;
  }
  .main {
    padding: 25px 19px 90px;
  }
  .pagehead {
    align-items: flex-start;
    margin-bottom: 23px;
  }
  .pagehead h1 {
    font-size: 25px;
  }
  .pagehead > .btn {
    font-size: 10px;
    padding: 9px;
  }
  .pagehead p {
    font-size: 11px;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .metric .value {
    font-size: 28px;
    margin: 13px 0 6px;
  }
  .cols,
  .equal {
    grid-template-columns: 1fr;
  }
  .pad {
    padding: 20px;
  }
  .cardhead {
    padding: 19px;
  }
  .mealgrid {
    grid-template-columns: 1fr;
  }
  .mealart {
    height: 178px;
  }
  .patient-hero {
    padding: 23px;
  }
  .patient-hero h2 {
    font-size: 23px;
  }
  .kanban {
    grid-template-columns: 1fr;
  }
  .auth {
    display: block;
  }
  .auth-story {
    padding: 30px;
  }
  .auth-story h1 {
    font-size: 30px;
    margin: 25px 0 12px;
  }
  .auth-story .mini-flow {
    display: none;
  }
  .auth-content {
    padding: 30px 22px;
  }
  .onboard {
    margin: 24px 18px;
  }
  .stepper {
    gap: 14px;
    font-size: 10px;
  }
  .bottomnav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: #fffffff5;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 8;
  }
  .bottomnav a {
    display: grid;
    gap: 5px;
    justify-items: center;
    color: #8b969b;
    font-size: 9px;
  }
  .bottomnav a.active {
    color: var(--accent);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .screen-preview iframe {
    transform: scale(0.27);
  }
  .gallery .main {
    padding-bottom: 30px;
  }
  .journey {
    font-size: 10px;
    gap: 10px;
  }
  .pagefooter {
    font-size: 9px;
    gap: 15px;
  }
  .toolbar {
    padding: 15px;
    flex-wrap: wrap;
  }
  #toast {
    bottom: 80px;
    max-width: 90%;
    width: max-content;
  }
  .topbar .profile-label {
    display: none;
  }
}
@media print {
  .sidebar,
  .demo,
  .topbar,
  .bottomnav {
    display: none;
  }
  .workspace {
    margin: 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card {
    break-inside: avoid;
  }
  .main {
    padding: 10px;
  }
}
.screen-preview img {
  display: block;
  width: 100%;
  height: auto;
}
.screen-preview.mobile img {
  width: 118px;
  max-width: none;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 3px 16px #223b3520;
}
