/* ROBERIN annual leave calculator redesign - 2026-05-26 */
body.postid-1582 {
  --al-paper: #fff7e8;
  --al-paper-soft: #fbf0dc;
  --al-ink: #2b2119;
  --al-muted: #67584a;
  --al-line: #6b5745;
  --al-line-soft: rgba(107, 87, 69, 0.26);
  --al-green: #e3efd2;
  --al-green-ink: #2f4e2e;
  --al-blue: #dfeef8;
  --al-blue-ink: #28455a;
  --al-amber: #f7df9d;
  --al-red: #a43e2d;
  --al-white: #fffdf7;
  --al-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --al-shadow-soft: 2px 2px 0 rgba(72, 55, 40, 0.14);
  --al-main-grid-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.1fr);
  background:
    linear-gradient(90deg, rgba(107, 87, 69, 0.025) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(107, 87, 69, 0.022) 1px, transparent 1px) 0 0 / 18px 18px,
    #faf2e8;
}

body.postid-1582 .cs-site-content > .cs-container,
body.postid-1582 .cs-main-content,
body.postid-1582 .cs-content-area,
body.postid-1582 .cs-entry__container,
body.postid-1582 .cs-entry__content-wrap {
  width: 100%;
  max-width: none;
}

body.postid-1582 .cs-breadcrumbs,
body.postid-1582 .cs-entry__header,
body.postid-1582 .annual-leave-wrapper {
  width: min(1050px, calc(100vw - 32px));
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

body.postid-1582 .cs-entry__header {
  margin-top: 18px;
  margin-bottom: 14px;
  text-align: left;
}

body.postid-1582 .cs-entry__title {
  color: var(--al-ink);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.annual-leave-wrapper,
.annual-leave-wrapper *,
.annual-leave-wrapper *::before,
.annual-leave-wrapper *::after {
  box-sizing: border-box;
}

.annual-leave-wrapper {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--al-ink);
}

.annual-leave-container {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  color: var(--al-ink);
  background: var(--al-paper);
  border: 2px solid var(--al-line);
  border-radius: 0;
  box-shadow: var(--al-shadow);
  line-height: 1.52;
}

.annual-leave-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(107, 87, 69, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, 0.045) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.annual-leave-wrapper br {
  display: none !important;
}

.annual-leave-wrapper .calculator-header {
  display: grid;
  gap: 6px;
  margin: 0 0 10px;
  padding: 0 0 10px;
  text-align: left;
  border-bottom: 2px solid var(--al-line);
}

.annual-leave-wrapper .calculator-header h2 {
  margin: 0;
  color: var(--al-ink);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.14;
  font-weight: 950;
  letter-spacing: -0.045em;
  text-shadow: none;
  word-break: keep-all;
}

.annual-leave-wrapper .calculator-header .subtitle,
.annual-leave-wrapper .subtitle {
  max-width: 720px;
  margin: 0;
  color: var(--al-muted);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 700;
  word-break: keep-all;
}

.annual-leave-wrapper .quick-actions {
  display: grid;
  grid-template-columns: var(--al-main-grid-columns);
  gap: 10px;
  margin: 0 0 10px;
}

.annual-leave-wrapper .btn-quick,
.annual-leave-wrapper .btn-reset,
.annual-leave-wrapper .btn-calculate {
  appearance: none;
  border-radius: 0;
  font-family: inherit;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, color 120ms ease;
}

.annual-leave-wrapper .btn-quick,
.annual-leave-wrapper .btn-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--al-ink);
  background: var(--al-green);
  border: 1px solid var(--al-line);
  box-shadow: var(--al-shadow-soft);
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.annual-leave-wrapper .btn-reset {
  color: #743528;
  background: #f3dfd3;
}

.annual-leave-wrapper .btn-quick:hover,
.annual-leave-wrapper .btn-reset:hover,
.annual-leave-wrapper .btn-calculate:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(72, 55, 40, 0.16);
}

.annual-leave-wrapper .btn-quick:active,
.annual-leave-wrapper .btn-reset:active,
.annual-leave-wrapper .btn-calculate:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.annual-leave-wrapper .btn-quick:focus-visible,
.annual-leave-wrapper .btn-reset:focus-visible,
.annual-leave-wrapper .btn-calculate:focus-visible,
.annual-leave-wrapper .date-input:focus-visible,
.annual-leave-wrapper .number-input:focus-visible,
.annual-leave-wrapper .money-input:focus-visible {
  outline: 3px solid #d6a62b;
  outline-offset: 2px;
}

.annual-leave-wrapper .calculator-main {
  display: grid;
  grid-template-columns: var(--al-main-grid-columns);
  gap: 10px;
  margin: 0 0 10px;
  align-items: stretch;
}

.annual-leave-wrapper .input-section,
.annual-leave-wrapper .result-section,
.annual-leave-wrapper .special-section,
.annual-leave-wrapper .info-section {
  min-width: 0;
  color: var(--al-ink);
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid var(--al-line);
  border-radius: 0;
  box-shadow: var(--al-shadow-soft);
  padding: 12px;
}

.annual-leave-wrapper .input-section,
.annual-leave-wrapper .result-section,
.annual-leave-wrapper .special-section {
  display: flex;
  flex-direction: column;
}

.annual-leave-wrapper .section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  padding: 0 0 8px;
  color: var(--al-ink) !important;
  border-bottom: 1px solid var(--al-line-soft);
  font-size: 15.5px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.annual-leave-wrapper .input-group {
  display: grid;
  gap: 5px;
  margin: 0 0 10px;
}

.annual-leave-wrapper .input-group--split {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 8px;
}

.annual-leave-wrapper .input-group--split > div {
  min-width: 0;
}

.annual-leave-wrapper label {
  display: block;
  margin: 0 0 5px;
  color: var(--al-ink);
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 900;
}

.annual-leave-wrapper .input-help {
  margin: -1px 0 0;
  color: var(--al-muted);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 700;
}

.annual-leave-wrapper .date-input,
.annual-leave-wrapper .number-input,
.annual-leave-wrapper .money-input {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--al-ink) !important;
  -webkit-text-fill-color: var(--al-ink) !important;
  background: var(--al-white);
  border: 1px solid var(--al-line);
  border-radius: 0;
  box-shadow: inset 1px 1px 0 rgba(72, 55, 40, 0.08);
  font: inherit;
  font-size: 14.5px;
  line-height: 1.2;
  font-weight: 800;
}

.annual-leave-wrapper .date-input::placeholder,
.annual-leave-wrapper .number-input::placeholder,
.annual-leave-wrapper .money-input::placeholder {
  color: rgba(103, 88, 74, 0.7);
  -webkit-text-fill-color: rgba(103, 88, 74, 0.7);
}

.annual-leave-wrapper .btn-calculate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 42px;
  margin-top: 2px;
  padding: 10px 12px;
  color: var(--al-ink);
  background: var(--al-amber);
  border: 2px solid var(--al-line);
  box-shadow: var(--al-shadow-soft);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 950;
}

.annual-leave-wrapper .tool-status {
  margin-top: 10px;
  padding: 9px 10px;
  color: var(--al-blue-ink);
  background: var(--al-blue);
  border: 1px dashed var(--al-line);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.annual-leave-wrapper .tool-status[data-type="error"] {
  color: var(--al-red);
  background: #f7dfd7;
}

.annual-leave-wrapper .tool-status[data-type="success"] {
  color: var(--al-green-ink);
  background: var(--al-green);
}

.annual-leave-wrapper .tool-status[data-type="warn"] {
  color: #654a16;
  background: #fff0c2;
}

.annual-leave-wrapper .no-result {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 14px;
  color: var(--al-muted);
  background: rgba(251, 240, 220, 0.72);
  border: 1px dashed var(--al-line-soft);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.annual-leave-wrapper .no-result[hidden],
.annual-leave-wrapper .result-display[hidden],
.annual-leave-wrapper .special-result[hidden],
.annual-leave-wrapper .tool-status[hidden] {
  display: none !important;
}

.annual-leave-wrapper .result-display {
  display: grid;
  gap: 10px;
}

.annual-leave-wrapper .main-result {
  padding: 14px 12px;
  background: var(--al-green);
  border: 2px solid var(--al-line);
  text-align: center;
}

.annual-leave-wrapper .big-number {
  color: var(--al-green-ink);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.annual-leave-wrapper .main-result .result-label {
  margin-top: 5px;
  color: var(--al-ink);
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 900;
}

.annual-leave-wrapper .detail-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.annual-leave-wrapper .result-item {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 4px;
  min-width: 0;
  min-height: 72px;
  padding: 9px 8px;
  background: var(--al-white);
  border: 1px solid var(--al-line-soft);
  text-align: center;
}

.annual-leave-wrapper .result-label-text {
  color: var(--al-muted);
  font-size: 12.5px;
  line-height: 1.15;
  font-weight: 900;
}

.annual-leave-wrapper .result-value {
  min-width: 0;
  color: var(--al-ink);
  font-size: 15px;
  line-height: 1.18;
  font-weight: 950;
  word-break: keep-all;
}

.annual-leave-wrapper .summary-list {
  display: grid;
  gap: 8px;
}

.annual-leave-wrapper .summary-row {
  display: grid;
  grid-template-columns: minmax(74px, 0.42fr) minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 8px 9px;
  background: var(--al-white);
  border: 1px solid var(--al-line-soft);
}

.annual-leave-wrapper .summary-row span {
  color: var(--al-muted);
  font-size: 12.5px;
  font-weight: 900;
}

.annual-leave-wrapper .summary-row strong {
  min-width: 0;
  color: var(--al-ink);
  font-size: 13px;
  line-height: 1.28;
  font-weight: 950;
  word-break: keep-all;
}

.annual-leave-wrapper .special-result {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 12px;
  background: var(--al-blue);
  border: 1px dashed var(--al-line);
  text-align: center;
}

.annual-leave-wrapper .special-date {
  color: var(--al-blue-ink);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 950;
}

.annual-leave-wrapper .special-info {
  color: var(--al-muted);
  font-size: 13px;
  font-weight: 850;
}

.annual-leave-wrapper .info-section {
  margin-top: 0;
}

.annual-leave-wrapper .info-content {
  display: grid;
  gap: 10px;
}

.annual-leave-wrapper .info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.annual-leave-wrapper .info-card {
  min-width: 0;
  padding: 10px;
  background: var(--al-white);
  border: 1px solid var(--al-line-soft);
}

.annual-leave-wrapper .info-icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  place-items: center;
  color: var(--al-green-ink);
  background: var(--al-green);
  border: 1px solid var(--al-line);
  font-size: 12px;
  font-weight: 950;
}

.annual-leave-wrapper .info-title {
  margin-bottom: 4px;
  color: var(--al-ink);
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 950;
}

.annual-leave-wrapper .info-desc {
  color: var(--al-muted);
  font-size: 12.5px;
  line-height: 1.42;
  font-weight: 700;
  word-break: keep-all;
}

.annual-leave-wrapper .warning-box {
  padding: 10px 12px;
  color: var(--al-ink);
  background: #fff0c2;
  border: 1px dashed var(--al-line);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 750;
  word-break: keep-all;
}


body.postid-1582 .annual-leave-wrapper + .roberin-qa-ad-placeholder,
body.postid-1582 .annual-leave-wrapper + .aicp {
  margin-top: 40px !important;
}

.annual-leave-wrapper .warning-box strong {
  color: #654a16;
  font-weight: 950;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) {
  --al-paper: #2b2119;
  --al-paper-soft: #33271d;
  --al-ink: #f2e4cf;
  --al-muted: #f0dfc5;
  --al-line: #a98b6b;
  --al-line-soft: rgba(169, 139, 107, 0.36);
  --al-green: #344a32;
  --al-green-ink: #f2e4cf;
  --al-blue: #28394a;
  --al-blue-ink: #f2e4cf;
  --al-amber: #d2aa55;
  --al-red: #ffb7a8;
  --al-white: #241c15;
  --al-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34);
  --al-shadow-soft: 2px 2px 0 rgba(0, 0, 0, 0.22);
  background:
    linear-gradient(rgba(229, 196, 139, 0.055) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(229, 196, 139, 0.045) 1px, transparent 1px) 0 0 / 18px 18px,
    #201811;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .cs-entry__title,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .calculator-header h2,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .section-title,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper label,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .result-value,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .summary-row strong,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .info-title,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .warning-box {
  color: var(--al-ink) !important;
  -webkit-text-fill-color: var(--al-ink) !important;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .calculator-header .subtitle,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .input-help,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .result-label-text,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .summary-row span,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .special-info,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .info-desc {
  color: var(--al-muted) !important;
  -webkit-text-fill-color: var(--al-muted) !important;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .btn-quick,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .btn-reset,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .btn-calculate {
  color: var(--al-ink) !important;
  -webkit-text-fill-color: var(--al-ink) !important;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .btn-calculate {
  color: #241c15 !important;
  -webkit-text-fill-color: #241c15 !important;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .date-input,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .number-input,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .money-input {
  color: var(--al-ink) !important;
  -webkit-text-fill-color: var(--al-ink) !important;
  background: #241c15;
  border-color: var(--al-line);
  color-scheme: dark;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .date-input::placeholder,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .number-input::placeholder,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .money-input::placeholder {
  color: rgba(240, 223, 197, 0.68);
  -webkit-text-fill-color: rgba(240, 223, 197, 0.68);
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .tool-status[data-type="error"] {
  color: #ffb7a8 !important;
  -webkit-text-fill-color: #ffb7a8 !important;
  background: #4b2b24;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .warning-box,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-wrapper .tool-status[data-type="warn"] {
  background: #493a1e;
}

@media (max-width: 920px) {
  body.postid-1582 .cs-breadcrumbs,
  body.postid-1582 .cs-entry__header,
  body.postid-1582 .annual-leave-wrapper {
    width: min(100%, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }


  body.postid-1582 .annual-leave-wrapper + .roberin-qa-ad-placeholder,
  body.postid-1582 .annual-leave-wrapper + .aicp {
    margin-top: 24px !important;
  }

  .annual-leave-wrapper .quick-actions,
  .annual-leave-wrapper .calculator-main {
    grid-template-columns: 1fr;
  }

  .annual-leave-wrapper .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .annual-leave-wrapper .no-result {
    min-height: 120px;
  }
}

@media (max-width: 520px) {
  body.postid-1582 .cs-breadcrumbs,
  body.postid-1582 .cs-entry__header,
  body.postid-1582 .annual-leave-wrapper {
    width: min(100%, calc(100vw - 20px));
    max-width: calc(100vw - 20px);
  }

  .annual-leave-container {
    padding: 12px;
  }

  .annual-leave-wrapper .input-group--split,
  .annual-leave-wrapper .detail-results,
  .annual-leave-wrapper .summary-row,
  .annual-leave-wrapper .info-grid {
    grid-template-columns: 1fr;
  }

  .annual-leave-wrapper .quick-actions {
    gap: 8px;
  }

  .annual-leave-wrapper .btn-quick,
  .annual-leave-wrapper .btn-reset,
  .annual-leave-wrapper .btn-calculate {
    white-space: normal;
  }
}

/* Annual leave Phase 2 article body — PDF reference rhythm with target namespace */
body.postid-1582 .entry-content article.roberin-article-body.annual-leave-article,
body.postid-1582 .annual-leave-article {
  --al-article-panel: #f8efe2;
  --al-article-card: #fff8ed;
  --al-article-text: #34281f;
  --al-article-muted: #574838;
  --al-article-line: #6b5745;
  --al-article-line-soft: rgba(107, 87, 69, .34);
  --al-article-shadow: rgba(82, 65, 50, .22);
  --al-article-soft-shadow: rgba(82, 65, 50, .13);
  --al-article-accent-paper: #e2edd8;
  --al-article-mustard: #d2aa55;
  --al-article-mustard-soft: rgba(210, 170, 85, .24);
  --al-article-focus: #4f7d94;
  position: relative;
  z-index: 0;
  display: grid !important;
  gap: 18px !important;
  box-sizing: border-box !important;
  width: min(980px, calc(100vw - 32px)) !important;
  max-width: 980px !important;
  min-width: 0 !important;
  margin: clamp(24px, 4vw, 42px) auto !important;
  padding: clamp(16px, 3vw, 28px) !important;
  color: var(--al-article-text) !important;
  -webkit-text-fill-color: var(--al-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(--al-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--al-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--al-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.postid-1582 .annual-leave-article,
body.postid-1582 .annual-leave-article *,
body.postid-1582 .annual-leave-article *::before,
body.postid-1582 .annual-leave-article *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
}

body.postid-1582 .annual-leave-article :is(p, li, td, th, summary, span, strong, code, h2, h3) {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

body.postid-1582 .al-article__hero,
body.postid-1582 .al-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;
}

body.postid-1582 .al-article__hero {
  padding: 0 0 22px !important;
  border-bottom: 1px dashed var(--al-article-line-soft) !important;
}

body.postid-1582 .al-article__section + .al-article__section {
  margin-top: 6px !important;
  padding-top: 22px !important;
  border-top: 1px dashed var(--al-article-line-soft) !important;
}

body.postid-1582 .al-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(--al-article-text) !important;
  -webkit-text-fill-color: var(--al-article-text) !important;
  background: var(--al-article-accent-paper) !important;
  border: 1px solid var(--al-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 var(--al-article-soft-shadow) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  letter-spacing: .01em !important;
}

body.postid-1582 .annual-leave-article h2,
body.postid-1582 .annual-leave-article h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--al-article-text) !important;
  -webkit-text-fill-color: var(--al-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;
}

body.postid-1582 .annual-leave-article h2 {
  font-size: clamp(25px, 3vw, 30px) !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
}

body.postid-1582 .annual-leave-article h3 {
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

body.postid-1582 .annual-leave-article p,
body.postid-1582 .annual-leave-article li,
body.postid-1582 .annual-leave-article summary {
  margin: 0 !important;
  color: var(--al-article-muted) !important;
  -webkit-text-fill-color: var(--al-article-muted) !important;
  font-size: 15px !important;
  font-weight: 680 !important;
  line-height: 1.72 !important;
  overflow-wrap: anywhere !important;
}

body.postid-1582 .annual-leave-article strong {
  color: var(--al-article-text) !important;
  -webkit-text-fill-color: var(--al-article-text) !important;
  font-weight: 920 !important;
}

body.postid-1582 .al-article__nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
}

body.postid-1582 .al-article__nav a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 6px 10px !important;
  color: var(--al-article-text) !important;
  -webkit-text-fill-color: var(--al-article-text) !important;
  text-decoration: none !important;
  background: var(--al-article-card) !important;
  border: 1px solid var(--al-article-line) !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

body.postid-1582 .al-article__nav a:hover,
body.postid-1582 .al-article__nav a:focus-visible {
  background: var(--al-article-mustard-soft) !important;
  outline: 2px solid var(--al-article-focus) !important;
  outline-offset: 2px !important;
}

body.postid-1582 .al-article__grid,
body.postid-1582 .al-article__process-grid,
body.postid-1582 .al-article__use-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  min-width: 0 !important;
}

body.postid-1582 .al-article__use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.postid-1582 .al-article__card,
body.postid-1582 .al-article__process,
body.postid-1582 .al-article__use,
body.postid-1582 .al-article__notice,
body.postid-1582 .annual-leave-article details {
  display: grid !important;
  gap: 7px !important;
  min-width: 0 !important;
  padding: 12px !important;
  color: var(--al-article-muted) !important;
  -webkit-text-fill-color: var(--al-article-muted) !important;
  background: var(--al-article-card) !important;
  border: 1px solid var(--al-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 var(--al-article-soft-shadow) !important;
}

body.postid-1582 .al-article__notice {
  background: rgba(239, 225, 188, .64) !important;
  border-style: dashed !important;
}

body.postid-1582 .al-article__process {
  background: rgba(226, 237, 216, .70) !important;
}

body.postid-1582 .al-article__use span,
body.postid-1582 .al-article__process span {
  color: var(--al-article-muted) !important;
  -webkit-text-fill-color: var(--al-article-muted) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
}

body.postid-1582 .annual-leave-article code {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 5px 8px !important;
  color: var(--al-article-text) !important;
  -webkit-text-fill-color: var(--al-article-text) !important;
  background: var(--al-article-card) !important;
  border: 1px solid var(--al-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.postid-1582 .annual-leave-article :is(ul, ol) {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

body.postid-1582 .annual-leave-article ol,
body.postid-1582 .annual-leave-article ol.al-article__steps {
  counter-reset: annual-leave-step !important;
}

body.postid-1582 .annual-leave-article :is(ul, ol) > li {
  position: relative !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 9px !important;
  min-width: 0 !important;
  min-height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow-wrap: anywhere !important;
}

body.postid-1582 .annual-leave-article :is(ul, ol) > li::before {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  align-self: start !important;
  box-sizing: border-box !important;
  color: var(--al-article-text) !important;
  -webkit-text-fill-color: var(--al-article-text) !important;
  border-radius: 0 !important;
  margin-top: .48em !important;
}

body.postid-1582 .annual-leave-article ul > li::before {
  content: "" !important;
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  background: var(--al-article-mustard) !important;
  border: 1px solid var(--al-article-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important;
  line-height: 1 !important;
}

body.postid-1582 .annual-leave-article ol > li,
body.postid-1582 .annual-leave-article ol.al-article__steps > li {
  counter-increment: annual-leave-step !important;
}

body.postid-1582 .annual-leave-article ol > li::before,
body.postid-1582 .annual-leave-article ol.al-article__steps > li::before {
  content: counter(annual-leave-step) !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  margin-top: .18em !important;
  background: var(--al-article-mustard-soft) !important;
  border: 1px solid var(--al-article-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important;
  font-size: 11px !important;
  font-weight: 920 !important;
  line-height: 1 !important;
}

body.postid-1582 .al-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: start !important;
}

body.postid-1582 .annual-leave-article details {
  margin: 0 !important;
}

body.postid-1582 .annual-leave-article summary {
  cursor: pointer !important;
  display: list-item !important;
  list-style-position: inside !important;
  color: var(--al-article-text) !important;
  -webkit-text-fill-color: var(--al-article-text) !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
}

body.postid-1582 .annual-leave-article details[open] summary {
  margin-bottom: 8px !important;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .entry-content article.roberin-article-body.annual-leave-article,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-article {
  --al-article-panel: #33271d;
  --al-article-card: #2b2119;
  --al-article-accent-paper: #344a32;
  --al-article-text: #f2e4cf;
  --al-article-muted: #f0dfc5;
  --al-article-line: #a98b6b;
  --al-article-line-soft: rgba(169, 139, 107, .46);
  --al-article-mustard: #d2aa55;
  --al-article-mustard-soft: rgba(210, 170, 85, .22);
  --al-article-focus: #d2aa55;
  --al-article-shadow: rgba(0, 0, 0, .32);
  --al-article-soft-shadow: rgba(0, 0, 0, .2);
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .entry-content article.roberin-article-body.annual-leave-article,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-article {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  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: #33271d !important;
  border-color: #a98b6b !important;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-article :is(h2, h3, strong, summary) {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-article :is(p, li, span) {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .al-article__card,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .al-article__process,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .al-article__use,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .al-article__notice,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-article details,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .al-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.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .al-article__notice,
body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .al-article__process {
  background-color: rgba(36, 28, 21, .56) !important;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-article code {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  background: #241c15 !important;
  border-color: rgba(169, 139, 107, .56) !important;
}

body.postid-1582:is([data-scheme="dark"], [data-scheme="inverse"]) .annual-leave-article :is(ul, ol) > li::before {
  border-color: #a98b6b !important;
}

@media (max-width: 920px) {
  body.postid-1582 .al-article__use-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  body.postid-1582 .entry-content article.roberin-article-body.annual-leave-article,
  body.postid-1582 .annual-leave-article {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 12px !important;
    box-shadow: 4px 4px 0 rgba(82, 65, 50, .16) !important;
  }

  body.postid-1582 .al-article__grid,
  body.postid-1582 .al-article__process-grid,
  body.postid-1582 .al-article__use-grid {
    grid-template-columns: 1fr !important;
  }

  body.postid-1582 .annual-leave-article h3 {
    font-size: 18px !important;
  }
}

@media (max-width: 370px) {
  body.postid-1582 .annual-leave-article h2 {
    font-size: 25.2px !important;
  }
}

body.postid-1582 .roberin-qa-ad-placeholder + article.annual-leave-article,
body.postid-1582 .aicp + article.annual-leave-article {
  margin-top: 40px !important;
}

@media (max-width: 640px) {
  body.postid-1582 .roberin-qa-ad-placeholder + article.annual-leave-article,
  body.postid-1582 .aicp + article.annual-leave-article {
    margin-top: 24px !important;
  }
}

body.postid-1582 .entry-content .roberin-qa-ad-placeholder + article.roberin-article-body.annual-leave-article,
body.postid-1582 .entry-content .aicp + article.roberin-article-body.annual-leave-article,
body.postid-1582 .cs-entry__content-wrap .roberin-qa-ad-placeholder + article.roberin-article-body.annual-leave-article,
body.postid-1582 .cs-entry__content-wrap .aicp + article.roberin-article-body.annual-leave-article {
  margin-top: 40px !important;
}

@media (max-width: 640px) {
  body.postid-1582 .entry-content .roberin-qa-ad-placeholder + article.roberin-article-body.annual-leave-article,
  body.postid-1582 .entry-content .aicp + article.roberin-article-body.annual-leave-article,
  body.postid-1582 .cs-entry__content-wrap .roberin-qa-ad-placeholder + article.roberin-article-body.annual-leave-article,
  body.postid-1582 .cs-entry__content-wrap .aicp + article.roberin-article-body.annual-leave-article {
    margin-top: 24px !important;
  }
}
