:root {
  --ew-bg: #f4f1e8;
  --ew-surface: #f8f2e3;
  --ew-surface-soft: #efe5d2;
  --ew-surface-muted: #e4d7c0;
  --ew-line: #ddd5c7;
  --ew-line-strong: #c8bead;
  --ew-text: #253126;
  --ew-muted: #667064;
  --ew-dim: #8a9186;
  --ew-leaf: #4f664f;
  --ew-leaf-soft: #e5eadf;
  --ew-sage: #68755f;
  --ew-sage-soft: #edf0e8;
  --ew-clay: #9a6b4e;
  --ew-clay-soft: #eadccc;
  --ew-danger: #963f36;
  --ew-light-text: #f8f2e3;
  --ew-font: "M PLUS Rounded 1c", "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Noto Sans CJK JP", "Noto Sans CJK SC", "Noto Sans JP", "Noto Sans SC", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ew-radius: 14px;
  --ew-radius-sm: 10px;
  --ew-shadow: 0 14px 38px rgba(55, 48, 37, .08);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  background: var(--ew-bg);
  color: var(--ew-text);
  font-family: var(--ew-font);
  letter-spacing: 0;
}
button, input { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

body.ew-image-viewer-open {
  overflow: hidden;
}

.ew {
  min-height: 100vh;
  background: var(--ew-bg);
}

.ew-kicker {
  margin: 0 0 8px;
  color: var(--ew-clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ew-access {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.ew-access-panel {
  width: min(482px, 100%);
  padding: 36px;
  border: 1px solid var(--ew-line);
  border-radius: 18px;
  background: var(--ew-surface);
  box-shadow: var(--ew-shadow);
}

.ew-access-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.ew-access-name {
  color: var(--ew-leaf);
  font-size: 17px;
  font-weight: 850;
}

.ew-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--ew-line);
  border-radius: 999px;
  background: var(--ew-surface-soft);
}

.ew-lang button {
  width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--ew-muted);
  background: transparent;
  font-weight: 800;
}

.ew-lang button.active {
  color: var(--ew-light-text);
  background: var(--ew-leaf);
}

.ew-lang-app button {
  width: 31px;
  height: 28px;
}

.ew-access-panel h1 {
  margin: 10px 0 12px;
  font-size: 33px;
  line-height: 1.18;
  font-weight: 820;
}

.ew-access-panel p:not(.ew-kicker) {
  margin: 0;
  color: var(--ew-muted);
  line-height: 1.72;
}

.ew-access-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.ew-access-form input,
.ew-password-field input {
  min-width: 0;
  width: 100%;
  height: 50px;
  border: 1px solid var(--ew-line-strong);
  border-radius: 12px;
  padding: 0 15px;
  outline: none;
  color: var(--ew-text);
  background: #f9f5ea;
}

.ew-password-field {
  position: relative;
}

.ew-password-field input {
  padding-right: 52px;
}

.ew-eye {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 38px;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--ew-muted);
  background: transparent;
  font-size: 16px;
}

.ew-eye span {
  position: relative;
  width: 18px;
  height: 12px;
  display: inline-block;
  border: 1.5px solid currentColor;
  border-radius: 999px / 70%;
}

.ew-eye span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.ew-eye:not(.is-visible) span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-38deg);
  transform-origin: center;
}

.ew-eye:hover {
  border-color: var(--ew-line);
  background: var(--ew-surface-soft);
}

.ew-access-form input:focus,
.ew-password-field input:focus {
  border-color: var(--ew-leaf);
  box-shadow: 0 0 0 3px rgba(79, 102, 79, .12);
}

.ew-access-form > button[type="submit"],
.ew-action,
.ew-filter-list button {
  border: 1px solid var(--ew-line-strong);
  color: var(--ew-text);
  background: var(--ew-surface);
}

.ew-access-form > button[type="submit"] {
  height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  color: var(--ew-light-text);
  border-color: var(--ew-leaf);
  background: var(--ew-leaf);
  font-weight: 800;
}

.ew-access-form > button[type="submit"] {
  color: #33412f;
  border-color: #b8c0ad;
  background: var(--ew-sage-soft);
}

.ew-access-form > button[type="submit"]:hover {
  border-color: var(--ew-sage);
  background: #dde5d7;
}

.ew-access-error {
  min-height: 20px;
  margin-top: 14px;
  color: var(--ew-danger);
  font-size: 13px;
}

.ew-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  max-width: min(360px, calc(100vw - 44px));
  padding: 12px 15px;
  border: 1px solid var(--ew-line-strong);
  border-radius: 12px;
  color: var(--ew-text);
  background: #f3ead8;
  box-shadow: var(--ew-shadow);
  font-size: 14px;
}

.ew-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr) 316px;
  gap: 16px;
  padding: 16px;
}

.ew-sidebar,
.ew-main,
.ew-context {
  border: 1px solid var(--ew-line);
  border-radius: var(--ew-radius);
  background: var(--ew-surface);
  box-shadow: var(--ew-shadow);
}

.ew-sidebar,
.ew-context {
  position: sticky;
  top: 16px;
  height: calc(100vh - 32px);
  overflow: auto;
}

.ew-sidebar {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.ew-brand {
  min-height: 48px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 0 2px;
  color: var(--ew-text);
}

.ew-brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.ew-brand small {
  color: var(--ew-dim);
  font-size: 11px;
  font-weight: 700;
}

.ew-nav {
  display: grid;
  gap: 6px;
  margin-top: 20px;
}

.ew-nav a,
.ew-filter-list button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 0 11px;
  color: var(--ew-muted);
  text-align: left;
}

.ew-nav a {
  border: 1px solid transparent;
}

.ew-nav a:hover,
.ew-nav a.active,
.ew-filter-list button:hover,
.ew-filter-list button.active {
  color: var(--ew-text);
  border-color: var(--ew-line);
  background: var(--ew-leaf-soft);
}

.ew-nav-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
  flex: 0 0 22px;
  color: var(--ew-leaf);
}

.ew-nav-icon-home::before,
.ew-nav-icon-home::after,
.ew-nav-icon-projects::before,
.ew-nav-icon-projects::after,
.ew-nav-icon-resumes::before,
.ew-nav-icon-resumes::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.ew-nav-icon-home::before {
  left: 5px;
  top: 7px;
  width: 12px;
  height: 10px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px;
}

.ew-nav-icon-home::after {
  left: 5px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.ew-nav-icon-projects::before {
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.ew-nav-icon-projects::after {
  left: 8px;
  top: 4px;
  width: 2px;
  height: 14px;
  background: currentColor;
  box-shadow: 4px 0 0 currentColor, -4px 4px 0 -1px currentColor, 0 4px 0 -1px currentColor, 4px 4px 0 -1px currentColor, -4px 8px 0 -1px currentColor, 0 8px 0 -1px currentColor, 4px 8px 0 -1px currentColor;
}

.ew-nav-icon-resumes {
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: scale(.78);
}

.ew-nav-icon-resumes::before {
  right: -2px;
  top: -2px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: var(--ew-surface);
  border-radius: 0 3px 0 2px;
}

.ew-nav-icon-resumes::after {
  left: 5px;
  right: 5px;
  top: 9px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.ew-side-block {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--ew-line);
}

.ew-side-block p {
  margin: 0 0 10px;
  color: var(--ew-dim);
  font-size: 12px;
  font-weight: 800;
}

.ew-filter-list {
  display: grid;
  gap: 6px;
}

.ew-side-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--ew-line);
  color: var(--ew-dim);
  font-size: 12px;
}

.ew-identity-menu {
  min-width: 0;
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ew-identity-menu > [data-access-state] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ew-logout {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0;
  color: rgba(79, 102, 79, .48);
  background: transparent;
}

.ew-logout span {
  width: 0;
  height: 0;
  display: block;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
}

.ew-logout:hover {
  color: var(--ew-leaf);
  border-color: var(--ew-line);
  background: var(--ew-leaf-soft);
}

.ew-main {
  min-height: calc(100vh - 32px);
  overflow: hidden;
}

.ew-main-head {
  padding: 26px 28px 20px;
  border-bottom: 1px solid var(--ew-line);
  background: var(--ew-surface-soft);
}

.ew-main-head h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
}

.ew-main-head p[data-page-subtitle] {
  margin: 9px 0 0;
  max-width: 780px;
  color: var(--ew-muted);
  line-height: 1.65;
}

.ew-main-head [data-page-kicker]:empty,
.ew-main-head [data-page-title]:empty,
.ew-main-head [data-page-subtitle]:empty {
  display: none;
}

.ew-content {
  min-height: 580px;
  padding: 24px 28px 32px;
}

.ew-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0 12px;
}

.ew-section-head h2 {
  margin: 0;
  font-size: 21px;
}

.ew-section-head p {
  margin: 6px 0 0;
  color: var(--ew-muted);
  line-height: 1.55;
}

.ew-stack {
  display: grid;
  gap: 10px;
}

.ew-stack.compact .ew-item {
  min-height: 128px;
}

.ew-item {
  width: 100%;
  min-height: 156px;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--ew-line);
  border-radius: var(--ew-radius-sm);
  background: var(--ew-surface);
  text-align: left;
}

.ew-item:hover {
  border-color: var(--ew-line-strong);
  background: var(--ew-surface-soft);
}

.ew-thumb {
  min-height: 132px;
  border: 1px solid var(--ew-line);
  border-radius: 9px;
  background: var(--ew-surface-muted);
  overflow: hidden;
}

.ew-thumb > div {
  height: 100%;
  min-height: 132px;
  display: grid;
  place-items: center;
  color: var(--ew-dim);
  font-weight: 800;
}

.ew-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ew-project-icon,
.ew-doc-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-block;
  color: var(--ew-muted);
}

.ew-project-icon {
  border: 2px solid currentColor;
  border-radius: 8px;
}

.ew-project-icon::before,
.ew-project-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 999px;
}

.ew-project-icon::before {
  left: 8px;
  right: 8px;
  top: 10px;
  height: 2px;
  box-shadow: 0 7px 0 currentColor;
}

.ew-project-icon::after {
  left: 10px;
  top: -7px;
  width: 10px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  background: transparent;
  border-radius: 6px 6px 0 0;
}

.ew-doc-icon {
  border: 2px solid currentColor;
  border-radius: 6px;
}

.ew-doc-icon::before {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: var(--ew-surface-muted);
  border-radius: 0 6px 0 4px;
}

.ew-doc-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 15px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 7px 0 currentColor;
}

.ew-item-body {
  min-width: 0;
}

.ew-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ew-item-top small {
  color: var(--ew-dim);
  font-size: 12px;
}

.ew-item h3 {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.28;
}

.ew-item p {
  margin: 8px 0 0;
  color: var(--ew-muted);
  line-height: 1.58;
}

.ew-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.ew-pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid #cbd8c8;
  border-radius: 999px;
  color: var(--ew-leaf);
  background: var(--ew-leaf-soft);
  font-size: 12px;
  font-weight: 800;
}

.ew-pill.muted {
  color: var(--ew-muted);
  border-color: var(--ew-line);
  background: var(--ew-surface-soft);
}

.ew-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 0 13px;
  font-weight: 700;
  border-color: var(--ew-line);
  color: #43513f;
  background: #f3ead8;
}

.ew-action:hover {
  border-color: var(--ew-line-strong);
  background: var(--ew-clay-soft);
}

.ew-action.primary {
  color: #33412f;
  border-color: #b8c0ad;
  background: var(--ew-sage-soft);
}

.ew-action.primary:hover {
  color: #263324;
  border-color: var(--ew-sage);
  background: #dde5d7;
}

.ew-action.block {
  width: 100%;
}

.ew-mini-actions,
.ew-file-actions {
  display: grid;
  gap: 8px;
}

.ew-context {
  padding: 16px;
}

.ew-context-section {
  padding: 15px 0;
  border-top: 1px solid var(--ew-line);
}

.ew-context-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.ew-context-section h2 {
  margin: 0 0 10px;
  font-size: 15px;
}

.ew-context-section p {
  margin: 0;
  color: var(--ew-muted);
  line-height: 1.65;
}

.ew-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.ew-facts div {
  padding: 12px;
  border: 1px solid var(--ew-line);
  border-radius: 10px;
  background: var(--ew-surface-soft);
}

.ew-facts dt {
  color: var(--ew-muted);
  font-size: 12px;
}

.ew-facts dd {
  margin: 5px 0 0;
  color: var(--ew-leaf);
  font-size: 24px;
  font-weight: 820;
}

.ew-code {
  display: grid;
  gap: 4px;
  margin-top: 9px;
  padding: 12px;
  border: 1px solid var(--ew-line);
  border-radius: 10px;
  color: var(--ew-text);
  background: var(--ew-surface-soft);
  word-break: break-word;
}

.ew-code span,
.ew-code small {
  color: var(--ew-muted);
}

.ew-detail {
  display: grid;
  gap: 14px;
}

.ew-preview-surface {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ew-line);
  border-radius: var(--ew-radius-sm);
  background: var(--ew-surface-muted);
  overflow: hidden;
}

.ew-preview-surface img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}

.ew-preview-surface span {
  color: var(--ew-dim);
  font-weight: 800;
}

.ew-detail-section,
.ew-empty {
  border: 1px solid var(--ew-line);
  border-radius: var(--ew-radius-sm);
  background: var(--ew-surface);
}

.ew-detail-section {
  padding: 20px;
}

.ew-content-body {
  padding: 22px;
}

.ew-detail-title h2 {
  margin: 10px 0 0;
  font-size: 28px;
  line-height: 1.18;
}

.ew-detail-section > p {
  color: var(--ew-muted);
  line-height: 1.72;
}

.ew-detail-section h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

.ew-rich {
  color: #354237;
  line-height: 1.78;
}

.ew-rich img {
  border-radius: 10px;
  margin: 14px 0;
}

.ew-zoomable-image {
  cursor: zoom-in;
}

.ew-zoomable-image:focus {
  outline: 3px solid rgba(79, 102, 79, .32);
  outline-offset: 3px;
}

.ew-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ew-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--ew-line);
  border-radius: 9px;
}

.ew-timeline {
  display: grid;
  gap: 0;
}

.ew-timeline-row {
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--ew-line);
}

.ew-timeline-row:first-child {
  border-top: 0;
}

.ew-timeline-row p {
  margin: 8px 0;
  color: var(--ew-muted);
  line-height: 1.6;
}

.ew-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--ew-surface-muted);
}

.ew-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--ew-leaf);
}

.ew-doc-view {
  min-height: 640px;
  border: 1px solid var(--ew-line);
  border-radius: var(--ew-radius-sm);
  overflow: hidden;
  background: var(--ew-surface-muted);
}

.ew-doc-view iframe,
.ew-doc-view object {
  width: 100%;
  height: 720px;
  border: 0;
  background: var(--ew-surface);
}

.ew-resume-images {
  display: grid;
  gap: 16px;
}

.ew-resume-images img {
  width: 100%;
  border: 1px solid var(--ew-line);
  border-radius: var(--ew-radius-sm);
  background: var(--ew-surface-muted);
}

.ew-qa-list {
  display: grid;
  gap: 12px;
}

.ew-qa-item {
  padding: 16px;
  border: 1px solid var(--ew-line);
  border-radius: var(--ew-radius-sm);
  background: #fbf7ed;
}

.ew-qa-item h4 {
  margin: 10px 0 8px;
  font-size: 17px;
  line-height: 1.48;
}

.ew-qa-answer p {
  margin: 0;
  color: var(--ew-muted);
  line-height: 1.78;
}

.ew-image-viewer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(24, 28, 24, .86);
}

.ew-image-viewer-frame {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ew-image-viewer img {
  max-width: min(96vw, 1600px);
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .34);
  transform-origin: center center;
  transition: transform .12s ease-out;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.ew-image-viewer img.is-dragging {
  cursor: grabbing;
  transition: none;
}

.ew-image-viewer-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(248, 242, 227, .36);
  border-radius: 999px;
  color: var(--ew-light-text);
  background: rgba(37, 49, 38, .76);
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.ew-image-viewer-close:hover,
.ew-image-viewer-close:focus {
  background: rgba(79, 102, 79, .92);
}

.ew-empty {
  padding: 28px;
  color: var(--ew-muted);
}

@media (max-width: 1180px) {
  .ew-app {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .ew-context {
    position: static;
    height: auto;
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .ew-app {
    display: block;
    padding: 12px;
  }
  .ew-sidebar,
  .ew-context,
  .ew-main {
    position: static;
    height: auto;
    margin-bottom: 12px;
  }
  .ew-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ew-nav a {
    justify-content: center;
    flex-direction: column;
    min-height: 58px;
    gap: 5px;
    padding: 8px 6px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }
  .ew-nav span {
    display: inline;
  }
  .ew-nav i {
    width: auto;
  }
  .ew-side-block {
    display: none;
  }
  .ew-side-foot {
    margin-top: 18px;
  }
  .ew-main-head {
    padding: 22px 20px 18px;
  }
  .ew-main-head h1 {
    font-size: 26px;
  }
  .ew-content {
    padding: 18px;
  }
  .ew-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .ew-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }
  .ew-thumb,
  .ew-thumb > div {
    min-height: 96px;
  }
  .ew-gallery,
  .ew-facts {
    grid-template-columns: 1fr;
  }
  .ew-timeline-row {
    grid-template-columns: 1fr;
  }
  .ew-access {
    padding: 18px;
  }
  .ew-access-panel {
    padding: 28px;
  }
  .ew-access-form {
    grid-template-columns: 1fr;
  }
  .ew-toast {
    right: 12px;
    bottom: 12px;
  }
  .ew-image-viewer {
    padding: 14px;
  }
  .ew-image-viewer-close {
    top: 10px;
    right: 10px;
  }
}
