.time-to-minutes-wrapper,
.time-to-minutes-wrapper *,
.time-to-minutes-wrapper *::before,
.time-to-minutes-wrapper *::after { box-sizing: border-box; }

.time-to-minutes-wrapper {
  --ttm-paper: #f8efe2;
  --ttm-paper-soft: #fff8ed;
  --ttm-paper-muted: #f1e2cf;
  --ttm-line: #6b5745;
  --ttm-text: #34281f;
  --ttm-muted: #574838;
  --ttm-emphasis: #7a412f;
  --ttm-accent: #d2aa55;
  --ttm-green: #e2edd8;
  --ttm-focus: #4f7d94;
  --ttm-shadow: rgba(82, 65, 50, .24);
  --ttm-soft-line: rgba(107, 87, 69, .34);
  --ttm-gap: 10px;
  width: min(920px, calc(100vw - 32px));
  margin: 12px auto 0;
  color: var(--ttm-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", sans-serif;
  line-height: 1.44;
  -webkit-text-fill-color: currentColor;
  word-break: keep-all;
}

body[data-scheme="dark"] .time-to-minutes-wrapper,
body[data-scheme="inverse"] .time-to-minutes-wrapper {
  --ttm-paper: #2b2119;
  --ttm-paper-soft: #241c15;
  --ttm-paper-muted: #33271d;
  --ttm-line: #a98b6b;
  --ttm-text: #f2e4cf;
  --ttm-muted: #f0dfc5;
  --ttm-emphasis: #f1c982;
  --ttm-accent: #d2aa55;
  --ttm-green: #344a32;
  --ttm-focus: #8ab6ca;
  --ttm-shadow: rgba(0, 0, 0, .35);
  --ttm-soft-line: rgba(169, 139, 107, .4);
}

.time-to-minutes-wrapper br { display: none !important; }

.time-to-minutes-wrapper :is(h2, h3, h4, p) { margin-top: 0; }

.time-to-minutes-wrapper .ttm-tool {
  background:
    linear-gradient(rgba(107, 87, 69, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, .055) 1px, transparent 1px),
    var(--ttm-paper);
  background-size: 16px 16px;
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 7px 7px 0 var(--ttm-shadow);
  display: grid;
  gap: var(--ttm-gap);
  padding: 14px;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool__title {
  display: grid;
  gap: 6px;
  padding: 2px 0 10px;
  border-bottom: 2px dashed var(--ttm-soft-line);
}

.time-to-minutes-wrapper .ttm-tool__kicker {
  display: inline-block;
  color: var(--ttm-emphasis);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0;
}

.time-to-minutes-wrapper .ttm-tool__title h2 {
  margin: 0;
  color: var(--ttm-text);
  font-size: 30px;
  line-height: 1.14;
  font-weight: 850;
  letter-spacing: 0;
}

.time-to-minutes-wrapper .ttm-tool__title p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--ttm-muted);
  font-size: 14.5px;
}

.time-to-minutes-wrapper .ttm-tool__layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.03fr) minmax(0, .95fr);
  gap: var(--ttm-gap);
  align-items: stretch;
}

.time-to-minutes-wrapper .ttm-tool__panel {
  background: var(--ttm-paper-soft);
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--ttm-shadow);
  min-width: 0;
  padding: 12px;
}

.time-to-minutes-wrapper .ttm-tool__panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.time-to-minutes-wrapper .ttm-tool__panel-head {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool__panel-head h3,
.time-to-minutes-wrapper .ttm-tool__minor-title {
  margin: 0;
  color: var(--ttm-emphasis);
  font-size: 15.5px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.24;
}

.time-to-minutes-wrapper .ttm-tool__panel-head p {
  margin: 0;
  color: var(--ttm-muted);
  font-size: 12.8px;
  line-height: 1.5;
}

.time-to-minutes-wrapper .ttm-tool__presets,
.time-to-minutes-wrapper .ttm-tool__input-grid,
.time-to-minutes-wrapper .ttm-tool__actions,
.time-to-minutes-wrapper .ttm-tool__formula {
  display: grid;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool__presets,
.time-to-minutes-wrapper .ttm-tool__input-grid,
.time-to-minutes-wrapper .ttm-tool__formula {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.time-to-minutes-wrapper .ttm-tool__actions {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.time-to-minutes-wrapper .ttm-tool__button {
  appearance: none;
  align-items: center;
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 3px 3px 0 var(--ttm-shadow);
  color: var(--ttm-text);
  cursor: pointer;
  display: flex !important;
  font: inherit;
  font-size: 13px !important;
  font-weight: 850;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.12 !important;
  min-height: 40px !important;
  min-width: 0;
  padding: 8px 9px !important;
  text-align: center;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  width: 100% !important;
  -webkit-text-fill-color: currentColor;
}

.time-to-minutes-wrapper .ttm-tool__button--primary {
  background: var(--ttm-accent);
  color: #241c15;
  -webkit-text-fill-color: #241c15;
}

.time-to-minutes-wrapper .ttm-tool__button:hover {
  background: var(--ttm-green);
  box-shadow: 2px 2px 0 var(--ttm-shadow);
  transform: translate(1px, 1px);
}

.time-to-minutes-wrapper .ttm-tool__button--primary:hover {
  background: #c79c3c;
  color: #241c15;
  -webkit-text-fill-color: #241c15;
}

.time-to-minutes-wrapper .ttm-tool__button:focus-visible,
.time-to-minutes-wrapper input:focus-visible {
  outline: 3px solid var(--ttm-focus);
  outline-offset: 2px;
}

.time-to-minutes-wrapper .ttm-tool__field {
  display: grid;
  gap: 5px;
  margin: 0;
  border: 2px solid var(--ttm-line);
  background: var(--ttm-paper);
  padding: 7px;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool__field span,
.time-to-minutes-wrapper .ttm-tool__label {
  color: var(--ttm-muted);
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0;
}

.time-to-minutes-wrapper input {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 7px 8px;
  color: var(--ttm-text);
  background: var(--ttm-paper-soft);
  border: 0;
  border-radius: 0;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  -webkit-text-fill-color: currentColor;
}

.time-to-minutes-wrapper input::placeholder { color: color-mix(in srgb, var(--ttm-muted) 72%, transparent); -webkit-text-fill-color: color-mix(in srgb, var(--ttm-muted) 72%, transparent); }

.time-to-minutes-wrapper .ttm-tool__result-grid {
  display: grid;
  gap: 8px;
}

.time-to-minutes-wrapper .ttm-tool__result-card {
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 9px;
}

.time-to-minutes-wrapper .ttm-tool__result-card--original {
  border-left-width: 6px;
}

.time-to-minutes-wrapper .ttm-tool__result-card--copy {
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 7px;
  align-items: center;
}

.time-to-minutes-wrapper .ttm-tool__result-copy-body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool__value {
  color: var(--ttm-text);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool__value--main {
  color: var(--ttm-emphasis);
  font-size: 23px;
}

.time-to-minutes-wrapper .ttm-tool__detail {
  color: var(--ttm-muted);
  font-size: 12.8px;
  min-height: 17px;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool__formula span {
  align-items: center;
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  color: var(--ttm-text);
  display: flex;
  font-size: 12.5px;
  font-weight: 850;
  justify-content: center;
  min-height: 38px;
  min-width: 0;
  padding: 6px;
  text-align: center;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool__breakdown-card {
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  display: grid;
  gap: 7px;
  padding: 9px;
}

.time-to-minutes-wrapper .ttm-tool__breakdown {
  display: grid;
  gap: 0;
}

.time-to-minutes-wrapper .ttm-tool__breakdown-row {
  display: grid;
  grid-template-columns: minmax(70px, .42fr) minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  padding: 6px 0;
  border-top: 1px dashed var(--ttm-soft-line);
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool__breakdown-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.time-to-minutes-wrapper .ttm-tool__breakdown-row.is-total {
  color: var(--ttm-emphasis);
  font-weight: 850;
}

.time-to-minutes-wrapper .ttm-tool__breakdown-label {
  color: var(--ttm-muted);
  font-size: 12.5px;
  font-weight: 850;
}

.time-to-minutes-wrapper .ttm-tool__breakdown-value {
  min-width: 0;
  color: var(--ttm-text);
  font-size: 12.8px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool__toast {
  margin-top: 2px;
  padding: 9px 12px;
  border: 2px solid var(--ttm-line);
  background: var(--ttm-green);
  color: var(--ttm-text);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--ttm-shadow);
}

.time-to-minutes-wrapper .ttm-tool__toast[hidden] { display: none !important; }

/* Keep the required after-tool ad rhythm symmetrical: tool -> ad -> article. */
.time-to-minutes-wrapper + .roberin-qa-ad-placeholder,
.time-to-minutes-wrapper + .aicp.roberin-aicp-ad-guard {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.time-to-minutes-wrapper + .roberin-qa-ad-placeholder + article,
.time-to-minutes-wrapper + .aicp.roberin-aicp-ad-guard + article {
  margin-top: 0 !important;
}


@media (max-width: 860px) {
  .time-to-minutes-wrapper { width: min(100%, calc(100vw - 24px)); margin-top: 10px; }
  .time-to-minutes-wrapper .ttm-tool { padding: 12px; }
  .time-to-minutes-wrapper .ttm-tool__layout { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .time-to-minutes-wrapper { width: min(100%, calc(100vw - 20px)); }
  .time-to-minutes-wrapper .ttm-tool { padding: 10px; box-shadow: 5px 5px 0 var(--ttm-shadow); }
  .time-to-minutes-wrapper .ttm-tool__title h2 { font-size: 23px; }
  .time-to-minutes-wrapper .ttm-tool__title p { font-size: 13.6px; }
  .time-to-minutes-wrapper .ttm-tool__panel { padding: 10px; box-shadow: 3px 3px 0 var(--ttm-shadow); }
  .time-to-minutes-wrapper .ttm-tool__button { min-height: 38px !important; font-size: 12.5px !important; padding: 7px 6px !important; }
  .time-to-minutes-wrapper input { min-height: 36px; font-size: 16px; padding: 6px 5px; }
  .time-to-minutes-wrapper .ttm-tool__result-card--copy { grid-template-columns: minmax(0, 1fr) 48px; }
  .time-to-minutes-wrapper .ttm-tool__value--main { font-size: 21px; }
  .time-to-minutes-wrapper .ttm-tool__breakdown-row { grid-template-columns: minmax(58px, .38fr) minmax(0, 1fr); gap: 6px; }
}

@media (max-width: 370px) {
  .time-to-minutes-wrapper .ttm-tool__field,
  .time-to-minutes-wrapper .ttm-tool__breakdown-card,
  .time-to-minutes-wrapper .ttm-tool__result-card { padding: 7px; }
}


/* ROBERIN Time to Minutes/Seconds Converter v4 - Phase 2 PDF-reference article body */
.time-to-minutes-article,
.time-to-minutes-article * ,
.time-to-minutes-article *::before,
.time-to-minutes-article *::after { box-sizing: border-box !important; min-width: 0 !important; }

.entry-content article.roberin-article-body.time-to-minutes-article,
article.roberin-article-body.time-to-minutes-article {
  --ttm-article-page: #f9f1e7;
  --ttm-article-panel: #f8efe2;
  --ttm-article-card: #fff8ed;
  --ttm-article-accent-paper: #e2edd8;
  --ttm-article-text: #34281f;
  --ttm-article-muted: #574838;
  --ttm-article-line: #6b5745;
  --ttm-article-line-soft: rgba(107, 87, 69, .34);
  --ttm-article-mustard: #d2aa55;
  --ttm-article-mustard-soft: rgba(210, 170, 85, .24);
  --ttm-article-focus: #4f7d94;
  --ttm-article-shadow: rgba(82, 65, 50, .22);
  --ttm-article-soft-shadow: rgba(82, 65, 50, .13);
  position: relative !important;
  z-index: 0 !important;
  display: grid !important;
  gap: 18px !important;
  width: min(980px, calc(100vw - 32px)) !important;
  max-width: 980px !important;
  margin: clamp(24px, 4vw, 42px) auto !important;
  padding: clamp(16px, 3vw, 28px) !important;
  color: var(--ttm-article-text) !important;
  -webkit-text-fill-color: var(--ttm-article-text) !important;
  background:
    linear-gradient(rgba(107, 87, 69, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, .04) 1px, transparent 1px),
    var(--ttm-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--ttm-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--ttm-article-shadow) !important;
  overflow: hidden !important;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif !important;
  line-height: 1.72 !important;
  word-break: keep-all !important;
}

body[data-scheme="dark"] article.roberin-article-body.time-to-minutes-article,
body[data-scheme="inverse"] article.roberin-article-body.time-to-minutes-article {
  --ttm-article-page: #201811;
  --ttm-article-panel: #33271d;
  --ttm-article-card: #2b2119;
  --ttm-article-accent-paper: #344a32;
  --ttm-article-text: #f2e4cf;
  --ttm-article-muted: #f0dfc5;
  --ttm-article-line: #a98b6b;
  --ttm-article-line-soft: rgba(169, 139, 107, .46);
  --ttm-article-mustard: #d2aa55;
  --ttm-article-mustard-soft: rgba(210, 170, 85, .22);
  --ttm-article-focus: #d2aa55;
  --ttm-article-shadow: rgba(0, 0, 0, .32);
  --ttm-article-soft-shadow: rgba(0, 0, 0, .2);
  background-image:
    linear-gradient(rgba(169, 139, 107, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 139, 107, .06) 1px, transparent 1px) !important;
  background-color: var(--ttm-article-panel) !important;
  border-color: var(--ttm-article-line) !important;
}

.time-to-minutes-article :is(p, li, td, th, summary, span, strong, code, h2, h3) {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

.time-to-minutes-article .ttm-article__hero,
.time-to-minutes-article .ttm-article__section {
  display: grid !important;
  gap: 13px !important;
  min-width: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.time-to-minutes-article .ttm-article__hero {
  padding: 0 0 22px !important;
  border-bottom: 1px dashed var(--ttm-article-line-soft) !important;
}

.time-to-minutes-article .ttm-article__section + .ttm-article__section {
  margin-top: 6px !important;
  padding-top: 22px !important;
  border-top: 1px dashed var(--ttm-article-line-soft) !important;
}

.time-to-minutes-article .ttm-article__kicker {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 26px !important;
  margin: 0 !important;
  padding: 5px 9px !important;
  color: var(--ttm-article-text) !important;
  -webkit-text-fill-color: var(--ttm-article-text) !important;
  background: var(--ttm-article-accent-paper) !important;
  border: 1px solid var(--ttm-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 var(--ttm-article-soft-shadow) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  letter-spacing: .01em !important;
}

.time-to-minutes-article h2,
.time-to-minutes-article h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--ttm-article-text) !important;
  -webkit-text-fill-color: var(--ttm-article-text) !important;
  background: transparent !important;
  border: 0 !important;
  border-left: 0 !important;
  border-left-width: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  letter-spacing: -.02em !important;
  word-break: keep-all !important;
}

.time-to-minutes-article h2 { font-size: clamp(25px, 3vw, 30px) !important; font-weight: 950 !important; line-height: 1.18 !important; }
.time-to-minutes-article h3 { font-size: 19px !important; font-weight: 900 !important; line-height: 1.3 !important; }

.time-to-minutes-article p,
.time-to-minutes-article li,
.time-to-minutes-article summary {
  margin: 0 !important;
  color: var(--ttm-article-muted) !important;
  -webkit-text-fill-color: var(--ttm-article-muted) !important;
  font-size: 15px !important;
  font-weight: 680 !important;
  line-height: 1.72 !important;
  overflow-wrap: anywhere !important;
}

.time-to-minutes-article strong { color: var(--ttm-article-text) !important; -webkit-text-fill-color: var(--ttm-article-text) !important; font-weight: 920 !important; }

.time-to-minutes-article .ttm-article__nav { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; margin: 0 !important; }
.time-to-minutes-article .ttm-article__nav a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 6px 10px !important;
  color: var(--ttm-article-text) !important;
  -webkit-text-fill-color: var(--ttm-article-text) !important;
  text-decoration: none !important;
  background: var(--ttm-article-card) !important;
  border: 1px solid var(--ttm-article-line) !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}
.time-to-minutes-article .ttm-article__nav a:hover,
.time-to-minutes-article .ttm-article__nav a:focus-visible { background: var(--ttm-article-mustard-soft) !important; outline: 2px solid var(--ttm-article-focus) !important; outline-offset: 2px !important; }

.time-to-minutes-article .ttm-article__grid,
.time-to-minutes-article .ttm-article__process-grid,
.time-to-minutes-article .ttm-article__use-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  min-width: 0 !important;
}
.time-to-minutes-article .ttm-article__use-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }

.time-to-minutes-article .ttm-article__card,
.time-to-minutes-article .ttm-article__process,
.time-to-minutes-article .ttm-article__use,
.time-to-minutes-article .ttm-article__notice,
.time-to-minutes-article details {
  display: grid !important;
  gap: 7px !important;
  min-width: 0 !important;
  padding: 12px !important;
  color: var(--ttm-article-muted) !important;
  -webkit-text-fill-color: var(--ttm-article-muted) !important;
  background: var(--ttm-article-card) !important;
  border: 1px solid var(--ttm-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 var(--ttm-article-soft-shadow) !important;
}
.time-to-minutes-article .ttm-article__notice { background: rgba(239, 225, 188, .64) !important; border-style: dashed !important; }
.time-to-minutes-article .ttm-article__process { background: rgba(226, 237, 216, .70) !important; }

body[data-scheme="dark"] .time-to-minutes-article .ttm-article__card,
body[data-scheme="dark"] .time-to-minutes-article .ttm-article__process,
body[data-scheme="dark"] .time-to-minutes-article .ttm-article__use,
body[data-scheme="dark"] .time-to-minutes-article .ttm-article__notice,
body[data-scheme="dark"] .time-to-minutes-article details,
body[data-scheme="dark"] .time-to-minutes-article .ttm-article__nav a,
body[data-scheme="inverse"] .time-to-minutes-article .ttm-article__card,
body[data-scheme="inverse"] .time-to-minutes-article .ttm-article__process,
body[data-scheme="inverse"] .time-to-minutes-article .ttm-article__use,
body[data-scheme="inverse"] .time-to-minutes-article .ttm-article__notice,
body[data-scheme="inverse"] .time-to-minutes-article details,
body[data-scheme="inverse"] .time-to-minutes-article .ttm-article__nav a {
  background-color: #33271d !important;
  border-color: rgba(169, 139, 107, .72) !important;
  box-shadow: 3px 3px 0 rgba(32, 24, 17, .52) !important;
}
body[data-scheme="dark"] .time-to-minutes-article .ttm-article__notice,
body[data-scheme="dark"] .time-to-minutes-article .ttm-article__process,
body[data-scheme="inverse"] .time-to-minutes-article .ttm-article__notice,
body[data-scheme="inverse"] .time-to-minutes-article .ttm-article__process { background-color: rgba(36, 28, 21, .56) !important; }

.time-to-minutes-article .ttm-article__use span,
.time-to-minutes-article .ttm-article__process span { color: var(--ttm-article-muted) !important; -webkit-text-fill-color: var(--ttm-article-muted) !important; font-size: 12px !important; font-weight: 900 !important; line-height: 1.4 !important; }
.time-to-minutes-article code {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 5px 8px !important;
  color: var(--ttm-article-text) !important;
  -webkit-text-fill-color: var(--ttm-article-text) !important;
  background: var(--ttm-article-card) !important;
  border: 1px solid var(--ttm-article-line-soft) !important;
  border-radius: 0 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace !important;
  font-size: .92em !important;
  font-weight: 780 !important;
  line-height: 1.48 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}
body[data-scheme="dark"] .time-to-minutes-article code,
body[data-scheme="inverse"] .time-to-minutes-article code { color: #f2e4cf !important; -webkit-text-fill-color: #f2e4cf !important; background: #241c15 !important; border-color: rgba(169,139,107,.56) !important; }

.time-to-minutes-article :is(ul, ol) { display: grid !important; gap: 8px !important; margin: 0 !important; padding-left: 0 !important; list-style: none !important; }
.time-to-minutes-article :is(ul, ol) > li {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 10px !important;
  min-height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow-wrap: anywhere !important;
}
.time-to-minutes-article :is(ul, ol) > li::before { content: none !important; display: none !important; }
.time-to-minutes-article .ttm-article__marker { box-sizing: border-box !important; flex: 0 0 auto !important; align-self: start !important; margin-top: 4px !important; color: var(--ttm-article-text) !important; -webkit-text-fill-color: var(--ttm-article-text) !important; border: 1px solid var(--ttm-article-line) !important; box-shadow: 1px 1px 0 rgba(82,65,50,.22) !important; }
.time-to-minutes-article .ttm-article__marker--step { display: inline-grid !important; place-items: center !important; width: 20px !important; height: 20px !important; background: var(--ttm-article-mustard-soft) !important; font-size: 11px !important; font-weight: 920 !important; line-height: 1 !important; }
.time-to-minutes-article .ttm-article__marker--bullet { display: inline-block !important; width: 9px !important; height: 9px !important; margin-top: 9px !important; background: var(--ttm-article-mustard) !important; line-height: 1 !important; }
.time-to-minutes-article .ttm-article__li-text { display: block !important; min-width: 0 !important; align-self: start !important; color: var(--ttm-article-muted) !important; -webkit-text-fill-color: var(--ttm-article-muted) !important; }
body[data-scheme="dark"] .time-to-minutes-article .ttm-article__marker,
body[data-scheme="inverse"] .time-to-minutes-article .ttm-article__marker { border-color: #a98b6b !important; }

.time-to-minutes-article details { margin: 0 !important; }
.time-to-minutes-article summary { cursor: pointer !important; color: var(--ttm-article-text) !important; -webkit-text-fill-color: var(--ttm-article-text) !important; font-weight: 950 !important; line-height: 1.45 !important; }
.time-to-minutes-article details[open] summary { margin-bottom: 8px !important; }

.time-to-minutes-wrapper + .roberin-qa-ad-placeholder + article.roberin-article-body.time-to-minutes-article,
.time-to-minutes-wrapper + .aicp.roberin-aicp-ad-guard + article.roberin-article-body.time-to-minutes-article { margin-top: 0 !important; }

@media (max-width: 920px) { .time-to-minutes-article .ttm-article__use-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 640px) {
  .entry-content article.roberin-article-body.time-to-minutes-article,
  article.roberin-article-body.time-to-minutes-article {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
    padding: 12px !important;
    box-shadow: 4px 4px 0 rgba(82, 65, 50, .16) !important;
  }
  .time-to-minutes-article .ttm-article__grid,
  .time-to-minutes-article .ttm-article__process-grid,
  .time-to-minutes-article .ttm-article__use-grid { grid-template-columns: 1fr !important; }
  .time-to-minutes-article h3 { font-size: 18px !important; }
}
@media (max-width: 370px) { .time-to-minutes-article h2 { font-size: 25.2px !important; } }


/* v5: stronger PDF-reference typography lock for article role comparison. */
.entry-content article.roberin-article-body.time-to-minutes-article .ttm-article__kicker,
body .entry-content article.roberin-article-body.time-to-minutes-article .ttm-article__kicker,
article.roberin-article-body.time-to-minutes-article .ttm-article__kicker {
  font-size: 15px !important;
}
.entry-content article.roberin-article-body.time-to-minutes-article h2,
body .entry-content article.roberin-article-body.time-to-minutes-article h2,
article.roberin-article-body.time-to-minutes-article h2 {
  font-size: clamp(25px, 3vw, 30px) !important;
}
@media (max-width: 370px) {
  .entry-content article.roberin-article-body.time-to-minutes-article h2,
  body .entry-content article.roberin-article-body.time-to-minutes-article h2,
  article.roberin-article-body.time-to-minutes-article h2 {
    font-size: 25.2px !important;
  }
}

.time-to-minutes-wrapper {
  --ttm-paper: #f8efe2;
  --ttm-paper-soft: #fff8ed;
  --ttm-paper-muted: #f1e2cf;
  --ttm-line: #6b5745;
  --ttm-text: #34281f;
  --ttm-muted: #574838;
  --ttm-emphasis: #7a412f;
  --ttm-accent: #d2aa55;
  --ttm-green: #e2edd8;
  --ttm-focus: #4f7d94;
  --ttm-shadow: rgba(82, 65, 50, .24);
  --ttm-soft-line: rgba(107, 87, 69, .34);
  width: min(800px, calc(100vw - 32px));
  margin: 12px auto 0;
}

body[data-scheme="dark"] .time-to-minutes-wrapper,
body[data-scheme="inverse"] .time-to-minutes-wrapper {
  --ttm-paper: #2b2119;
  --ttm-paper-soft: #241c15;
  --ttm-paper-muted: #33271d;
  --ttm-line: #a98b6b;
  --ttm-text: #f2e4cf;
  --ttm-muted: #f0dfc5;
  --ttm-emphasis: #f1c982;
  --ttm-accent: #d2aa55;
  --ttm-green: #344a32;
  --ttm-focus: #8ab6ca;
  --ttm-shadow: rgba(0, 0, 0, .35);
  --ttm-soft-line: rgba(169, 139, 107, .4);
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] {
  background:
    linear-gradient(rgba(107, 87, 69, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, .055) 1px, transparent 1px),
    var(--ttm-paper);
  background-size: 16px 16px;
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 7px 7px 0 var(--ttm-shadow);
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__title {
  background: linear-gradient(135deg, var(--ttm-paper-soft), var(--ttm-paper-muted));
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--ttm-shadow);
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px 12px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__kicker {
  color: var(--ttm-emphasis);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__title h2 {
  color: var(--ttm-text);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__title p {
  color: var(--ttm-muted);
  font-size: 13.8px;
  font-weight: 650;
  line-height: 1.45;
  margin: 0;
  max-width: 620px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__body {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__panel,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__receipt,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__tape {
  background: var(--ttm-paper-soft);
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--ttm-shadow);
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 11px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__receipt {
  background:
    linear-gradient(rgba(107, 87, 69, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, .035) 1px, transparent 1px),
    var(--ttm-green);
  background-size: 12px 12px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__receipt .ttm-tool__panel-head {
  grid-column: 1 / -1;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__tape {
  grid-column: 1 / -1;
  gap: 8px;
  padding: 10px 11px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__panel-head,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__tape-head {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__tape-head {
  align-items: center;
  column-gap: 10px;
  grid-template-columns: auto minmax(0, 1fr);
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] h3 {
  color: var(--ttm-emphasis);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.22;
  margin: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__panel-head p {
  color: var(--ttm-muted);
  font-size: 12.6px;
  font-weight: 650;
  line-height: 1.45;
  margin: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__presets,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__input-grid,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__actions,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__formula {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__presets,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__input-grid,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__formula {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__actions {
  grid-template-columns: 1fr 1fr;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__button {
  align-items: center;
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 3px 3px 0 var(--ttm-shadow);
  color: var(--ttm-text);
  cursor: pointer;
  display: flex !important;
  font: inherit;
  font-size: 12.8px !important;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.12 !important;
  min-height: 38px !important;
  min-width: 0;
  padding: 7px 8px !important;
  text-align: center;
  width: 100% !important;
  -webkit-text-fill-color: currentColor;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__button--primary,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__button--copy {
  background: var(--ttm-accent);
  color: #241c15;
  -webkit-text-fill-color: #241c15;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__button--mini {
  min-height: 32px !important;
  padding: 5px 7px !important;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__field {
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  display: grid;
  gap: 5px;
  margin: 0;
  min-width: 0;
  padding: 7px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__field span,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__label {
  color: var(--ttm-muted);
  font-size: 12.4px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] input {
  background: var(--ttm-paper-soft);
  border: 0;
  border-radius: 0;
  color: var(--ttm-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
  min-height: 36px;
  min-width: 0;
  padding: 6px 7px;
  text-align: center;
  width: 100%;
  -webkit-text-fill-color: currentColor;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__hero-result {
  background: var(--ttm-paper-soft);
  border: 2px solid var(--ttm-line);
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__value {
  color: var(--ttm-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.16;
  min-width: 0;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__value--hero {
  color: var(--ttm-emphasis);
  font-size: 35px;
  letter-spacing: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__detail {
  color: var(--ttm-muted);
  font-size: 12.6px;
  font-weight: 750;
  line-height: 1.3;
  min-height: 16px;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__result-list {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__result-row {
  align-items: center;
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  display: grid;
  gap: 7px;
  grid-template-columns: minmax(48px, .32fr) minmax(0, 1fr) minmax(50px, 58px);
  min-width: 0;
  padding: 7px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__result-row--plain {
  grid-template-columns: minmax(48px, .32fr) minmax(0, 1fr);
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__formula span {
  align-items: center;
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  color: var(--ttm-text);
  display: flex;
  font-size: 12.2px;
  font-weight: 900;
  justify-content: center;
  line-height: 1.18;
  min-height: 34px;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 5px;
  text-align: center;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__breakdown {
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  display: grid;
  min-width: 0;
  padding: 3px 9px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__breakdown-row {
  align-items: center;
  border-top: 1px dashed var(--ttm-soft-line);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(72px, .28fr) minmax(0, 1fr);
  min-width: 0;
  padding: 6px 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__breakdown-row:first-child {
  border-top: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__breakdown-row.is-total {
  color: var(--ttm-emphasis);
  font-weight: 900;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__breakdown-label {
  color: var(--ttm-muted);
  font-size: 12.3px;
  font-weight: 900;
  line-height: 1.25;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__breakdown-value {
  color: var(--ttm-text);
  font-size: 12.5px;
  font-weight: 760;
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__toast {
  background: var(--ttm-green);
  border: 2px solid var(--ttm-line);
  box-shadow: 3px 3px 0 var(--ttm-shadow);
  color: var(--ttm-text);
  font-size: 13px;
  font-weight: 850;
  margin-top: 0;
  padding: 8px 10px;
}

@media (max-width: 860px) {
  .time-to-minutes-wrapper {
    width: min(100%, calc(100vw - 24px));
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__body,
  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__receipt {
    grid-template-columns: 1fr;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__tape-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .time-to-minutes-wrapper {
    width: min(100%, calc(100vw - 20px));
    margin-top: 10px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] {
    box-shadow: 5px 5px 0 var(--ttm-shadow);
    padding: 9px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__title {
    padding: 9px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__title h2 {
    font-size: 22px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__panel,
  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__receipt,
  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__tape {
    box-shadow: 3px 3px 0 var(--ttm-shadow);
    padding: 9px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__button {
    font-size: 12.2px !important;
    min-height: 36px !important;
    padding: 6px 5px !important;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__field {
    padding: 6px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] input {
    font-size: 16px;
    min-height: 34px;
    padding: 6px 4px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__value--hero {
    font-size: 30px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__result-row {
    grid-template-columns: minmax(46px, .3fr) minmax(0, 1fr) minmax(48px, 54px);
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="compact-receipt-20260607"] .ttm-tool__breakdown-row {
    grid-template-columns: minmax(62px, .34fr) minmax(0, 1fr);
  }
}

.time-to-minutes-wrapper {
  --ttm-paper: #f8efe2;
  --ttm-paper-soft: #fff8ed;
  --ttm-paper-muted: #f1e2cf;
  --ttm-line: #6b5745;
  --ttm-text: #34281f;
  --ttm-muted: #574838;
  --ttm-emphasis: #7a412f;
  --ttm-accent: #d2aa55;
  --ttm-green: #e2edd8;
  --ttm-focus: #4f7d94;
  --ttm-shadow: rgba(82, 65, 50, .22);
  --ttm-soft-line: rgba(107, 87, 69, .32);
  width: min(760px, calc(100vw - 32px));
  margin: 12px auto 0;
}

body[data-scheme="dark"] .time-to-minutes-wrapper,
body[data-scheme="inverse"] .time-to-minutes-wrapper {
  --ttm-paper: #2b2119;
  --ttm-paper-soft: #241c15;
  --ttm-paper-muted: #33271d;
  --ttm-line: #a98b6b;
  --ttm-text: #f2e4cf;
  --ttm-muted: #f0dfc5;
  --ttm-emphasis: #f1c982;
  --ttm-accent: #d2aa55;
  --ttm-green: #344a32;
  --ttm-focus: #8ab6ca;
  --ttm-shadow: rgba(0, 0, 0, .34);
  --ttm-soft-line: rgba(169, 139, 107, .4);
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] {
  background:
    linear-gradient(rgba(107, 87, 69, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, .05) 1px, transparent 1px),
    var(--ttm-paper);
  background-size: 16px 16px;
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 6px 6px 0 var(--ttm-shadow);
  color: var(--ttm-text);
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__title {
  background: linear-gradient(135deg, var(--ttm-paper-soft), var(--ttm-paper-muted));
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 3px 3px 0 var(--ttm-shadow);
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px 12px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__kicker {
  color: var(--ttm-emphasis);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__title h2 {
  color: var(--ttm-text);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__title p {
  color: var(--ttm-muted);
  font-size: 13.8px;
  font-weight: 650;
  line-height: 1.45;
  margin: 0;
  max-width: 620px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__calculator {
  background: var(--ttm-paper-soft);
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--ttm-shadow);
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__input-card,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__answer-card {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__input-card {
  border-bottom: 1px dashed var(--ttm-soft-line);
  padding-bottom: 10px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__answer-card {
  background:
    linear-gradient(rgba(107, 87, 69, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, .03) 1px, transparent 1px),
    var(--ttm-green);
  background-size: 12px 12px;
  border: 2px solid var(--ttm-line);
  padding: 10px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__panel-head,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__answer-head {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] h3 {
  color: var(--ttm-emphasis);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__panel-head p,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__answer-head > span {
  color: var(--ttm-muted);
  font-size: 12.6px;
  font-weight: 760;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: anywhere;
  text-align: right;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__clock {
  align-items: stretch;
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
  min-width: 0;
  padding: 8px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__clock-field {
  display: grid;
  gap: 3px;
  margin: 0;
  min-width: 0;
  text-align: center;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__clock-field span,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__clock-field em,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__label {
  color: var(--ttm-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__clock-field em {
  font-size: 11.5px;
  font-weight: 760;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__colon {
  align-self: center;
  color: var(--ttm-line);
  display: flex;
  font-size: 24px;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 28px;
  overflow: hidden;
  text-align: center;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] input {
  background: var(--ttm-paper-soft);
  border: 0;
  border-radius: 0;
  color: var(--ttm-text);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  min-height: 42px;
  min-width: 0;
  padding: 6px 4px;
  text-align: center;
  width: 100%;
  -webkit-text-fill-color: currentColor;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__presets,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__actions,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__formula {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__presets {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__actions {
  grid-template-columns: 1fr 1fr;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__button {
  align-items: center;
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 3px 3px 0 var(--ttm-shadow);
  color: var(--ttm-text);
  cursor: pointer;
  display: flex !important;
  font: inherit;
  font-size: 12.8px !important;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.12 !important;
  min-height: 38px !important;
  min-width: 0;
  padding: 7px 8px !important;
  text-align: center;
  width: 100% !important;
  -webkit-text-fill-color: currentColor;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__button--primary,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__button--copy {
  background: var(--ttm-accent);
  color: #241c15;
  -webkit-text-fill-color: #241c15;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__button--mini {
  min-height: 32px !important;
  padding: 5px 7px !important;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__answer-main {
  background: var(--ttm-paper-soft);
  border: 2px solid var(--ttm-line);
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__value {
  color: var(--ttm-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.14;
  min-width: 0;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__value--hero {
  color: var(--ttm-emphasis);
  font-size: 40px;
  letter-spacing: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__detail {
  color: var(--ttm-muted);
  font-size: 12.6px;
  font-weight: 760;
  line-height: 1.3;
  min-height: 16px;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__answer-side {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__mini-result,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__drawer {
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  min-width: 0;
  padding: 8px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__mini-result {
  align-items: center;
  display: grid;
  gap: 6px;
  grid-template-columns: minmax(46px, .34fr) minmax(0, 1fr) minmax(48px, 54px);
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__drawer summary {
  color: var(--ttm-emphasis);
  cursor: pointer;
  font-size: 12.8px;
  font-weight: 900;
  line-height: 1.25;
  list-style-position: inside;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__formula {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__formula span {
  align-items: center;
  background: var(--ttm-paper-soft);
  border: 2px solid var(--ttm-line);
  color: var(--ttm-text);
  display: flex;
  font-size: 11.8px;
  font-weight: 900;
  justify-content: center;
  line-height: 1.16;
  min-height: 31px;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 4px;
  text-align: center;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__breakdown {
  display: grid;
  margin-top: 7px;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__breakdown-row {
  align-items: center;
  border-top: 1px dashed var(--ttm-soft-line);
  display: grid;
  gap: 7px;
  grid-template-columns: minmax(64px, .34fr) minmax(0, 1fr);
  min-width: 0;
  padding: 5px 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__breakdown-label {
  color: var(--ttm-muted);
  font-size: 12px;
  font-weight: 900;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__breakdown-value {
  color: var(--ttm-text);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__breakdown-row.is-total {
  color: var(--ttm-emphasis);
  font-weight: 900;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__toast {
  background: var(--ttm-green);
  border: 2px solid var(--ttm-line);
  box-shadow: 3px 3px 0 var(--ttm-shadow);
  color: var(--ttm-text);
  font-size: 13px;
  font-weight: 850;
  margin-top: 0;
  padding: 8px 10px;
}

@media (max-width: 760px) {
  .time-to-minutes-wrapper {
    width: min(100%, calc(100vw - 24px));
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__answer-side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .time-to-minutes-wrapper {
    width: min(100%, calc(100vw - 20px));
    margin-top: 10px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] {
    box-shadow: 5px 5px 0 var(--ttm-shadow);
    padding: 9px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__title,
  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__calculator {
    padding: 9px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__title h2 {
    font-size: 22px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__panel-head,
  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__answer-head {
    align-items: start;
    display: grid;
    gap: 4px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__answer-head > span {
    text-align: left;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__clock {
    grid-template-columns: minmax(0, 1fr) 14px minmax(0, 1fr) 14px minmax(0, 1fr);
    padding: 6px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__colon {
    font-size: 18px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] input {
    font-size: 17px;
    min-height: 36px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__button {
    font-size: 12.2px !important;
    min-height: 36px !important;
    padding: 6px 5px !important;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__value--hero {
    font-size: 32px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__mini-result {
    grid-template-columns: minmax(46px, .32fr) minmax(0, 1fr) minmax(48px, 54px);
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="duration-card-20260608"] .ttm-tool__formula {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.time-to-minutes-wrapper {
  width: min(800px, calc(100vw - 32px));
  margin: 12px auto 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] {
  background:
    linear-gradient(rgba(107, 87, 69, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, .055) 1px, transparent 1px),
    var(--ttm-paper);
  background-size: 16px 16px;
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 7px 7px 0 var(--ttm-shadow);
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__title {
  background: linear-gradient(135deg, var(--ttm-paper-soft), var(--ttm-paper-muted));
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 3px 3px 0 var(--ttm-shadow);
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px 12px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__kicker {
  color: var(--ttm-emphasis);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__title h2 {
  color: var(--ttm-text);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__title p {
  color: var(--ttm-muted);
  font-size: 13.4px;
  font-weight: 680;
  line-height: 1.45;
  margin: 0;
  max-width: 640px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__split {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] :is(.ttm-tool__input-panel, .ttm-tool__result-panel, .ttm-tool__process-panel) {
  background: var(--ttm-paper-soft);
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--ttm-shadow);
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 11px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] :is(.ttm-tool__input-panel, .ttm-tool__result-panel) {
  align-content: start;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__process-panel {
  grid-column: 1 / -1;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__panel-head {
  align-items: start;
  border-bottom: 1px dashed var(--ttm-soft-line);
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-bottom: 8px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__panel-head h3,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__process-head h3 {
  color: var(--ttm-emphasis);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.24;
  margin: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__panel-head p,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] #originalTime {
  color: var(--ttm-muted);
  font-size: 12.8px;
  font-weight: 750;
  line-height: 1.42;
  margin: 0;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__clock {
  align-items: stretch;
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  display: grid;
  gap: 6px;
  grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
  min-width: 0;
  padding: 8px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__clock-field {
  display: grid;
  gap: 4px;
  margin: 0;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__clock-field span,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__clock-field em,
.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__label {
  color: var(--ttm-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__colon {
  align-items: center;
  color: var(--ttm-emphasis);
  display: flex;
  font-size: 20px;
  font-weight: 950;
  justify-content: center;
  line-height: 1;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] input {
  background: var(--ttm-paper-soft);
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  color: var(--ttm-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  min-height: 38px;
  min-width: 0;
  padding: 6px 5px;
  text-align: center;
  width: 100%;
  -webkit-text-fill-color: currentColor;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] :is(.ttm-tool__presets, .ttm-tool__actions, .ttm-tool__formula) {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__presets {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__button {
  align-items: center;
  appearance: none;
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  border-radius: 0;
  box-shadow: 3px 3px 0 var(--ttm-shadow);
  color: var(--ttm-text);
  cursor: pointer;
  display: flex !important;
  font: inherit;
  font-size: 12.8px !important;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.12 !important;
  min-height: 38px !important;
  min-width: 0;
  padding: 7px 8px !important;
  text-align: center;
  width: 100% !important;
  -webkit-text-fill-color: currentColor;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__button--primary {
  background: var(--ttm-accent);
  color: #241c15;
  -webkit-text-fill-color: #241c15;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__button:hover {
  background: var(--ttm-green);
  box-shadow: 2px 2px 0 var(--ttm-shadow);
  transform: translate(1px, 1px);
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__button--primary:hover {
  background: #c79c3c;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] :is(.ttm-tool__primary-result, .ttm-tool__seconds-result) {
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 9px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__primary-result {
  border-left-width: 6px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__seconds-result {
  align-items: center;
  grid-template-columns: minmax(48px, .36fr) minmax(0, 1fr) minmax(46px, 54px);
  gap: 7px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__value {
  color: var(--ttm-text);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__value--main {
  color: var(--ttm-emphasis);
  font-size: 31px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__detail {
  color: var(--ttm-muted);
  font-size: 12.8px;
  font-weight: 750;
  line-height: 1.35;
  min-height: 17px;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__button--copy {
  min-height: 36px !important;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__button--mini {
  min-height: 32px !important;
  padding: 6px 5px !important;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__process-head {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__formula {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__formula span {
  align-items: center;
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  color: var(--ttm-text);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  line-height: 1.24;
  min-height: 34px;
  min-width: 0;
  padding: 5px 6px;
  text-align: center;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__breakdown {
  background: var(--ttm-paper);
  border: 2px solid var(--ttm-line);
  display: grid;
  gap: 0;
  min-width: 0;
  padding: 8px 10px;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__breakdown-row {
  align-items: center;
  border-top: 1px dashed var(--ttm-soft-line);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(70px, .24fr) minmax(0, 1fr);
  min-width: 0;
  padding: 6px 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__breakdown-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__breakdown-row.is-total {
  color: var(--ttm-emphasis);
  font-weight: 950;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__breakdown-label {
  color: var(--ttm-muted);
  font-size: 12.2px;
  font-weight: 900;
  line-height: 1.32;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__breakdown-value {
  color: var(--ttm-text);
  font-size: 12.8px;
  font-weight: 760;
  line-height: 1.35;
  min-width: 0;
  overflow-wrap: anywhere;
}

.time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__toast {
  background: var(--ttm-green);
  border: 2px solid var(--ttm-line);
  box-shadow: 3px 3px 0 var(--ttm-shadow);
  color: var(--ttm-text);
  font-size: 13px;
  font-weight: 850;
  margin-top: 0;
  padding: 8px 10px;
}

@media (max-width: 760px) {
  .time-to-minutes-wrapper {
    width: min(100%, calc(100vw - 24px));
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__split {
    grid-template-columns: 1fr;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__process-panel {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .time-to-minutes-wrapper {
    width: min(100%, calc(100vw - 20px));
    margin-top: 10px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] {
    box-shadow: 5px 5px 0 var(--ttm-shadow);
    gap: 9px;
    padding: 9px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__title,
  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] :is(.ttm-tool__input-panel, .ttm-tool__result-panel, .ttm-tool__process-panel) {
    padding: 9px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__title h2 {
    font-size: 21.5px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__title p {
    font-size: 13px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__clock {
    gap: 5px;
    grid-template-columns: minmax(0, 1fr) 12px minmax(0, 1fr) 12px minmax(0, 1fr);
    padding: 6px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] input {
    font-size: 16px;
    min-height: 36px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__button {
    font-size: 12px !important;
    min-height: 36px !important;
    padding: 6px 5px !important;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__value--main {
    font-size: 29px;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__process-head,
  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__formula {
    grid-template-columns: 1fr;
  }

  .time-to-minutes-wrapper .ttm-tool[data-ttm-layout="split-process-20260608"] .ttm-tool__breakdown-row {
    grid-template-columns: minmax(58px, .36fr) minmax(0, 1fr);
    gap: 6px;
  }
}
