:root {
  --dk-teal: #0f6f68;
  --dk-teal-dark: #143f3a;
  --dk-coral: #e9564a;
  --dk-coral-dark: #cf463d;
  --dk-mint: #eaf6f3;
  --dk-paper: #ffffff;
  --dk-soft: #fbfdfb;
  --dk-border: #dbe9e6;
  --dk-text: #263331;
  --dk-muted: #687a76;
  --dk-shadow: 0 20px 54px rgba(38, 51, 49, .09);
  --dk-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dk-soft);
  color: var(--dk-text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--dk-teal);
  text-decoration: none;
}

a:hover {
  color: var(--dk-teal-dark);
}

.screen-reader-text,
.dk-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.dk-skip:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
}

.dk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(31, 118, 111, .14);
  box-shadow: 0 8px 24px rgba(20, 63, 58, .06);
  backdrop-filter: blur(14px);
}

.dk-header__bar {
  display: grid;
  min-height: 30px;
  place-items: center;
  background: var(--dk-teal);
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
}

.dk-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 148px 42px;
  gap: 18px;
  align-items: center;
  max-width: 1240px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 22px;
}

.dk-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--dk-teal-dark);
  font-weight: 700;
}

.dk-brand__mark {
  width: 34px;
  height: 34px;
  border: 2px solid var(--dk-teal);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 43%, var(--dk-teal) 43% 57%, transparent 57%),
    linear-gradient(0deg, transparent 43%, var(--dk-teal) 43% 57%, transparent 57%),
    var(--dk-mint);
}

.dk-brand__text {
  font-size: 1.2rem;
  line-height: 1.2;
  white-space: nowrap;
}

.dk-nav__list,
.dk-footer__links {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dk-nav a {
  color: var(--dk-text);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.dk-search {
  position: relative;
}

.dk-search input {
  width: 100%;
  height: 40px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--dk-border);
  border-radius: 999px;
  background: #fff;
}

.dk-search button,
.dk-menu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dk-search button {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--dk-teal);
  border-radius: 50%;
  transform: translateY(-50%);
}

.dk-search button::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--dk-teal);
  transform: rotate(45deg);
}

.dk-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--dk-border);
  border-radius: 8px;
}

.dk-menu-toggle span,
.dk-menu-toggle::before,
.dk-menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--dk-teal-dark);
}

.dk-mobile-menu {
  display: none;
}

.dk-main {
  min-height: 70vh;
}

.dk-hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 102px));
  background: #eef7f4;
}

.dk-hero__bg {
  position: absolute;
  inset: 0;
}

.dk-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 253, 251, .98) 0%, rgba(251, 253, 251, .9) 36%, rgba(251, 253, 251, .32) 68%, rgba(251, 253, 251, .08) 100%),
    linear-gradient(180deg, rgba(251, 253, 251, .08), rgba(251, 253, 251, .7));
}

.dk-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.dk-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, .58fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  max-width: 1180px;
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 22px;
}

.dk-pill,
.dk-section__eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(31, 118, 111, .1);
  color: var(--dk-teal-dark);
  font-size: .82rem;
  font-weight: 700;
}

.dk-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--dk-teal-dark);
  font-size: 4.6rem;
  font-weight: 700;
  line-height: .98;
}

.dk-hero__sub {
  margin: 14px 0 0;
  color: var(--dk-teal-dark);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.dk-hero__lead {
  max-width: 690px;
  margin: 18px 0 0;
  color: #314642;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.9;
}

.dk-hero__actions,
.dk-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dk-button,
.dk-link-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid rgba(31, 118, 111, .24);
  border-radius: 999px;
  background: #fff;
  color: var(--dk-teal-dark);
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 12px 26px rgba(38, 51, 49, .08);
}

.dk-button--primary {
  border-color: transparent;
  background: linear-gradient(180deg, var(--dk-coral), var(--dk-coral-dark));
  color: #fff;
  box-shadow: 0 16px 30px rgba(207, 70, 61, .2);
}

.dk-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.dk-trust li {
  padding: 10px 14px;
  border: 1px solid rgba(31, 118, 111, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--dk-teal-dark);
  font-size: .92rem;
  font-weight: 700;
}

.dk-mascot {
  align-self: center;
  justify-self: end;
  width: min(380px, 100%);
  padding: 16px;
  border: 1px solid rgba(31, 118, 111, .2);
  border-radius: var(--dk-radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--dk-shadow);
}

.dk-mascot img {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--dk-radius);
  background: #fffdfa;
  object-fit: contain;
  object-position: center;
}

.dk-mascot p:not(.dk-mascot__label) {
  position: relative;
  margin: 14px 0 0;
  padding: 12px 13px;
  border: 1px solid rgba(31, 118, 111, .18);
  border-radius: 999px;
  color: var(--dk-teal-dark);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.dk-section,
.dk-archive,
.dk-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 22px;
}

.dk-section__head {
  max-width: 820px;
  margin-bottom: 28px;
}

.dk-section__head--row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.dk-section h2,
.dk-archive h1,
.dk-page h1,
.dk-article h1 {
  margin: 0;
  color: var(--dk-teal-dark);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.35;
}

.dk-section__head p:not(.dk-section__eyebrow),
.dk-archive__head p,
.dk-archive__desc {
  color: var(--dk-muted);
  line-height: 1.9;
}

.dk-manga-guide__figure,
.dk-products,
.dk-categories {
  border-radius: var(--dk-radius);
}

.dk-manga-guide__figure {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(31, 118, 111, .16);
  background: #fff;
  box-shadow: var(--dk-shadow);
}

.dk-manga-guide__figure img {
  display: block;
  border-radius: 6px;
}

.dk-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dk-category-tile {
  display: grid;
  gap: 10px;
  min-height: 116px;
  place-items: center;
  padding: 16px 10px;
  border: 1px solid rgba(31, 118, 111, .14);
  border-radius: var(--dk-radius);
  background: #fff;
  color: var(--dk-teal-dark);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 30px rgba(38, 51, 49, .05);
}

.dk-category-tile__icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 2px solid var(--dk-teal);
  border-radius: 8px;
  background: var(--dk-mint);
}

.dk-category-tile__icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid var(--dk-teal);
  border-radius: 4px;
}

.dk-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dk-product-card .pochipp-box,
.dk-article__content .pochipp-box {
  position: relative;
  display: grid !important;
  grid-template-columns: 132px minmax(0, 1fr);
  grid-template-areas:
    "image body"
    "image btns"
    "image logo";
  gap: 12px 18px;
  width: 100% !important;
  margin: 0 !important;
  padding: 18px !important;
  border: 1px solid rgba(31, 118, 111, .18) !important;
  border-radius: var(--dk-radius) !important;
  background: linear-gradient(145deg, #fff 0%, #fbfdfc 62%, #fff8f1 100%) !important;
  box-shadow: var(--dk-shadow) !important;
  overflow: hidden;
}

.dk-article__content .pochipp-box {
  margin: 24px 0 !important;
}

.dk-product-card .pochipp-box::after,
.dk-article__content .pochipp-box::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--dk-teal), var(--dk-coral));
}

.pochipp-box__image {
  grid-area: image;
}

.pochipp-box__body {
  grid-area: body;
  min-width: 0;
}

.pochipp-box__btns {
  grid-area: btns;
}

.pochipp-box__logo {
  grid-area: logo;
  justify-self: end;
  opacity: .58;
}

.pochipp-box__image img {
  border: 1px solid rgba(31, 118, 111, .12);
  border-radius: var(--dk-radius);
  background: #fff;
  object-fit: contain;
}

.pochipp-box__title {
  color: var(--dk-teal-dark) !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

.pochipp-box__info {
  color: var(--dk-muted) !important;
  font-size: .9rem !important;
  line-height: 1.75 !important;
}

.pochipp-box__btn {
  display: flex !important;
  width: 100% !important;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  background: linear-gradient(180deg, var(--dk-coral), var(--dk-coral-dark)) !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.dk-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dk-post-card {
  overflow: hidden;
  border: 1px solid rgba(31, 118, 111, .14);
  border-radius: var(--dk-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(38, 51, 49, .06);
}

.dk-post-card__thumb {
  display: block;
  aspect-ratio: 1.52 / 1;
  overflow: hidden;
}

.dk-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.dk-post-card:hover .dk-post-card__thumb img {
  transform: scale(1.04);
}

.dk-post-card__body {
  padding: 16px;
}

.dk-post-card__meta {
  margin: 0 0 8px;
  color: var(--dk-muted);
  font-size: .78rem;
  font-weight: 600;
}

.dk-post-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.dk-post-card__title a {
  color: var(--dk-teal-dark);
}

.dk-post-card__excerpt {
  margin: 10px 0 0;
  color: var(--dk-muted);
  font-size: .88rem;
  line-height: 1.7;
}

.dk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) 22px 92px;
}

.dk-article,
.dk-page,
.dk-archive__head {
  border: 1px solid rgba(31, 118, 111, .14);
  border-radius: var(--dk-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(38, 51, 49, .055);
}

.dk-article,
.dk-page {
  padding: clamp(24px, 4vw, 44px);
}

.dk-archive__head {
  margin-bottom: 26px;
  padding: clamp(22px, 4vw, 38px);
  border-left: 6px solid var(--dk-teal);
}

.dk-article__header {
  margin-bottom: 26px;
}

.dk-article__meta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  color: var(--dk-muted);
  font-size: .86rem;
  font-weight: 600;
}

.dk-article__thumb {
  margin: 0 0 30px;
  overflow: hidden;
  border-radius: var(--dk-radius);
}

.dk-article__thumb img {
  display: block;
  width: 100%;
}

.dk-toc {
  position: relative;
  overflow: hidden;
  margin: 0 0 30px;
  padding: 18px;
  border: 1px solid rgba(23, 63, 58, .13);
  border-radius: var(--dk-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(246, 251, 249, .94) 62%, rgba(255, 247, 242, .78) 100%);
  box-shadow: 0 14px 32px rgba(23, 63, 58, .055);
}

.dk-toc::before,
.dk-share::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--dk-teal), rgba(233, 86, 74, .78));
}

.dk-toc__head,
.dk-share__head {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 63, 58, .1);
}

.dk-toc__head span,
.dk-share__head span {
  color: rgba(23, 63, 58, .56);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 0;
}

.dk-toc__head p,
.dk-share__head p {
  margin: 0;
  color: var(--dk-teal-dark);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.35;
}

.dk-toc__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: dk-toc;
}

.dk-toc__item {
  min-width: 0;
  counter-increment: dk-toc;
}

.dk-toc__item a {
  position: relative;
  display: block;
  min-height: 34px;
  padding: 8px 10px 8px 34px;
  border: 1px solid rgba(23, 63, 58, .09);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: var(--dk-ink-soft);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.dk-toc__item a::before {
  content: counter(dk-toc, decimal-leading-zero);
  position: absolute;
  top: 9px;
  left: 10px;
  color: var(--dk-teal);
  font-size: .68rem;
  font-weight: 700;
}

.dk-toc__item--h3 a {
  color: var(--dk-muted);
  font-size: .78rem;
  font-weight: 600;
}

.dk-toc__item a:hover {
  border-color: rgba(15, 111, 104, .24);
  background: #fff;
  color: var(--dk-teal-dark);
  transform: translateY(-1px);
}

.dk-article__content {
  font-size: 1rem;
  line-height: 1.9;
}

.dk-article__content p,
.dk-article__content li {
  font-size: 1rem;
  line-height: 1.9;
}

.dk-article__content h2 {
  margin-top: 2.4em;
  padding: .85em 1em;
  border-left: 5px solid var(--dk-teal);
  border-radius: var(--dk-radius);
  background: linear-gradient(90deg, rgba(234, 246, 243, .95), rgba(255, 255, 255, .76));
  color: var(--dk-teal-dark);
  font-weight: 700;
}

.dk-article__content h3 {
  margin-top: 2em;
  padding-bottom: .5em;
  border-bottom: 1px solid var(--dk-border);
  color: var(--dk-teal-dark);
  font-weight: 600;
}

.dk-article__content h2[id],
.dk-article__content h3[id] {
  scroll-margin-top: 112px;
}

.dk-article__content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: .94rem;
  line-height: 1.75;
  white-space: nowrap;
}

.dk-article__content th,
.dk-article__content td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--dk-border);
  text-align: left;
  vertical-align: top;
}

.dk-article__content th {
  color: var(--dk-teal-dark);
  font-weight: 700;
}

.dk-share {
  position: relative;
  overflow: hidden;
  margin: 38px 0 0;
  padding: 18px;
  border: 1px solid rgba(23, 63, 58, .13);
  border-radius: var(--dk-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(250, 253, 252, .95) 64%, rgba(234, 246, 243, .78) 100%);
  box-shadow: 0 14px 32px rgba(23, 63, 58, .055);
}

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

.dk-share__button {
  appearance: none;
  display: inline-flex;
  min-width: 0;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid rgba(23, 63, 58, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--dk-teal-dark);
  cursor: pointer;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
}

.dk-share__button:hover {
  border-color: rgba(15, 111, 104, .28);
  background: #fff;
  color: var(--dk-teal-dark);
  transform: translateY(-1px);
}

.dk-share__button--copy.is-copied {
  border-color: rgba(233, 86, 74, .22);
  background: #fff3f1;
  color: #9e332e;
}

.dk-sidebar {
  min-width: 0;
}

.dk-widget {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(31, 118, 111, .14);
  border-radius: var(--dk-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(38, 51, 49, .055);
}

.desk-kaizen-premium .dk-sidebar #block-21.dk-widget .wp-block-categories-list {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.desk-kaizen-premium .dk-sidebar #block-21.dk-widget .wp-block-categories-list .cat-item {
  display: flex !important;
  min-height: 46px !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 10px 11px !important;
  border: 1px solid rgba(31, 118, 111, .15) !important;
  border-radius: 8px !important;
  background: #fbfdfc !important;
  color: #1f766f !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.desk-kaizen-premium .dk-sidebar #block-21.dk-widget .wp-block-categories-list .cat-item a {
  display: block !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #123f3a !important;
  font-size: .94rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

.desk-kaizen-premium .dk-sidebar #block-21.dk-widget .wp-block-categories-list .cat-item a:hover {
  color: var(--dk-teal) !important;
}

.desk-kaizen-premium .dk-sidebar #block-21.dk-widget .dk-cat-count {
  display: inline-grid !important;
  flex: 0 0 auto !important;
  min-width: 32px !important;
  height: 24px !important;
  place-items: center !important;
  padding: 0 8px !important;
  border: 1px solid rgba(31, 118, 111, .1) !important;
  border-radius: 999px !important;
  background: #eaf6f3 !important;
  color: #1f766f !important;
  font-size: .76rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.dk-widget--sticky {
  position: sticky;
  top: 118px;
}

.dk-footer {
  margin-top: 40px;
  background: #143f3a;
  color: rgba(255, 255, 255, .86);
}

.dk-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 22px;
}

.dk-brand--footer,
.dk-footer a {
  color: #fff;
}

.dk-footer__brand p {
  max-width: 560px;
  line-height: 1.8;
}

.dk-footer__notice,
.dk-footer__copy {
  color: rgba(255, 255, 255, .66);
  font-size: .84rem;
}

.dk-footer__links {
  display: grid;
  justify-items: end;
}

.dk-footer__copy {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px 24px;
}

.dk-motion-ready [data-dk-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.dk-motion-ready [data-dk-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dk-button--primary {
  position: relative;
  overflow: hidden;
}

.dk-button--primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: skewX(-18deg);
  animation: dk-light-sweep 4.8s ease-in-out infinite;
}

@keyframes dk-light-sweep {
  0%, 45% { left: -45%; }
  70%, 100% { left: 120%; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  [data-dk-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .dk-header__inner {
    grid-template-columns: auto 1fr 42px;
  }

  .dk-nav,
  .dk-search {
    display: none;
  }

  .dk-menu-toggle {
    display: block;
  }

  .dk-mobile-menu.is-open {
    display: block;
    padding: 10px 22px 18px;
    border-top: 1px solid var(--dk-border);
    background: #fff;
  }

  .dk-mobile-menu .dk-nav__list {
    display: grid;
    gap: 8px;
    justify-content: stretch;
  }

  .dk-mobile-menu a {
    display: block;
    padding: 12px;
    border-radius: var(--dk-radius);
    background: var(--dk-mint);
    color: var(--dk-teal-dark);
    font-weight: 700;
  }

  .dk-hero__inner,
  .dk-layout,
  .dk-footer__inner {
    grid-template-columns: 1fr;
  }

  .dk-mascot {
    justify-self: stretch;
  }

  .dk-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dk-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dk-header__bar {
    min-height: 28px;
    font-size: .78rem;
  }

  .dk-header__inner {
    min-height: 62px;
    padding: 0 16px;
  }

  .dk-brand__text {
    font-size: 1.05rem;
  }

  .dk-hero {
    min-height: auto;
  }

  .dk-hero__bg::after {
    background: linear-gradient(180deg, rgba(251, 253, 251, .95), rgba(251, 253, 251, .8) 54%, rgba(251, 253, 251, .5));
  }

  .dk-hero__inner {
    padding: 42px 18px;
  }

  .dk-hero h1 {
    font-size: 3.3rem;
  }

  .dk-hero__sub {
    font-size: 1.38rem;
  }

  .dk-mascot {
    padding: 10px;
  }

  .dk-mascot p {
    border-radius: var(--dk-radius);
    font-size: .84rem;
  }

  .dk-hero__actions,
  .dk-section__actions,
  .dk-trust {
    display: grid;
  }

  .dk-button,
  .dk-link-button {
    width: 100%;
  }

  .dk-section,
  .dk-archive,
  .dk-page {
    padding: 46px 18px;
  }

  .dk-category-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .dk-category-tile {
    flex: 0 0 136px;
    scroll-snap-align: start;
  }

  .dk-product-grid,
  .dk-post-grid {
    grid-template-columns: 1fr;
  }

  .dk-product-card .pochipp-box,
  .dk-article__content .pochipp-box {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "badge"
      "image"
      "body"
      "btns"
      "logo" !important;
    gap: 12px !important;
    padding: 18px 16px 20px !important;
  }

  .dk-product-card .pochipp-box::before,
  .dk-article__content .pochipp-box::before {
    grid-area: badge;
  }

  .dk-product-card .pochipp-box__image,
  .dk-article__content .pochipp-box__image {
    grid-area: image !important;
    position: static !important;
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
    transform: none !important;
  }

  .dk-product-card .pochipp-box__image a,
  .dk-article__content .pochipp-box__image a {
    display: flex !important;
    width: 100% !important;
    justify-content: center;
  }

  .dk-product-card .pochipp-box__image img,
  .dk-article__content .pochipp-box__image img {
    position: static !important;
    display: block !important;
    width: min(180px, 72%) !important;
    max-width: 180px !important;
    height: auto !important;
    max-height: 150px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .dk-product-card .pochipp-box__body,
  .dk-article__content .pochipp-box__body {
    grid-area: body !important;
    position: static !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .dk-product-card .pochipp-box__btns,
  .dk-article__content .pochipp-box__btns {
    grid-area: btns !important;
    display: block !important;
    width: 100% !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
  }

  .dk-product-card .pochipp-box__btnwrap,
  .dk-article__content .pochipp-box__btnwrap {
    width: 100% !important;
    margin: 0 !important;
  }

  .dk-product-card .pochipp-box__logo,
  .dk-article__content .pochipp-box__logo {
    grid-area: logo !important;
    position: static !important;
    justify-self: center;
    margin: 0 !important;
  }

  .pochipp-box__title {
    font-size: .9rem !important;
    overflow-wrap: anywhere;
  }

  .pochipp-box__title a {
    overflow-wrap: anywhere;
  }

  .pochipp-box__info {
    font-size: .8rem !important;
    overflow-wrap: anywhere;
  }

  .pochipp-box__btn {
    min-height: 48px;
    padding: 0 16px !important;
  }

  .dk-article,
  .dk-page {
    padding: 22px 18px;
  }

  .dk-toc,
  .dk-share {
    padding: 15px;
  }

  .dk-toc__head,
  .dk-share__head {
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .dk-toc__list {
    gap: 7px;
  }

  .dk-toc__item a {
    min-height: 38px;
    padding: 8px 8px 8px 30px;
    font-size: .76rem;
    line-height: 1.42;
  }

  .dk-toc__item--h3 a {
    font-size: .72rem;
  }

  .dk-toc__item a::before {
    left: 8px;
    font-size: .62rem;
  }

  .dk-share__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dk-share__button {
    min-height: 38px;
    font-size: .78rem;
  }

  .dk-article__content,
  .dk-article__content p,
  .dk-article__content li {
    font-size: .94rem;
    line-height: 1.86;
  }

  .dk-article__content h2 {
    font-size: 1.22rem;
    line-height: 1.45;
  }

  .dk-article__content h3 {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .dk-article__content table {
    font-size: .82rem;
    display: table;
    min-width: 0;
    overflow-x: visible;
    table-layout: fixed;
    white-space: normal;
  }

  .dk-article__content th,
  .dk-article__content td {
    padding: 10px 8px;
    word-break: break-word;
  }

  .dk-footer__links {
    justify-items: start;
  }
}

/* Editorial Desk Lab refinement */
:root {
  --dk-ink: #173f3a;
  --dk-ink-soft: #2d403c;
  --dk-paper-warm: #fffdf8;
  --dk-line: #d9e7e3;
  --dk-wash: #f3f8f6;
  --dk-quiet-blue: #edf4f5;
  --dk-red: #e74e43;
  --dk-red-dark: #cd443b;
  --dk-editorial-shadow: 0 18px 48px rgba(22, 52, 49, .08);
}

body {
  background:
    linear-gradient(180deg, #fbfdfb 0%, #f5faf8 42%, #fbfdfb 100%);
  color: var(--dk-ink-soft);
  font-feature-settings: "palt" 1;
}

.dk-header {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: rgba(23, 63, 58, .12);
  box-shadow: 0 10px 26px rgba(23, 63, 58, .055);
}

.dk-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(23, 63, 58, .1);
}

.dk-header__bar {
  min-height: 28px;
  background: var(--dk-ink);
  font-size: .78rem;
  letter-spacing: 0;
}

.dk-brand__mark {
  border-color: var(--dk-teal);
  background:
    linear-gradient(90deg, transparent 45%, var(--dk-teal) 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, var(--dk-teal) 45% 55%, transparent 55%),
    #eff8f5;
}

.dk-nav a {
  position: relative;
  padding: 8px 0;
}

.dk-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--dk-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s ease;
}

.dk-nav a:hover::after {
  transform: scaleX(1);
}

.dk-editorial-hero {
  min-height: min(760px, calc(100vh - 100px));
  border-bottom: 1px solid rgba(23, 63, 58, .09);
  background: var(--dk-paper-warm);
}

.dk-editorial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 63, 58, .045) 0 1px, transparent 1px 120px),
    linear-gradient(180deg, rgba(23, 63, 58, .035), transparent 34%);
  opacity: .46;
}

.dk-hero__bg::after {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .99) 0%, rgba(255, 253, 248, .92) 36%, rgba(255, 253, 248, .46) 68%, rgba(255, 253, 248, .14) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, .12), rgba(255, 253, 248, .74));
}

.dk-hero__bg img {
  filter: saturate(.92) contrast(.98) brightness(1.03);
  transition: transform 2.2s ease;
}

.dk-editorial-hero.is-visible .dk-hero__bg img {
  transform: scale(1.015);
}

.dk-hero__inner {
  max-width: 1210px;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .52fr);
  gap: clamp(34px, 6vw, 84px);
}

.dk-issue {
  margin: 0 0 18px;
  color: rgba(23, 63, 58, .68);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 0;
}

.dk-pill,
.dk-section__eyebrow {
  border: 1px solid rgba(23, 63, 58, .08);
  background: rgba(234, 246, 243, .9);
  letter-spacing: 0;
}

.dk-hero h1 {
  color: var(--dk-ink);
  font-size: 5.2rem;
  letter-spacing: 0;
}

.dk-hero__sub {
  color: var(--dk-ink);
  font-size: 1.7rem;
}

.dk-hero__lead {
  max-width: 650px;
  color: #304744;
}

.dk-button,
.dk-link-button {
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(23, 63, 58, .075);
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}

.dk-button:hover,
.dk-link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 63, 58, .12);
}

.dk-button--primary {
  background: linear-gradient(180deg, var(--dk-red), var(--dk-red-dark));
  box-shadow: 0 16px 30px rgba(205, 68, 59, .24);
}

.dk-button--primary:hover {
  color: #fff;
  box-shadow: 0 20px 38px rgba(205, 68, 59, .3);
}

.dk-trust li {
  background: rgba(255, 255, 255, .82);
}

.dk-mascot {
  position: relative;
  width: min(420px, 100%);
  padding: 14px;
  border-color: rgba(23, 63, 58, .15);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--dk-editorial-shadow);
}

.dk-mascot .dk-mascot__label {
  position: static;
  display: flex;
  width: min(320px, calc(100% - 56px));
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  margin-inline: auto !important;
  margin-bottom: 22px !important;
  padding: 7px 18px !important;
  border: 1px solid rgba(231, 78, 67, .2) !important;
  border-radius: 999px !important;
  background: rgba(255, 245, 243, .9);
  color: #9e332e !important;
  font-size: .78rem !important;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35 !important;
  text-align: center;
}

.dk-mascot img {
  border: 1px solid rgba(23, 63, 58, .1);
}

.dk-hero__index {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1210px;
  margin: -54px auto 0;
  padding: 0 22px 34px;
}

.dk-hero__index a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 63, 58, .13);
  border-right-width: 0;
  background: rgba(255, 255, 255, .86);
  color: var(--dk-ink);
  font-size: .9rem;
  font-weight: 700;
}

.dk-hero__index a:first-child {
  border-radius: 8px 0 0 8px;
}

.dk-hero__index a:last-child {
  border-right-width: 1px;
  border-radius: 0 8px 8px 0;
}

.dk-section {
  position: relative;
}

.dk-section__head {
  position: relative;
  padding-left: 18px;
}

.dk-section__head::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: var(--dk-teal);
  transform: scaleY(.26);
  transform-origin: top;
  transition: transform .62s ease;
}

.is-visible .dk-section__head::before {
  transform: scaleY(1);
}

.dk-manga-guide__figure {
  border-color: rgba(23, 63, 58, .14);
  box-shadow: var(--dk-editorial-shadow);
}

.dk-editorial-index {
  padding-top: clamp(42px, 6vw, 74px);
}

.dk-category-tile {
  align-content: center;
  border-color: rgba(23, 63, 58, .12);
  background: rgba(255, 255, 255, .94);
  box-shadow: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.dk-category-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 111, 104, .32);
  box-shadow: 0 15px 30px rgba(23, 63, 58, .08);
}

.dk-editorial-products {
  max-width: 1210px;
}

.dk-product-card .pochipp-box,
.dk-article__content .pochipp-box {
  border-color: rgba(23, 63, 58, .16) !important;
  background:
    linear-gradient(135deg, #fff 0%, #fff 58%, #fff7f2 100%) !important;
  box-shadow: 0 18px 42px rgba(23, 63, 58, .08) !important;
}

.dk-product-card .pochipp-box::before,
.dk-article__content .pochipp-box::before {
  content: "EDITOR'S PICK";
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 1;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff3f1;
  color: #a43832;
  font-size: .68rem;
  font-weight: 700;
}

.dk-product-card .pochipp-box__image,
.dk-article__content .pochipp-box__image {
  padding-top: 22px;
}

.pochipp-box__btn {
  background: linear-gradient(180deg, var(--dk-red), var(--dk-red-dark)) !important;
  transition: filter .2s ease, transform .2s ease;
}

.pochipp-box__btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.dk-post-card {
  border-color: rgba(23, 63, 58, .12);
  box-shadow: none;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.dk-post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 111, 104, .28);
  box-shadow: 0 18px 38px rgba(23, 63, 58, .08);
}

.dk-layout {
  max-width: 1220px;
}

.dk-article,
.dk-page,
.dk-archive__head {
  border-color: rgba(23, 63, 58, .12);
  box-shadow: none;
}

.dk-article {
  position: relative;
}

.dk-article::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, var(--dk-teal), rgba(15, 111, 104, .18));
}

.dk-article__lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--dk-muted);
  font-weight: 600;
  line-height: 1.85;
}

.dk-article__content h2 {
  position: relative;
  padding: .8em 1em .8em 1.15em;
  background: linear-gradient(90deg, rgba(234, 246, 243, .88), rgba(255, 255, 255, .64));
}

.dk-article__content table {
  border: 1px solid var(--dk-line);
  border-radius: 8px;
  background: #fff;
}

.dk-sidebar__label {
  margin: 0 0 10px;
  color: rgba(23, 63, 58, .58);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.dk-widget {
  border-color: rgba(23, 63, 58, .13);
  box-shadow: 0 16px 34px rgba(23, 63, 58, .055);
}

.dk-popular-ranking {
  display: grid;
  gap: .85rem;
}

.dk-popular-ranking__item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: .8rem;
  align-items: center;
  min-height: 74px;
  padding: .58rem;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 1rem;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  color: #0f172a;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dk-popular-ranking__item:hover {
  border-color: rgba(16, 185, 129, .32);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .07);
  transform: translateY(-1px);
}

.dk-popular-ranking__thumb {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  min-width: 0;
  place-items: center;
  margin: 0;
  overflow: visible;
  border: 1px solid #e2e8f0;
  border-radius: .78rem;
  background: #fff;
}

.dk-popular-ranking__image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: .7rem;
  background: #fff;
  object-fit: contain !important;
}

.dk-popular-ranking__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: .7rem;
  background: linear-gradient(135deg, #ecfdf5, #eff6ff);
  color: #0f766e;
  font-size: .8rem;
  font-weight: 900;
}

.dk-popular-ranking__rank {
  position: absolute;
  z-index: 2;
  top: -.45rem;
  left: -.45rem;
  display: grid;
  width: 1.72rem;
  height: 1.72rem;
  place-items: center;
  border: 2px solid #fff;
  border-radius: .62rem;
  background: #f8fafc;
  color: #64748b;
  font-size: .72rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}

.dk-popular-ranking__rank--1 {
  background: #fff1f2;
  color: #e11d48;
}

.dk-popular-ranking__rank--2 {
  background: #fffbeb;
  color: #d97706;
}

.dk-popular-ranking__rank--3 {
  background: #ecfdf5;
  color: #059669;
}

.dk-popular-ranking__body {
  display: grid;
  min-width: 0;
  gap: .36rem;
}

.dk-popular-ranking__title {
  display: -webkit-box;
  overflow: hidden;
  color: #0f172a;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dk-popular-ranking__meta {
  color: #64748b;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 0;
}

.dk-sticky-sidebar-slot {
  display: none;
}

@media (min-width: 1024px) {
  .dk-sticky-sidebar-slot {
    display: block;
    position: sticky;
    top: 6.5rem;
    z-index: 12;
  }
}

.dk-sticky-sidebar-slot .dk-widget {
  margin-bottom: 0;
}

.dk-sticky-sidebar-slot .dk-widget--sticky {
  position: static;
  top: auto;
}

.dk-sticky-sidebar-slot .widget_block {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dk-sticky-sidebar-slot .wp-block-html {
  margin: 0;
}

.dk-sticky-conversion-card,
.desk-sticky-conversion {
  display: grid;
  gap: .85rem;
  overflow: hidden;
  padding: 1.15rem;
  border: 1px solid rgba(16, 185, 129, .20);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 165, 250, .14), transparent 36%),
    linear-gradient(150deg, #fff 0%, #f8fafc 54%, #ecfdf5 100%);
  box-shadow: 0 22px 44px rgba(15, 23, 42, .08);
}

.dk-sticky-conversion-card__eyebrow,
.desk-pr-label,
.desk-a8-feature__tag {
  width: fit-content;
  margin: 0;
  padding: .32rem .62rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, .12);
  color: #047857;
  font-size: .7rem;
  font-weight: 900;
  line-height: 1.35;
}

.dk-sticky-conversion-card h4,
.desk-sticky-conversion h2 {
  margin: 0;
  padding: 0;
  border: 0;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.45;
}

.dk-sticky-conversion-card__lead,
.dk-sticky-conversion-card__note,
.desk-sticky-conversion__lead,
.desk-sticky-conversion__note,
.desk-a8-feature p {
  margin: 0;
  color: #475569;
  font-size: .8rem;
  line-height: 1.7;
}

.dk-sticky-conversion-card__note,
.desk-sticky-conversion__note {
  color: #64748b;
  font-size: .7rem;
}

.dk-sticky-conversion-card__grid,
.desk-conversion-stack {
  display: grid;
  gap: .55rem;
}

.dk-sticky-conversion-card__link,
.desk-conversion-card {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: .12rem .58rem;
  align-items: center;
  min-width: 0;
  padding: .68rem;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .88);
  color: #0f172a;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dk-sticky-conversion-card__link:hover,
.desk-conversion-card:hover {
  border-color: rgba(16, 185, 129, .32);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .07);
  transform: translateY(-1px);
}

.dk-sticky-conversion-card__link span,
.desk-conversion-card__label {
  grid-row: span 2;
  display: grid;
  min-height: 2.35rem;
  place-items: center;
  border-radius: .75rem;
  background: #ecfdf5;
  color: #047857;
  font-size: .72rem;
  font-weight: 900;
}

.dk-sticky-conversion-card__link strong,
.desk-conversion-card strong {
  overflow: hidden;
  color: #0f172a;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dk-sticky-conversion-card__link small,
.desk-conversion-card small {
  color: #64748b;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.45;
}

.desk-a8-feature {
  display: grid;
  gap: .58rem;
  padding: .82rem;
  border: 1px solid rgba(223, 73, 63, .18);
  border-radius: 1rem;
  background: linear-gradient(150deg, #fff7ed 0%, #fff 72%);
  box-shadow: inset 4px 0 0 rgba(223, 73, 63, .22);
}

.desk-a8-feature strong {
  color: #0f172a;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.45;
}

.dk-sticky-conversion-card__button,
.desk-conversion-primary,
.desk-a8-feature__button {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: center;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  box-shadow: 0 12px 24px rgba(5, 150, 105, .20);
  color: #fff !important;
  font-size: .8rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none !important;
}

.dk-sticky-conversion-card__button:hover,
.desk-conversion-primary:hover,
.desk-a8-feature__button:hover {
  background: linear-gradient(180deg, #059669 0%, #047857 100%);
}

.dk-footer {
  background: #173f3a;
}

.dk-motion-ready [data-dk-animate] [data-dk-animate-item],
.dk-motion-ready [data-dk-animate] .dk-category-tile,
.dk-motion-ready [data-dk-animate] .dk-product-card,
.dk-motion-ready [data-dk-animate] .dk-post-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .62s ease, transform .62s ease;
}

.is-visible [data-dk-animate-item],
.is-visible .dk-category-tile,
.is-visible .dk-product-card,
.is-visible .dk-post-card {
  opacity: 1;
  transform: translateY(0);
}

.dk-motion-ready [data-dk-animate].is-visible [data-dk-animate-item],
.dk-motion-ready [data-dk-animate].is-visible .dk-category-tile,
.dk-motion-ready [data-dk-animate].is-visible .dk-product-card,
.dk-motion-ready [data-dk-animate].is-visible .dk-post-card {
  opacity: 1;
  transform: translateY(0);
}

.is-visible .dk-category-tile:nth-child(2),
.is-visible .dk-product-card:nth-child(2),
.is-visible .dk-post-card:nth-child(2) {
  transition-delay: .06s;
}

.is-visible .dk-category-tile:nth-child(3),
.is-visible .dk-product-card:nth-child(3),
.is-visible .dk-post-card:nth-child(3) {
  transition-delay: .12s;
}

.is-visible .dk-category-tile:nth-child(4),
.is-visible .dk-product-card:nth-child(4),
.is-visible .dk-post-card:nth-child(4) {
  transition-delay: .18s;
}

.is-visible .dk-category-tile:nth-child(5),
.is-visible .dk-post-card:nth-child(5) {
  transition-delay: .24s;
}

.is-visible .dk-category-tile:nth-child(6),
.is-visible .dk-post-card:nth-child(6) {
  transition-delay: .3s;
}

.dk-mobile-menu {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
}

.dk-mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .dk-hero__inner {
    grid-template-columns: 1fr;
  }

  .dk-mascot {
    justify-self: stretch;
  }

  .dk-hero__index {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .dk-editorial-hero::before {
    opacity: .22;
  }

  .dk-hero__inner {
    gap: 24px;
    padding: 42px 18px 24px;
  }

  .dk-issue {
    margin-bottom: 12px;
    font-size: .68rem;
  }

  .dk-hero h1 {
    font-size: 3.1rem;
    line-height: 1;
  }

  .dk-hero__sub {
    font-size: 1.28rem;
  }

  .dk-hero__lead {
    font-size: .94rem;
    line-height: 1.82;
  }

  .dk-hero__index {
    display: flex;
    gap: 8px;
    margin-top: 0;
    padding: 0 18px 28px;
    overflow-x: auto;
  }

  .dk-hero__index a {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 14px;
    border-right-width: 1px;
    border-radius: 999px !important;
    font-size: .82rem;
  }

  .dk-mascot .dk-mascot__label {
    width: min(280px, calc(100% - 28px));
    min-height: 36px;
    margin-bottom: 16px !important;
    padding: 6px 14px !important;
    font-size: .72rem !important;
  }

  .dk-section__head {
    padding-left: 14px;
  }

  .dk-category-grid {
    scrollbar-width: none;
  }

  .dk-category-grid::-webkit-scrollbar,
  .dk-hero__index::-webkit-scrollbar {
    display: none;
  }

  .dk-product-card .pochipp-box::before,
  .dk-article__content .pochipp-box::before {
    position: static;
    grid-column: 1 / -1;
    width: fit-content;
    margin-bottom: 2px;
  }

  .dk-article__content table {
    display: table;
    min-width: 0;
    table-layout: fixed;
    white-space: normal;
  }

  [data-dk-animate-item],
  .dk-category-tile,
  .dk-product-card,
  .dk-post-card {
    transition-delay: 0s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-dk-animate-item],
  .dk-category-tile,
  .dk-product-card,
  .dk-post-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Workspace Diagnostic refresh 2026 */
:root {
  --dk-studio-ink: #10201f;
  --dk-studio-forest: #173f3a;
  --dk-studio-teal: #0f7d72;
  --dk-studio-blue: #dfecef;
  --dk-studio-amber: #f5c451;
  --dk-studio-red: #df493f;
  --dk-studio-paper: #fffef9;
  --dk-studio-mist: #f4faf8;
  --dk-studio-line: rgba(16, 32, 31, .13);
  --dk-studio-shadow: 0 18px 46px rgba(16, 32, 31, .1);
}

body {
  background:
    linear-gradient(180deg, #f8fbfa 0%, #eff7f5 48%, #fffef9 100%);
}

.dk-header {
  border-bottom-color: rgba(16, 32, 31, .1);
}

.dk-header__bar {
  background: linear-gradient(90deg, var(--dk-studio-ink), #0f6f68);
  color: #fff;
  letter-spacing: 0;
}

.dk-brand {
  color: var(--dk-studio-ink);
}

.dk-brand__mark {
  width: 38px;
  height: 38px;
  border-color: var(--dk-studio-teal);
  background:
    linear-gradient(90deg, transparent 44%, var(--dk-studio-teal) 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 44%, var(--dk-studio-teal) 44% 56%, transparent 56%),
    linear-gradient(135deg, #fff 0%, #e6f4f1 100%);
  box-shadow: inset 0 0 0 5px rgba(15, 125, 114, .08);
}

.dk-nav a {
  color: #243936;
}

.dk-search input {
  border-color: rgba(16, 32, 31, .12);
  background: rgba(255, 255, 255, .88);
}

.dk-lab-hero {
  isolation: isolate;
  min-height: 690px;
  background: var(--dk-studio-paper);
}

.dk-lab-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 32, 31, .052) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, rgba(16, 32, 31, .035) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .68) 48%, transparent 84%);
}

.dk-lab-hero .dk-hero__bg::after {
  background:
    linear-gradient(90deg, rgba(255, 254, 249, .99) 0%, rgba(255, 254, 249, .94) 38%, rgba(255, 254, 249, .56) 65%, rgba(255, 254, 249, .2) 100%),
    linear-gradient(180deg, rgba(244, 250, 248, .05) 0%, rgba(244, 250, 248, .78) 100%);
}

.dk-lab-hero .dk-hero__bg img {
  object-position: 70% center;
  filter: saturate(.96) contrast(1.02) brightness(1.04);
}

.dk-lab-hero .dk-hero__inner {
  z-index: 1;
  grid-template-columns: minmax(0, .98fr) minmax(340px, .48fr);
  min-height: 690px;
  padding-top: 70px;
  padding-bottom: 92px;
}

.dk-issue,
.dk-sidebar__label,
.dk-toc__head span,
.dk-share__head span,
.dk-mascot .dk-mascot__label {
  letter-spacing: 0;
}

.dk-lab-hero .dk-issue {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(16, 32, 31, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: rgba(16, 32, 31, .66);
  font-size: .74rem;
}

.dk-lab-hero .dk-pill,
.dk-section__eyebrow {
  border-color: rgba(15, 125, 114, .14);
  background: rgba(223, 236, 239, .72);
  color: var(--dk-studio-forest);
}

.dk-lab-hero h1 {
  max-width: 780px;
  color: var(--dk-studio-ink);
  font-size: 5.35rem;
  line-height: 1.04;
}

.dk-lab-hero .dk-hero__sub {
  max-width: 760px;
  color: var(--dk-studio-ink);
  font-size: 1.72rem;
  line-height: 1.48;
}

.dk-lab-hero .dk-hero__lead {
  max-width: 730px;
  color: #314845;
  font-size: 1.05rem;
  font-weight: 650;
}

.dk-button,
.dk-link-button {
  border-radius: 8px;
}

.dk-button--primary {
  background: linear-gradient(180deg, #f05a4f, var(--dk-studio-red));
}

.dk-trust li {
  border-color: rgba(16, 32, 31, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  color: var(--dk-studio-forest);
}

.dk-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin-top: 30px;
  border: 1px solid rgba(16, 32, 31, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16, 32, 31, .06);
}

.dk-hero-metrics span {
  display: grid;
  gap: 4px;
  min-height: 72px;
  align-content: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(16, 32, 31, .1);
  color: #2a403d;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
}

.dk-hero-metrics span:last-child {
  border-right: 0;
}

.dk-hero-metrics strong {
  color: var(--dk-studio-teal);
  font-size: .82rem;
}

.dk-lab-panel {
  align-self: center;
  width: min(430px, 100%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  background:
    linear-gradient(145deg, rgba(16, 32, 31, .98) 0%, rgba(23, 63, 58, .94) 62%, rgba(15, 125, 114, .9) 100%);
  color: #fff;
  box-shadow: 0 24px 62px rgba(16, 32, 31, .22);
}

.dk-lab-panel .dk-mascot__label {
  border-color: rgba(245, 196, 81, .42) !important;
  background: rgba(245, 196, 81, .14);
  color: #ffe39a !important;
}

.dk-lab-panel img {
  border-color: rgba(255, 255, 255, .18);
  background: #fff;
}

.dk-lab-panel__note {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.dk-lab-panel .dk-lab-panel__note p {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
}

.dk-lab-panel__note ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dk-lab-panel__note li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, .84);
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.5;
}

.dk-lab-panel__note li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--dk-studio-amber);
}

.dk-hero__index {
  max-width: 1210px;
}

.dk-hero__index a {
  border-color: rgba(16, 32, 31, .12);
  background: rgba(255, 255, 255, .9);
  color: var(--dk-studio-forest);
}

.dk-diagnosis {
  max-width: 1210px;
  padding-top: 64px;
}

.dk-diagnosis__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dk-diagnosis-card {
  position: relative;
  min-height: 220px;
  padding: 22px 18px 20px;
  border: 1px solid rgba(16, 32, 31, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 100%),
    var(--dk-studio-mist);
  color: var(--dk-studio-forest);
  box-shadow: 0 16px 38px rgba(16, 32, 31, .07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.dk-diagnosis-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(16, 32, 31, .12);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 46%, var(--dk-studio-teal) 46% 54%, transparent 54%),
    rgba(223, 236, 239, .68);
}

.dk-diagnosis-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 125, 114, .3);
  box-shadow: 0 22px 48px rgba(16, 32, 31, .1);
}

.dk-diagnosis-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--dk-studio-teal);
  font-size: .78rem;
  font-weight: 800;
}

.dk-diagnosis-card h3 {
  margin: 0;
  color: var(--dk-studio-ink);
  font-size: 1.2rem;
  line-height: 1.45;
}

.dk-diagnosis-card p {
  margin: 12px 0 0;
  color: #596d69;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.75;
}

.dk-section h2,
.dk-archive h1,
.dk-page h1,
.dk-article h1 {
  color: var(--dk-studio-ink);
  font-size: 2.35rem;
  line-height: 1.38;
}

.dk-section__head p:not(.dk-section__eyebrow),
.dk-archive__head p,
.dk-archive__desc {
  color: #586d68;
}

.dk-manga-guide__figure {
  padding: 10px;
  border-color: rgba(16, 32, 31, .12);
  background: #fff;
  box-shadow: var(--dk-studio-shadow);
}

.dk-category-grid {
  gap: 14px;
}

.dk-category-tile {
  justify-items: start;
  min-height: 132px;
  padding: 18px;
  place-items: stretch;
  text-align: left;
}

.dk-category-tile__icon {
  width: 38px;
  height: 38px;
  border-color: var(--dk-studio-teal);
}

.dk-category-tile__text {
  display: grid;
  gap: 5px;
}

.dk-category-tile__text span {
  color: var(--dk-studio-ink);
  font-size: .98rem;
  line-height: 1.35;
}

.dk-category-tile__text small {
  color: #687a76;
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.45;
}

.dk-product-card .pochipp-box,
.dk-article__content .pochipp-box {
  border-radius: 8px !important;
}

.dk-post-card {
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
}

.dk-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 10px;
}

.dk-post-card__meta span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid rgba(16, 32, 31, .1);
  border-radius: 999px;
  background: rgba(244, 250, 248, .85);
  color: #58716b;
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.2;
}

.dk-post-card__read {
  display: inline-flex;
  margin-top: 14px;
  color: var(--dk-studio-teal);
  font-size: .82rem;
  font-weight: 800;
}

.dk-post-card__read::after {
  content: "";
  width: 1.6em;
  height: 1px;
  margin: .74em 0 0 8px;
  background: currentColor;
}

.dk-article,
.dk-page,
.dk-archive__head {
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
}

.dk-article__header {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(16, 32, 31, .1);
}

.dk-article__content h2 {
  border-left-color: var(--dk-studio-teal);
  border-radius: 8px;
}

.dk-article__content h3 {
  color: var(--dk-studio-ink);
}

.dk-footer {
  background:
    linear-gradient(180deg, #173f3a 0%, #10201f 100%);
}

@media (max-width: 1120px) {
  .dk-lab-hero {
    min-height: auto;
  }

  .dk-lab-hero .dk-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .dk-lab-panel {
    justify-self: stretch;
    width: min(560px, 100%);
  }

  .dk-lab-hero h1 {
    font-size: 4.25rem;
  }

  .dk-lab-hero .dk-hero__sub {
    font-size: 1.48rem;
  }

  .dk-diagnosis__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dk-header__bar {
    padding: 5px 12px;
    text-align: center;
  }

  .dk-brand__mark {
    width: 34px;
    height: 34px;
  }

  .dk-lab-hero .dk-hero__bg::after {
    background:
      linear-gradient(180deg, rgba(255, 254, 249, .98) 0%, rgba(255, 254, 249, .88) 62%, rgba(255, 254, 249, .7) 100%);
  }

  .dk-lab-hero .dk-hero__bg img {
    object-position: center top;
  }

  .dk-lab-hero .dk-hero__inner {
    padding: 34px 18px 22px;
  }

  .dk-lab-hero .dk-issue {
    font-size: .68rem;
  }

  .dk-lab-hero h1 {
    font-size: 2.9rem;
    line-height: 1.08;
  }

  .dk-lab-hero .dk-hero__sub {
    font-size: 1.24rem;
    line-height: 1.55;
  }

  .dk-lab-hero .dk-hero__lead {
    font-size: .94rem;
  }

  .dk-hero-metrics {
    grid-template-columns: 1fr;
  }

  .dk-hero-metrics span {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 32, 31, .1);
  }

  .dk-hero-metrics span:last-child {
    border-bottom: 0;
  }

  .dk-lab-panel {
    padding: 12px;
  }

  .dk-lab-panel__note {
    padding: 12px;
  }

  .dk-section h2,
  .dk-archive h1,
  .dk-page h1,
  .dk-article h1 {
    font-size: 1.55rem;
    line-height: 1.48;
  }

  .dk-section__head--row {
    display: grid;
  }

  .dk-diagnosis {
    padding-top: 42px;
  }

  .dk-diagnosis__grid {
    grid-template-columns: 1fr;
  }

  .dk-diagnosis-card {
    min-height: 0;
    padding: 18px 16px 56px;
  }

  .dk-diagnosis-card span {
    margin-bottom: 18px;
  }

  .dk-category-tile {
    flex-basis: 176px;
    min-height: 136px;
  }

  .dk-article__content table {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    table-layout: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .dk-article__content th,
  .dk-article__content td {
    min-width: 9rem;
  }
}

/* Desk Kaizen Lab Pro Framework from design.html */
:root {
  --dk-pro-bg: #f8fafc;
  --dk-pro-surface: #ffffff;
  --dk-pro-surface-2: #f1f5f9;
  --dk-pro-ink: #0f172a;
  --dk-pro-text: #334155;
  --dk-pro-muted: #64748b;
  --dk-pro-line: #e2e8f0;
  --dk-pro-dark: #080c14;
  --dk-pro-dark-2: #0e1726;
  --dk-pro-card: #111827;
  --dk-pro-card-2: #151f32;
  --dk-pro-emerald: #10b981;
  --dk-pro-emerald-dark: #059669;
  --dk-pro-amber: #f59e0b;
  --dk-pro-rose: #f43f5e;
  --dk-pro-shadow: 0 18px 46px rgba(15, 23, 42, .1);
}

body {
  background: var(--dk-pro-bg);
  color: var(--dk-pro-text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

.dk-main {
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 185, 129, .08), transparent 24rem),
    linear-gradient(180deg, #f8fafc 0%, #eef7f4 100%);
}

.dk-pro-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(226, 232, 240, .95);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.dk-pro-header .dk-header__bar {
  min-height: 32px;
  background: linear-gradient(90deg, #0b0f19, #047857);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-align: center;
}

.dk-pro-header .dk-header__inner {
  grid-template-columns: auto minmax(0, 1fr) 180px 42px;
  max-width: 1280px;
  min-height: 78px;
}

.dk-brand__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.dk-brand__label {
  color: var(--dk-pro-emerald);
  font-size: .64rem;
  font-weight: 900;
  line-height: 1;
}

.dk-pro-header .dk-brand__text {
  color: var(--dk-pro-ink);
  font-size: 1.28rem;
  font-weight: 900;
}

.dk-pro-header .dk-nav a {
  color: #475569;
  font-size: .84rem;
  font-weight: 800;
}

.dk-pro-header .dk-nav a:hover {
  color: var(--dk-pro-emerald-dark);
}

.dk-pro-header .dk-search input {
  border-color: var(--dk-pro-line);
  background: #f8fafc;
}

.dk-pro-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 0%, rgba(16, 185, 129, .22), transparent 26rem),
    radial-gradient(circle at 8% 100%, rgba(59, 130, 246, .18), transparent 24rem),
    linear-gradient(135deg, #0b0f19 0%, #0e1726 58%, #1e1b4b 100%);
  color: #fff;
}

.dk-pro-hero__grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
  background-size: 24px 24px;
}

.dk-pro-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  gap: 52px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 74px 22px 82px;
}

.dk-pro-hero__copy {
  min-width: 0;
}

.dk-pro-badge,
.dk-pro-section-head p,
.dk-pro-diagnosis__head span,
.dk-pro-product__label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(16, 185, 129, .34);
  border-radius: 8px;
  background: rgba(16, 185, 129, .12);
  color: #34d399;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.dk-pro-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.08;
}

.dk-pro-hero h1 span {
  display: block;
  color: #5eead4;
}

.dk-pro-hero__lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.9;
}

.dk-pro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.dk-pro-button,
.dk-pro-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 8px;
  background: rgba(15, 23, 42, .74);
  color: #e2e8f0;
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 16px 36px rgba(2, 6, 23, .16);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
}

.dk-pro-button:hover,
.dk-pro-link:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, .46);
  color: #fff;
}

.dk-pro-button--primary {
  border-color: transparent;
  background: linear-gradient(180deg, #34d399, var(--dk-pro-emerald));
  color: #05140f;
}

.dk-pro-button--primary:hover {
  color: #05140f;
}

.dk-pro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.dk-pro-proof span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  color: #e2e8f0;
  font-size: .82rem;
  font-weight: 800;
}

.dk-pro-diagnosis {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 8px;
  background: rgba(15, 23, 42, .82);
  box-shadow: 0 28px 70px rgba(2, 6, 23, .34);
}

.dk-pro-diagnosis__head {
  margin-bottom: 12px;
}

.dk-pro-diagnosis__head h2 {
  margin: 0;
  color: #f8fafc;
  font-size: 1.18rem;
  line-height: 1.45;
}

.dk-pro-diagnosis > p {
  margin: 0 0 20px;
  color: #94a3b8;
  font-size: .88rem;
  line-height: 1.75;
}

.dk-pro-diagnosis__choices {
  display: grid;
  gap: 10px;
}

.dk-pro-diagnosis__choices button {
  appearance: none;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  min-height: 78px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 8px;
  background: rgba(15, 23, 42, .78);
  color: #e2e8f0;
  cursor: pointer;
  text-align: left;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.dk-pro-diagnosis__choices button:hover,
.dk-pro-diagnosis__choices button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, .42);
  background: rgba(30, 41, 59, .88);
  outline: 0;
}

.dk-pro-diagnosis__choices button span {
  display: grid;
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #1e293b;
  color: #94a3b8;
  font-weight: 900;
}

.dk-pro-diagnosis__choices button:hover span,
.dk-pro-diagnosis__choices button:focus-visible span {
  background: var(--dk-pro-emerald);
  color: #05140f;
}

.dk-pro-diagnosis__choices strong,
.dk-pro-diagnosis__choices small {
  display: block;
  grid-column: 2;
  min-width: 0;
}

.dk-pro-diagnosis__choices strong {
  font-size: .9rem;
  line-height: 1.45;
}

.dk-pro-diagnosis__choices small {
  margin-top: 4px;
  color: #94a3b8;
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.35;
}

.dk-pro-diagnosis__result {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(16, 185, 129, .36);
  border-radius: 8px;
  background: rgba(2, 6, 23, .55);
}

.dk-pro-diagnosis__result strong {
  display: block;
  color: #34d399;
  font-size: .9rem;
  font-weight: 900;
}

.dk-pro-diagnosis__result p {
  margin: 8px 0 14px;
  color: #cbd5e1;
  font-size: .82rem;
  line-height: 1.7;
}

.dk-pro-diagnosis__result a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--dk-pro-emerald);
  color: #05140f;
  font-size: .82rem;
  font-weight: 900;
}

.dk-pro-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 22px 90px;
}

.dk-pro-main__grid,
.dk-pro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.dk-pro-content {
  display: grid;
  gap: 46px;
  min-width: 0;
}

.dk-pro-main__grid > *,
.dk-pro-content > *,
.dk-pro-sidebar > * {
  min-width: 0;
  max-width: 100%;
}

.dk-pro-panel,
.dk-pro-manga,
.dk-pro-categories,
.dk-pro-products,
.dk-pro-articles,
.dk-pro-widget,
.dk-pro-page,
.dk-pro-article,
.dk-pro-archive {
  width: 100%;
  border: 1px solid var(--dk-pro-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.dk-pro-panel,
.dk-pro-manga,
.dk-pro-categories,
.dk-pro-products,
.dk-pro-articles {
  padding: 30px;
}

.dk-pro-section-head {
  max-width: 840px;
  margin-bottom: 24px;
}

.dk-pro-section-head--row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.dk-pro-section-head p {
  margin-bottom: 10px;
  background: rgba(16, 185, 129, .08);
  color: var(--dk-pro-emerald-dark);
}

.dk-pro-section-head h2 {
  margin: 0;
  color: var(--dk-pro-ink);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.35;
}

.dk-pro-section-head span {
  display: block;
  margin-top: 10px;
  color: var(--dk-pro-muted);
  font-size: .94rem;
  line-height: 1.85;
}

.dk-pro-link {
  min-height: 42px;
  background: #0f172a;
  color: #fff;
  box-shadow: none;
}

.dk-pro-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dk-pro-step {
  display: grid;
  min-height: 210px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--dk-pro-line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--dk-pro-text);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.dk-pro-step:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, .38);
  box-shadow: var(--dk-pro-shadow);
}

.dk-pro-step span {
  margin-bottom: 18px;
  color: var(--dk-pro-emerald);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.dk-pro-step h3 {
  margin: 0;
  color: var(--dk-pro-ink);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.45;
}

.dk-pro-step p {
  margin: 10px 0 0;
  color: var(--dk-pro-muted);
  font-size: .88rem;
  line-height: 1.75;
}

.dk-pro-manga__figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--dk-pro-line);
  border-radius: 8px;
  background: #f8fafc;
}

.dk-pro-manga__figure img {
  display: block;
  width: 100%;
}

.dk-pro-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dk-pro-category {
  display: grid;
  min-height: 146px;
  align-content: start;
  justify-items: start;
  padding: 18px;
  border: 1px solid var(--dk-pro-line);
  border-radius: 8px;
  background: #fff;
  color: var(--dk-pro-ink);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.dk-pro-category:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, .38);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
}

.dk-pro-category__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border: 2px solid currentColor;
  border-radius: 8px;
  background: rgba(16, 185, 129, .08);
  color: var(--dk-pro-emerald-dark);
}

.dk-pro-category strong {
  font-size: .94rem;
  line-height: 1.35;
}

.dk-pro-category small {
  margin-top: 6px;
  color: var(--dk-pro-muted);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.45;
}

.dk-pro-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--dk-pro-line);
  border-radius: 8px;
  background: #fff;
}

.dk-pro-table {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
  font-size: .88rem;
}

.dk-pro-table th,
.dk-pro-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--dk-pro-line);
  text-align: left;
  vertical-align: top;
}

.dk-pro-table thead th {
  background: #f8fafc;
  color: #475569;
  font-size: .78rem;
  font-weight: 900;
}

.dk-pro-table tbody th {
  color: var(--dk-pro-ink);
  font-weight: 900;
}

.dk-pro-table tbody tr:last-child th,
.dk-pro-table tbody tr:last-child td {
  border-bottom: 0;
}

.dk-pro-product-stack {
  display: grid;
  gap: 18px;
}

.dk-pro-product {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--dk-pro-line);
  border-radius: 8px;
  background: #fff;
}

.dk-pro-product__label {
  margin: 0 0 16px;
  border-color: transparent;
  background: var(--dk-pro-emerald);
  color: #05140f;
}

.dk-pro-product__intro {
  margin-bottom: 16px;
}

.dk-pro-product__intro h3 {
  margin: 0;
  color: var(--dk-pro-ink);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.45;
}

.dk-pro-product__intro p {
  margin: 8px 0 0;
  color: var(--dk-pro-muted);
  font-size: .9rem;
  line-height: 1.8;
}

.dk-pro-product .pochipp-box,
.dk-pro-article .pochipp-box {
  border-radius: 8px !important;
  border-color: rgba(226, 232, 240, .95) !important;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08) !important;
}

.dk-post-grid--pro {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dk-post-card {
  border-color: var(--dk-pro-line);
  background: #fff;
}

.dk-post-card__meta span {
  background: rgba(16, 185, 129, .08);
  color: var(--dk-pro-emerald-dark);
}

.dk-pro-sidebar {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.dk-pro-widget {
  padding: 22px;
}

.dk-pro-widget h2 {
  margin: 0 0 14px;
  padding-left: 12px;
  border-left: 4px solid var(--dk-pro-emerald);
  color: var(--dk-pro-ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4;
}

.dk-pro-widget p {
  margin: 0;
  color: var(--dk-pro-muted);
  font-size: .86rem;
  line-height: 1.75;
}

.dk-pro-widget--search form {
  display: grid;
  gap: 10px;
}

.dk-pro-widget--search input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--dk-pro-line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--dk-pro-ink);
}

.dk-pro-widget--search button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--dk-pro-ink);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.dk-pro-profile {
  text-align: center;
}

.dk-pro-profile__mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dk-pro-emerald), #3b82f6);
  color: #fff;
  font-weight: 900;
}

.dk-pro-rank {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: dk-rank;
}

.dk-pro-rank li {
  position: relative;
  min-height: 42px;
  padding-left: 36px;
  counter-increment: dk-rank;
}

.dk-pro-rank li::before {
  content: counter(dk-rank);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: rgba(16, 185, 129, .12);
  color: var(--dk-pro-emerald-dark);
  font-size: .78rem;
  font-weight: 900;
}

.dk-pro-rank a,
.dk-pro-side-links a,
.dk-pro-next-action__links a {
  color: var(--dk-pro-ink);
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.55;
}

.dk-pro-disclosure {
  border-color: rgba(245, 158, 11, .28);
  background: rgba(255, 251, 235, .92);
}

.dk-pro-disclosure h2 {
  border-left-color: var(--dk-pro-amber);
}

.dk-pro-subhero {
  background:
    radial-gradient(circle at 86% 0%, rgba(16, 185, 129, .18), transparent 23rem),
    linear-gradient(135deg, #0b0f19 0%, #0e1726 65%, #1e1b4b 100%);
  color: #fff;
}

.dk-pro-subhero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 22px 64px;
}

.dk-pro-subhero p {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(16, 185, 129, .34);
  border-radius: 8px;
  background: rgba(16, 185, 129, .12);
  color: #34d399;
  font-size: .72rem;
  font-weight: 900;
}

.dk-pro-subhero h1 {
  max-width: 960px;
  margin: 0;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.32;
}

.dk-pro-subhero span {
  display: block;
  max-width: 780px;
  margin-top: 14px;
  color: #cbd5e1;
  font-size: .98rem;
  line-height: 1.85;
}

.dk-pro-article,
.dk-pro-page {
  padding: 34px;
}

.dk-pro-article::before {
  background: linear-gradient(180deg, var(--dk-pro-emerald), rgba(16, 185, 129, .16));
}

.dk-pro-article__header h2 {
  margin: 0;
  color: var(--dk-pro-ink);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.42;
}

.dk-pro-next-action {
  margin-top: 42px;
  padding: 24px;
  border: 1px solid rgba(16, 185, 129, .22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(16, 185, 129, .08), #fff);
}

.dk-pro-next-action p {
  margin: 0 0 8px;
  color: var(--dk-pro-emerald-dark);
  font-size: .78rem;
  font-weight: 900;
}

.dk-pro-next-action h2 {
  margin: 0;
  color: var(--dk-pro-ink);
  font-size: 1.28rem;
  line-height: 1.45;
}

.dk-pro-next-action__links,
.dk-pro-side-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.dk-pro-next-action__links a,
.dk-pro-side-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid var(--dk-pro-line);
  border-radius: 8px;
  background: #fff;
}

.dk-pro-archive {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 22px 86px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dk-back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--dk-pro-line);
  border-radius: 50%;
  background: #fff;
  color: var(--dk-pro-ink);
  box-shadow: 0 16px 40px rgba(15, 23, 42, .18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.dk-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dk-pro-footer {
  margin-top: 0;
  background: #0b0f19;
}

.dk-pro-footer .dk-footer__inner {
  max-width: 1280px;
}

@media (max-width: 1120px) {
  .dk-pro-header .dk-header__inner {
    grid-template-columns: auto 1fr 42px;
  }

  .dk-pro-hero__inner,
  .dk-pro-main__grid,
  .dk-pro-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .dk-pro-hero h1 {
    font-size: 3rem;
  }

  .dk-pro-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dk-pro-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .dk-pro-header .dk-header__bar {
    min-height: 36px;
    padding: 5px 12px;
    font-size: .72rem;
    text-align: center;
  }

  .dk-pro-header .dk-header__inner {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 12px;
    min-height: 72px;
  }

  .dk-pro-header .dk-brand {
    min-width: 0;
  }

  .dk-brand__label {
    font-size: .58rem;
    overflow-wrap: anywhere;
  }

  .dk-pro-header .dk-brand__text {
    max-width: 210px;
    font-size: 1.08rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .dk-pro-hero__inner {
    gap: 28px;
    padding: 42px 18px 48px;
  }

  .dk-pro-hero h1 {
    font-size: 2rem;
    overflow-wrap: anywhere;
  }

  .dk-pro-hero__lead {
    font-size: .93rem;
  }

  .dk-pro-actions,
  .dk-pro-proof {
    display: grid;
  }

  .dk-pro-button,
  .dk-pro-link {
    width: 100%;
  }

  .dk-pro-diagnosis {
    padding: 18px;
  }

  .dk-pro-main {
    padding: 32px 18px 70px;
  }

  .dk-pro-panel,
  .dk-pro-manga,
  .dk-pro-categories,
  .dk-pro-products,
  .dk-pro-articles,
  .dk-pro-article,
  .dk-pro-page,
  .dk-pro-widget {
    padding: 20px;
  }

  .dk-pro-section-head--row {
    display: grid;
  }

  .dk-pro-section-head h2 {
    font-size: 1.5rem;
  }

  .dk-pro-step-grid,
  .dk-pro-category-grid,
  .dk-post-grid--pro {
    grid-template-columns: 1fr;
  }

  .dk-pro-step {
    min-height: 0;
  }

  .dk-pro-subhero__inner {
    padding: 40px 18px 46px;
  }

  .dk-pro-subhero h1 {
    font-size: 1.72rem;
  }

  .dk-pro-article__header h2 {
    font-size: 1.44rem;
  }

  .dk-pro-table {
    min-width: 660px;
  }

  .dk-pro-product {
    padding: 18px;
  }

  .dk-back-to-top {
    display: none;
  }
}

/* Exact recreation layer for デザイン.html */
@keyframes pulseSubtle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .85;
    transform: scale(1.02);
  }
}

@keyframes float3d {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.dk-tailwind-design {
  background: #fff;
  font-family: Inter, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  letter-spacing: 0;
}

.dk-tailwind-design #main-layout {
  background: #fff;
}

.dk-tailwind-design #content {
  scroll-margin-top: 5.5rem;
}

.dk-tailwind-design #main-layout {
  padding-top: 2rem;
}

.dk-hero-diagnosis-target {
  scroll-margin-top: 7.75rem;
}

.dk-hero-diagnosis-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 .75rem;
  color: #bbf7d0;
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.35;
}

.dk-hero-diagnosis-kicker span {
  display: inline-flex;
  min-height: 1.75rem;
  align-items: center;
  padding: .34rem .56rem;
  border: 1px solid rgba(16, 185, 129, .24);
  border-radius: .75rem;
  background: rgba(15, 23, 42, .58);
}

.dk-hero-diagnosis-card {
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.dk-hero-diagnosis-card:focus {
  outline: 0;
}

.dk-hero-diagnosis-target.is-diagnosis-highlight .dk-hero-diagnosis-card {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, .76) !important;
  box-shadow:
    0 0 0 4px rgba(16, 185, 129, .2),
    0 28px 78px rgba(2, 6, 23, .44);
}

.animate-float {
  animation: float3d 6s ease-in-out infinite;
}

.premium-blur {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.theme-color-transition {
  transition: background-color .4s ease, border-color .4s ease, color .4s ease, box-shadow .4s ease;
}

.dk-font-large {
  font-size: 1.06rem;
}

.dk-design-article-content {
  color: #334155;
  font-size: .96rem;
  line-height: 1.95;
}

.dk-tailwind-design section[id],
.dk-product-card,
.dk-design-article-content h2 {
  scroll-margin-top: 6.5rem;
}

.dk-design-article-content h2,
.dk-design-article-content h3,
.dk-design-article-content h4 {
  color: #0f172a;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.45;
}

.dk-design-article-content h2 {
  position: relative;
  overflow: hidden;
  margin: 2.6em 0 1em;
  padding: 1.15rem 1.2rem 1.15rem 1.55rem;
  border: 1px solid rgba(16, 185, 129, .18);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 165, 250, .16), transparent 38%),
    linear-gradient(135deg, #ecfdf5 0%, #fff 62%, #eff6ff 100%);
  box-shadow: 0 16px 38px rgba(15, 23, 42, .055);
  font-size: 1.55rem;
}

.dk-design-article-content h2::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: .7rem;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #10b981, #60a5fa);
}

.dk-design-article-content h2::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 8px rgba(16, 185, 129, .10);
}

.dk-design-article-content h3 {
  position: relative;
  margin: 2.1em 0 .8em;
  padding-left: 1rem;
  font-size: 1.22rem;
}

.dk-design-article-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: #10b981;
}

.dk-design-article-content p,
.dk-design-article-content ul,
.dk-design-article-content ol,
.dk-design-article-content table,
.dk-design-article-content figure {
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
}

.dk-design-article-content a {
  color: #059669;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: .18em;
}

.dk-design-article-content img {
  border-radius: 1rem;
}

.dk-product-card__visual {
  aspect-ratio: 4 / 3;
  display: block;
  min-height: 180px;
  background: #f8fafc;
}

.dk-product-card__visual img {
  position: relative;
  z-index: 1;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.dk-product-card__visual figcaption {
  z-index: 2;
}

.article-card > a img,
.dk-post-card__thumb img,
.dk-single-featured-image {
  object-fit: contain !important;
  background: #fff;
}

.dk-design-article-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  border-spacing: 0;
  border-collapse: separate;
  -webkit-overflow-scrolling: touch;
}

.dk-design-article-content th,
.dk-design-article-content td {
  min-width: 9rem;
  padding: .9rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.dk-design-article-content th {
  background: #f8fafc;
  color: #0f172a;
  font-weight: 900;
}

@media (max-width: 640px) {
  .dk-design-article-content table.dk-responsive-table {
    display: block;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .dk-design-article-content .dk-responsive-table thead {
    display: none;
  }

  .dk-design-article-content .dk-responsive-table .dk-responsive-table__head-row {
    display: none;
  }

  .dk-design-article-content .dk-responsive-table tbody,
  .dk-design-article-content .dk-responsive-table tr,
  .dk-design-article-content .dk-responsive-table td {
    display: block;
    width: 100%;
  }

  .dk-design-article-content .dk-responsive-table tr {
    margin: 0 0 .85rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .045);
  }

  .dk-design-article-content .dk-responsive-table td {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(5.8rem, 36%) 1fr;
    gap: .8rem;
    align-items: start;
    padding: .82rem .95rem;
    border: 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: .9rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .dk-design-article-content .dk-responsive-table td:last-child {
    border-bottom: 0;
  }

  .dk-design-article-content .dk-responsive-table td::before {
    content: attr(data-label);
    color: #0f766e;
    font-size: .74rem;
    font-weight: 900;
    line-height: 1.6;
  }
}

.dk-design-pochipp .pochipp-box {
  margin: 0 !important;
  border-radius: 1rem !important;
  border-color: #e2e8f0 !important;
  box-shadow: none !important;
}

.dk-share {
  display: block;
}

.dk-share__head {
  display: none;
}

.dk-share__buttons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .5rem;
}

.dk-share__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: .75rem;
  background: #0f172a;
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
}

.dk-share__button--copy {
  border: 0;
  cursor: pointer;
}

.dk-design-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.dk-design-pagination .page-numbers {
  display: inline-flex;
  min-width: 2.5rem;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: .75rem;
  background: #fff;
  color: #334155;
  font-size: .8rem;
  font-weight: 900;
}

.dk-design-pagination .page-numbers.current {
  border-color: #10b981;
  background: #10b981;
  color: #08110e;
}

@media (max-width: 640px) {
  .dk-tailwind-design #content {
    padding-top: 2.75rem;
    padding-bottom: 1.75rem;
  }

  .dk-tailwind-design #main-layout {
    padding-top: 1.5rem;
  }

  .dk-hero-diagnosis-target {
    scroll-margin-top: 6.25rem;
  }

  .dk-hero-diagnosis-kicker {
    justify-content: flex-start;
  }

  .dk-share__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
