/* ================================================================
   install request board skin — style.css
   Dark premium gold theme. mobilen.kr
   ================================================================ */

/* ── Install Request Write ── */
.ir-write {
  --font:         "Pretendard Variable", "Pretendard", -apple-system, system-ui, sans-serif;
  --bg:           var(--color-bg,           #131316);
  --surface:      var(--color-surface,      #1a1a1f);
  --surface-2:    var(--color-surface-2,    #22222a);
  --border:       var(--color-border,       rgba(255,255,255,0.08));
  --border-light: var(--color-border-light, rgba(255,255,255,0.05));
  --text:         var(--color-text,         #f0f0f0);
  --muted:        var(--color-text-muted,   #888);
  --subtle:       #5c5c64;
  --gold:         var(--color-accent,       #C4A55A);
  --gold-dim:     #9A7D3D;
  --gold-bright:  #D4C080;
  --gold-glow:    rgba(196,165,90,0.10);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --ease: cubic-bezier(0.16,1,0.3,1);
  font-family: var(--font);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  width: 100%; max-width: 760px; margin: 0 auto; padding: 40px 0 80px;
}
.ir-write *, .ir-write *::before, .ir-write *::after { box-sizing: border-box; }

.ir-head { text-align: center; margin-bottom: 40px; }
.ir-head__label {
  font-size: .6875rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.ir-head__title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  letter-spacing: -.025em; color: var(--text); margin: 0 0 12px;
}
.ir-head__desc {
  font-size: .9rem; color: var(--muted); line-height: 1.7; margin: 0;
}

.ir-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  position: relative; overflow: hidden;
}
.ir-card::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 140px;
  background: radial-gradient(ellipse, rgba(196,165,90,.06) 0%, transparent 70%);
  pointer-events: none;
}

.ir-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}
.ir-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ir-section--captcha { padding-top: 8px; }

.ir-section__title {
  font-size: .8125rem; font-weight: 700; color: var(--muted);
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px;
}

/* ── 서비스 유형 카드 ── */
.ir-type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ir-type-card { cursor: pointer; }
.ir-type-card input[type=radio] { display: none; }
.ir-type-card__inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 16px;
  background: rgba(255,255,255,.03);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .2s var(--ease), background .2s, transform .15s;
  text-align: center;
}
.ir-type-card__inner svg { color: var(--muted); transition: color .2s; }
.ir-type-card__name {
  font-size: .9375rem; font-weight: 700; color: var(--text); line-height: 1.2;
}
.ir-type-card__desc {
  font-size: .8rem; color: var(--muted); line-height: 1.5;
}
.ir-type-card:hover .ir-type-card__inner {
  border-color: var(--gold-dim);
  background: rgba(196,165,90,.05);
}
.ir-type-card.is-selected .ir-type-card__inner {
  border-color: var(--gold);
  background: rgba(196,165,90,.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,165,90,.15);
}
.ir-type-card.is-selected .ir-type-card__inner svg { color: var(--gold); }

/* ── Fields ── */
.ir-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ir-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.ir-field { display: flex; flex-direction: column; gap: 7px; }
.ir-label {
  font-size: .75rem; font-weight: 700; color: var(--muted); letter-spacing: .02em;
}
.ir-req { color: var(--gold); margin-left: 2px; }
.ir-optional { font-size: .75rem; font-weight: 400; color: var(--subtle); }
.ir-hint { font-size: .75rem; color: var(--subtle); margin-top: 2px; }

.ir-input {
  width: 100%; background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: var(--r-sm) !important;
  padding: 10px 13px !important;
  font-size: .9rem !important; font-family: var(--font) !important;
  color: var(--text) !important;
  transition: border-color .17s, box-shadow .17s;
  outline: none !important;
}
.ir-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px var(--gold-glow) !important;
}
.ir-input::placeholder { color: var(--subtle) !important; }

.ir-textarea {
  width: 100%; background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: var(--r-sm) !important;
  padding: 12px 14px !important;
  font-size: .9rem !important; font-family: var(--font) !important;
  color: var(--text) !important; line-height: 1.7 !important;
  resize: vertical; outline: none !important; min-height: 120px !important;
  height: 120px !important;
}
.ir-textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px var(--gold-glow) !important;
}
.ir-textarea::placeholder { color: var(--subtle) !important; }

.ir-notice {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: 12px; padding: 10px 13px;
  background: rgba(196,165,90,.06);
  border: 1px solid rgba(196,165,90,.15);
  border-radius: var(--r-sm);
  font-size: .8rem; color: var(--muted); line-height: 1.6;
}
.ir-notice svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── File ── */
.ir-file-row { margin-bottom: 10px; }
.ir-file-label {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-sm);
  font-size: .8125rem; font-weight: 600; color: var(--muted);
  cursor: pointer;
  transition: border-color .17s, color .17s;
}
.ir-file-label:hover { border-color: var(--gold-dim); color: var(--text); }
.ir-file-label small { font-weight: 400; color: var(--subtle); }
.ir-file-input { display: none; }
.ir-file-existing {
  display: flex; align-items: center; gap: 10px;
  margin-top: 6px; font-size: .8125rem; color: var(--muted);
}

/* ── Footer ── */
.ir-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 20px; flex-wrap: wrap;
}
.ir-submit-btn {
  padding: 12px 36px !important;
  font-size: .9375rem !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
  box-shadow: 0 4px 20px rgba(196,165,90,0.28) !important;
}
.ir-submit-btn:hover {
  box-shadow: 0 6px 28px rgba(196,165,90,0.45) !important;
}

/* ── Light mode ── */
[data-theme="light"] .ir-card { background: #ffffff; border-color: #e0ddd6; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
[data-theme="light"] .ir-card::before { display: none; }
[data-theme="light"] .ir-input { background: #f4f3ef !important; border-color: #d6d3cb !important; color: #18181a !important; }
[data-theme="light"] .ir-textarea { background: #f4f3ef !important; border-color: #d6d3cb !important; color: #18181a !important; }
[data-theme="light"] .ir-type-card__inner { background: #f4f3ef; border-color: #d6d3cb; }
[data-theme="light"] .ir-type-card__name { color: #18181a; }
[data-theme="light"] .ir-section { border-bottom-color: #e8e4dc; }
[data-theme="light"] .ir-file-label { background: #f4f3ef; border-color: #d6d3cb; color: #555; }

/* ── Responsive (write) ── */
@media (max-width: 640px) {
  .ir-write { padding: 20px 0 60px; }
  .ir-card { padding: 24px 18px; border-radius: var(--r-md); }
  .ir-type-grid { grid-template-columns: 1fr 1fr; }
  .ir-row-2 { grid-template-columns: 1fr; }
  .ir-row-3 { grid-template-columns: 1fr; }
  .ir-submit-btn, .ir-foot .bl-btn { width: 100% !important; justify-content: center; }
}
@media (max-width: 400px) {
  .ir-type-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   VIEW SKIN — install request detail
   ================================================================ */

@keyframes ivFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ivPulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.7); opacity: 0; }
}
@keyframes ivSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* #bo_v — skin_board_style.css의 860px 제한 해제, 사이트 컨테이너에 맞춤 */
#bo_v {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 60px 24px 100px !important;
}

/* ── Wrap ── */
.iv-wrap {
  --font: "Pretendard Variable","Pretendard",-apple-system,system-ui,sans-serif;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  color: #f0f0f0;
  width: 100%;
}

/* ── Main ticket card ── */
.iv-ticket {
  position: relative;
  width: 100%;
  background: #1a1a1f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  animation: ivFadeUp .55s cubic-bezier(0.16,1,0.3,1) both;
}
/* Spotlight border */
.iv-ticket::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    500px circle at var(--mouse-x,50%) var(--mouse-y,-20%),
    var(--badge-glow, rgba(196,165,90,.1)),
    transparent 55%
  );
  pointer-events: none;
  z-index: 0;
  transition: opacity .4s;
}
.iv-ticket > * { position: relative; z-index: 1; }

/* 상단 컬러바 */
.iv-glow-bar {
  height: 2px;
  width: 100%;
}

/* ── Header ── */
.iv-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px 0;
}
.iv-header__left { display: flex; align-items: center; gap: 10px; }
.iv-board-kicker {
  font-size: .65rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: #555;
}
.iv-type-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px;
  background: color-mix(in srgb, var(--badge-clr) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--badge-clr) 35%, transparent);
  border-radius: 100px;
  font-size: .72rem; font-weight: 700;
  color: var(--badge-clr, #C4A55A);
}
.iv-req-id {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  color: #444; font-variant-numeric: tabular-nums;
}

/* ── Title block ── */
.iv-title-block { padding: 16px 28px 20px; }
.iv-title {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800; letter-spacing: -.025em;
  color: #f0f0f0; margin: 0 0 12px; line-height: 1.3;
}
.iv-meta-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.iv-meta-item {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .8rem; color: #666;
}
.iv-meta-sep { color: #333; font-size: .75rem; }

/* ── Status tracker ── */
.iv-status-track {
  display: flex; align-items: center;
  padding: 0 28px 22px; gap: 0;
}
.iv-status-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.iv-step-node {
  width: 26px; height: 26px; border-radius: 50%;
  background: #252528;
  border: 1.5px solid #333;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  font-size: .65rem; color: #666;
  transition: border-color .3s, background .3s;
}
.iv-status-step.is-done .iv-step-node {
  background: color-mix(in srgb, var(--badge-clr,#C4A55A) 20%, transparent);
  border-color: var(--badge-clr, #C4A55A);
  color: var(--badge-clr, #C4A55A);
}
.iv-status-step.is-active .iv-step-node {
  background: #252528; border-color: var(--badge-clr, #C4A55A);
}
.iv-step-pulse {
  position: absolute; inset: -1px; border-radius: 50%;
  background: var(--badge-clr, #C4A55A);
  animation: ivPulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
.iv-step-label {
  font-size: .68rem; font-weight: 600; letter-spacing: .02em;
  color: #555; white-space: nowrap;
}
.iv-status-step.is-done .iv-step-label,
.iv-status-step.is-active .iv-step-label { color: var(--badge-clr, #C4A55A); }
.iv-status-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--badge-clr, #C4A55A) 0%, rgba(196,165,90,.3) 100%);
  margin: 0 4px; margin-bottom: 22px;
}
.iv-status-line--dim {
  background: #2a2a30;
}

/* ── Dashed divider ── */
.iv-dashed-divider {
  position: relative; margin: 0 -1px;
  border-top: 1px dashed rgba(255,255,255,.09);
  overflow: visible;
}
.iv-dashed-notch {
  position: absolute; top: -10px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--color-bg, #131316);
  border: 1px solid rgba(255,255,255,.07);
}
.iv-dashed-notch--l { left: -10px; }
.iv-dashed-notch--r { right: -10px; }
.iv-dashed-divider--sm { margin: 0; }

/* ── Info grid ── */
.iv-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.iv-info-panel {
  padding: 24px 28px;
  animation: ivSlideIn .4s cubic-bezier(0.16,1,0.3,1) both;
}
.iv-info-panel--cred {
  border-right: 1px dashed rgba(255,255,255,.07);
}
.iv-panel-title {
  display: flex; align-items: center; gap: 7px;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #555; margin-bottom: 16px;
}

/* ── Credential rows ── */
.iv-cred-rows { display: flex; flex-direction: column; gap: 10px; }
.iv-cred-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 8px;
}
.iv-cred-label {
  flex-shrink: 0; width: 90px;
  font-size: .72rem; font-weight: 700; color: #555;
  letter-spacing: .02em;
}
.iv-cred-val {
  flex: 1; display: flex; align-items: center; gap: 6px;
  min-width: 0;
}
.iv-cred-val--type {
  font-size: .8rem; color: var(--badge-clr, #C4A55A); font-weight: 600;
}
.iv-cred-text {
  font-size: .82rem; color: #d0d0d0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-family: "JetBrains Mono","Fira Code",monospace;
}
.iv-pw-input {
  flex: 1; background: none; border: none; outline: none;
  font-size: .82rem; color: #d0d0d0; min-width: 0;
  font-family: "JetBrains Mono","Fira Code",monospace;
  letter-spacing: .04em; padding: 0;
}
.iv-icon-btn, .iv-copy-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 5px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  color: #666; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
}
.iv-icon-btn:hover, .iv-copy-btn:hover {
  background: rgba(255,255,255,.1); color: #ccc; border-color: rgba(255,255,255,.15);
}
.iv-copy-btn:active, .iv-copy-btn.is-copied {
  background: color-mix(in srgb, var(--badge-clr,#C4A55A) 20%, transparent);
  color: var(--badge-clr, #C4A55A);
  border-color: color-mix(in srgb, var(--badge-clr,#C4A55A) 40%, transparent);
  transform: scale(.94);
}

/* ── Contact rows ── */
.iv-contact-rows { display: flex; flex-direction: column; gap: 12px; }
.iv-contact-row { display: flex; align-items: flex-start; gap: 12px; }
.iv-contact-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: #555; margin-top: 2px;
}
.iv-contact-sub { font-size: .68rem; font-weight: 700; color: #555; letter-spacing: .04em; text-transform: uppercase; }
.iv-contact-val { font-size: .85rem; color: #d0d0d0; margin-top: 2px; line-height: 1.4; }

/* ── Memo / Files ── */
.iv-memo-section, .iv-files-section {
  padding: 22px 28px;
  animation: ivSlideIn .4s cubic-bezier(0.16,1,0.3,1) both;
}
.iv-section-title {
  display: flex; align-items: center; gap: 7px;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #555; margin-bottom: 12px;
}
.iv-memo-body {
  font-size: .875rem; color: #aaa; line-height: 1.8;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px; padding: 14px 16px;
}
.iv-files-body { font-size: .85rem; color: #aaa; }

/* ── Action footer ── */
.iv-foot {
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.iv-foot__left { display: flex; align-items: center; gap: 8px; }

/* ── Buttons ── */
.iv-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px;
  font-size: .8125rem; font-weight: 700; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .1s, box-shadow .15s;
  border: 1.5px solid transparent;
}
.iv-btn:active { transform: scale(.97); }
.iv-btn--ghost {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.09);
  color: #888;
}
.iv-btn--ghost:hover { background: rgba(255,255,255,.08); color: #ccc; border-color: rgba(255,255,255,.14); }
.iv-btn--danger {
  background: rgba(220,60,60,.08);
  border-color: rgba(220,60,60,.2);
  color: #e06060;
}
.iv-btn--danger:hover { background: rgba(220,60,60,.14); border-color: rgba(220,60,60,.35); }
.iv-btn--gold {
  background: #C4A55A;
  border-color: #C4A55A;
  color: #0e0e10;
  box-shadow: 0 4px 18px rgba(196,165,90,.28);
}
.iv-btn--gold:hover { background: #d4b870; box-shadow: 0 6px 24px rgba(196,165,90,.42); }

/* ── Stagger animation ── */
.iv-anim-in { animation: ivSlideIn .45s cubic-bezier(0.16,1,0.3,1) both; }

/* ── Toast ── */
.iv-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(12px);
  background: #252528; border: 1px solid rgba(255,255,255,.1);
  color: #f0f0f0; font-size: .82rem; font-weight: 600;
  padding: 9px 18px; border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .22s, transform .22s cubic-bezier(0.16,1,0.3,1);
  z-index: 9999; white-space: nowrap;
  font-family: var(--font);
}
.iv-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ================================================================
   LIST SKIN — install request list
   ================================================================ */

@keyframes ilFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.il-wrap {
  --font: "Pretendard Variable","Pretendard",-apple-system,system-ui,sans-serif;
  --bg:      var(--color-bg,    #131316);
  --surface: var(--color-surface,#1a1a1f);
  --border:  rgba(255,255,255,0.07);
  --text:    #f0f0f0;
  --muted:   #888;
  --subtle:  #444;
  --gold:    #C4A55A;
  --ease:    cubic-bezier(0.16,1,0.3,1);
  font-family: var(--font);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  padding: 48px 0 80px;
}
.il-wrap *, .il-wrap *::before, .il-wrap *::after { box-sizing: border-box; }

/* ── Header ── */
.il-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
}
.il-kicker {
  font-size: .65rem; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.il-headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800; letter-spacing: -.03em;
  color: var(--text); margin: 0; line-height: 1;
}
.il-head__right { display: flex; align-items: center; gap: 8px; }

/* ── Write button ── */
.il-write-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; box-sizing: border-box;
  background: var(--gold);
  border: none; border-radius: 10px;
  font-size: .875rem; font-weight: 700; font-family: var(--font);
  color: #0e0d0b; text-decoration: none; letter-spacing: .01em;
  cursor: pointer;
  transition: background .17s var(--ease), box-shadow .17s, transform .12s;
  box-shadow: 0 4px 20px rgba(196,165,90,.28);
}
.il-write-btn:hover { background: #d4b870; box-shadow: 0 6px 28px rgba(196,165,90,.45); }
.il-write-btn:active { transform: translateY(1px); }

.il-admin-btn {
  display: inline-flex; align-items: center;
  padding: 10px 16px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  font-size: .8125rem; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: background .17s, color .17s;
}
.il-admin-btn:hover { background: rgba(255,255,255,.09); color: var(--text); }

/* ── Category filters ── */
.il-filters {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.il-filter {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  font-size: .8rem; font-weight: 600; color: var(--muted);
  text-decoration: none; white-space: nowrap;
  transition: background .17s, border-color .17s, color .17s;
}
.il-filter:hover { background: rgba(255,255,255,.08); color: var(--text); }
.il-filter.is-on {
  background: rgba(196,165,90,.1);
  border-color: rgba(196,165,90,.4);
  color: var(--gold);
}
.il-filter__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted); flex-shrink: 0;
}
.il-filter__dot--all { background: var(--gold); }
.il-filter.is-on .il-filter__dot--all { background: var(--gold); }

/* ── Stats + Search ── */
.il-stats {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 16px; flex-wrap: wrap;
}
.il-stats__total { font-size: .8rem; color: var(--muted); white-space: nowrap; }
.il-stats__total strong { color: var(--text); font-weight: 700; }

/* stats 우측: 컨테이너 높이 고정, 자식 stretch */
.il-stats__right {
  display: flex; align-items: stretch; gap: 8px;
  flex-shrink: 0; height: 36px;
}
.il-write-btn--sm {
  padding: 0 16px; height: 100%;
  font-size: .8rem;
  box-shadow: 0 3px 12px rgba(196,165,90,.22);
}

.il-search-form {
  display: flex; align-items: stretch; gap: 6px;
  flex-shrink: 0; height: 100%;
}
.il-sfl {
  height: 100% !important; box-sizing: border-box !important;
  border-radius: 8px !important;
  width: auto !important; flex-shrink: 0 !important;
  font-size: .8rem !important;
}
.il-search-wrap {
  height: 100%; box-sizing: border-box;
  background: rgba(255,255,255,.04)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E")
    no-repeat 10px center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  transition: border-color .17s, box-shadow .17s;
}
.il-search-wrap:focus-within {
  border-color: rgba(196,165,90,.5);
  box-shadow: 0 0 0 3px rgba(196,165,90,.08);
}
.il-search-input {
  background: none !important; border: none !important; outline: none !important;
  font-size: .8rem !important; font-family: var(--font) !important;
  color: var(--text) !important; width: 150px !important;
  height: 100% !important; padding: 0 10px 0 30px !important;
  margin: 0 !important; box-shadow: none !important;
  box-sizing: border-box !important;
}
.il-search-input::placeholder { color: var(--subtle); }
.il-search-btn {
  height: 100% !important; box-sizing: border-box !important;
  padding: 0 14px !important; border-radius: 8px !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  font-size: .8rem !important; font-weight: 600 !important;
  font-family: var(--font) !important;
  color: var(--muted) !important; cursor: pointer !important;
  transition: background .15s, color .15s;
}
.il-search-btn:hover { background: rgba(255,255,255,.1) !important; color: var(--text) !important; }

/* ── Cards ── */
.il-cards { display: flex; flex-direction: column; gap: 10px; }

.il-card {
  position: relative;
  display: flex; align-items: center; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(196,165,90,.45);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  box-shadow: inset 6px 0 24px -10px rgba(196,165,90,.12);
  transition: border-color .2s var(--ease), box-shadow .25s, transform .15s;
  animation: ilFadeUp .45s var(--ease) both;
  animation-delay: var(--anim-delay, 0ms);
}
/* spotlight */
.il-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(280px circle at var(--mx,-100px) var(--my,-100px),
    var(--card-glow, rgba(196,165,90,.14)), transparent 60%);
  pointer-events: none; opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}
.il-card:hover::before { opacity: 1; }
.il-card:hover {
  border-color: rgba(196,165,90,.35);
  border-left-color: #C4A55A;
  box-shadow: inset 10px 0 32px -10px rgba(196,165,90,.18), 0 8px 32px rgba(0,0,0,.25);
  transform: translateY(-1px);
}
.il-card > * { position: relative; z-index: 1; }

/* 공지 카드 */
.il-card--notice {
  background: color-mix(in srgb, var(--gold) 5%, var(--surface));
  border-color: rgba(196,165,90,.18);
}

/* 답변 카드 */
.il-card--answered {
  border-left-color: #888;
  box-shadow: inset 6px 0 24px -10px rgba(136,136,136,.1);
}
.il-card--answered:hover {
  border-left-color: #aaa;
  border-color: rgba(136,136,136,.25);
  box-shadow: inset 10px 0 32px -10px rgba(136,136,136,.15), 0 8px 32px rgba(0,0,0,.25);
}
.il-card--answered::before {
  background: radial-gradient(280px circle at var(--mx,-100px) var(--my,-100px),
    rgba(136,136,136,.06), transparent 60%);
}
.il-card--answered .il-card__body { padding-left: 68px !important; }

/* 체크박스 */
.il-card__chk {
  padding: 0 0 0 16px; flex-shrink: 0;
}
.il-chk {
  width: 16px; height: 16px; border-radius: 4px;
  accent-color: var(--gold);
}

/* 본문 */
.il-card__body {
  flex: 1; padding: 18px 16px; min-width: 0;
}
.il-card__top {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px;
}
.il-card__req-no {
  font-size: .68rem; font-weight: 700; color: var(--subtle);
  letter-spacing: .08em; margin-left: auto;
  font-variant-numeric: tabular-nums;
}

/* 배지 */
.il-badge {
  display: inline-flex; align-items: center;
  padding: 2px 8px; border-radius: 100px;
  font-size: .65rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
}
.il-badge--notice {
  background: rgba(196,165,90,.15);
  color: var(--gold);
  border: 1px solid rgba(196,165,90,.3);
}
.il-badge--type {
  background: color-mix(in srgb, var(--card-clr,#C4A55A) 14%, transparent);
  color: var(--card-clr, #C4A55A);
  border: 1px solid color-mix(in srgb, var(--card-clr,#C4A55A) 32%, transparent);
}

/* 제목 */
.il-card__title {
  display: flex; align-items: baseline; gap: 7px;
  font-size: .9375rem; font-weight: 700;
  color: var(--text); text-decoration: none;
  line-height: 1.4; margin-bottom: 10px;
  transition: color .15s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.il-card__title:hover { color: var(--gold); }
.il-comment-cnt {
  flex-shrink: 0;
  font-size: .75rem; font-weight: 700;
  color: var(--gold); opacity: .85;
}

/* 메타 */
.il-card__meta {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  flex-shrink: 0; padding: 0 20px; border-left: 1px solid var(--border);
}
.il-meta-item {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .75rem; color: var(--muted);
}
.il-meta-sep { font-size: .65rem; color: var(--subtle); }

/* 화살표 */
.il-card__arrow {
  padding: 0 18px; flex-shrink: 0;
  color: var(--subtle);
  transition: color .17s, transform .17s;
}
.il-card:hover .il-card__arrow {
  color: var(--card-clr, var(--gold));
  transform: translateX(3px);
}

/* ── Empty state ── */
.il-empty {
  display: flex; flex-direction: column; align-items: center;
  padding: 72px 24px; text-align: center;
}
.il-empty__icon-wrap {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(196,165,90,.08);
  border: 1px solid rgba(196,165,90,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
}
.il-empty__title {
  font-size: 1rem; font-weight: 700; color: var(--text); margin: 0 0 8px;
}
.il-empty__desc { font-size: .85rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── Bulk bar ── */
.il-bulk-bar { display: flex; gap: 8px; padding: 16px 0 0; flex-wrap: wrap; }
.il-bulk-btn {
  padding: 8px 16px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  font-size: .8125rem; font-weight: 600; font-family: var(--font);
  color: var(--muted); cursor: pointer; transition: background .15s, color .15s;
}
.il-bulk-btn:hover { background: rgba(255,255,255,.09); color: var(--text); }
.il-bulk-btn--danger {
  background: rgba(220,60,60,.08); border-color: rgba(220,60,60,.2); color: #e06060;
}
.il-bulk-btn--danger:hover { background: rgba(220,60,60,.14); border-color: rgba(220,60,60,.35); }

/* ── Pagination ── */
.il-paging { margin-top: 32px; text-align: center; }

/* ── Footer ── */
.il-foot {
  margin-top: 24px; display: flex; justify-content: flex-end;
}

/* ── Light mode ── */
[data-theme="light"] .il-wrap { --surface: #fff; --border: rgba(0,0,0,.08); --text: #18181a; --muted: #777; --subtle: #bbb; }
[data-theme="light"] .il-card { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
[data-theme="light"] .il-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }
[data-theme="light"] .il-search-wrap { background: #f4f3ef; border-color: #d6d3cb; }
[data-theme="light"] .il-sfl { background: #f4f3ef; border-color: #d6d3cb; }
[data-theme="light"] .il-filter { background: #f4f3ef; border-color: #d6d3cb; }
[data-theme="light"] .il-sfl { color: #666; }

/* ── Responsive ── */
@media (max-width: 600px) {
  .il-wrap { padding: 28px 0 60px; }
  .il-head { margin-bottom: 20px; }
  .il-card__title { font-size: .875rem; }
  .il-card__body { padding: 14px 12px; }
  .il-card__arrow { padding: 0 12px; }
  .il-filters { gap: 6px; }
  .il-filter { font-size: .75rem; padding: 5px 12px; }
}

/* ── Light mode (view) ── */
[data-theme="light"] .iv-ticket { background: #fff; border-color: #e8e4dc; box-shadow: 0 20px 60px rgba(0,0,0,.08); }
[data-theme="light"] .iv-title { color: #18181a; }
[data-theme="light"] .iv-meta-item { color: #999; }
[data-theme="light"] .iv-cred-row { background: #f6f4ef; border-color: #e8e4dc; }
[data-theme="light"] .iv-cred-text, [data-theme="light"] .iv-pw-input { color: #222; }
[data-theme="light"] .iv-contact-val { color: #333; }
[data-theme="light"] .iv-memo-body { background: #f6f4ef; border-color: #e8e4dc; color: #555; }
[data-theme="light"] .iv-btn--ghost { background: #f4f3ef; border-color: #ddd; color: #666; }
[data-theme="light"] .iv-toast { background: #fff; border-color: #e0ddd6; color: #222; }
[data-theme="light"] .iv-dashed-notch { background: var(--color-bg,#f5f4f0); border-color: #e0ddd6; }
[data-theme="light"] .iv-step-node { background: #f0ece4; border-color: #d6d3cb; }
[data-theme="light"] .iv-req-id { color: #bbb; }

/* ── Responsive (view) ── */
@media (max-width: 680px) {
  .iv-info-grid { grid-template-columns: 1fr; }
  .iv-info-panel--cred { border-right: none; border-bottom: 1px dashed rgba(255,255,255,.07); }
  .iv-header { padding: 16px 18px 0; }
  .iv-title-block { padding: 14px 18px 16px; }
  .iv-status-track { padding: 0 18px 18px; }
  .iv-info-panel { padding: 18px; }
  .iv-memo-section, .iv-files-section { padding: 18px; }
  .iv-foot { padding: 16px 18px; flex-direction: column; align-items: stretch; }
  .iv-foot__left { justify-content: flex-start; }
  .iv-btn--gold { justify-content: center; }
  .iv-cred-label { width: 76px; }
}


/* ================================================================
   IRN — Install Request NEW write skin
   Prefix: irn-   (avoids conflicts with existing ir- classes)
   Dark premium gold theme. mobilen.kr  2026-04
   ================================================================ */

/* ── Keyframes ── */
@keyframes irnFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes irnSlideIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes irnItemHover {
  from { transform: scale(1); }
  to   { transform: scale(1.01); }
}

/* ── Root ── */
.irn-write {
  --font:        "Pretendard Variable", "Pretendard", -apple-system, system-ui, sans-serif;
  --bg:          var(--color-bg,           #131316);
  --surface:     var(--color-surface,      #1a1a1f);
  --surface-2:   var(--color-surface-2,    #22222a);
  --border:      var(--color-border,       rgba(255,255,255,0.08));
  --border-lt:   rgba(255,255,255,0.05);
  --text:        var(--color-text,         #f0f0f0);
  --muted:       var(--color-text-muted,   #888);
  --subtle:      #5c5c64;
  --gold:        var(--color-accent,       #C4A55A);
  --gold-dim:    #9A7D3D;
  --gold-glow:   rgba(196,165,90,0.12);
  --r-sm:        8px;
  --r-md:        12px;
  --r-lg:        18px;
  --ease:        cubic-bezier(0.16,1,0.3,1);
  font-family:   var(--font);
  color:         var(--text);
  -webkit-font-smoothing: antialiased;
  width: 100%; max-width: 760px; margin: 0 auto; padding: 40px 0 80px;
}
.irn-write *, .irn-write *::before, .irn-write *::after { box-sizing: border-box; }

/* ── Header — left aligned ── */
.irn-head {
  margin-bottom: 36px;
  padding-left: 4px;
  animation: irnFadeUp .5s var(--ease) both;
}
.irn-head__kicker {
  display: inline-block;
  font-size: .625rem; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
  padding: 3px 8px;
  border: 1px solid rgba(196,165,90,.25);
  border-radius: 4px;
  background: rgba(196,165,90,.06);
}
.irn-head__title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900;
  letter-spacing: -.03em; color: var(--text);
  margin: 0 0 10px; line-height: 1.15;
}
.irn-head__desc {
  font-size: .9rem; color: var(--muted); line-height: 1.75; margin: 0;
}

/* ── Step container ── */
.irn-step {
  position: relative;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-lt);
}
.irn-step:last-of-type { border-bottom: none; }
.irn-step--captcha { padding-top: 20px; }
.irn-step--file    { padding-top: 24px; }

/* Stagger fade-up for each step */
.irn-step--1 { animation: irnFadeUp .5s var(--ease) .05s both; }
.irn-step--2 { animation: irnFadeUp .5s var(--ease) .12s both; }
.irn-step--4 { animation: irnFadeUp .5s var(--ease) .18s both; }
.irn-step--file    { animation: irnFadeUp .5s var(--ease) .22s both; }
.irn-step--captcha { animation: irnFadeUp .5s var(--ease) .26s both; }

/* Detail step (03) — slide-in when revealed */
.irn-step--detail { animation: irnSlideIn .35s var(--ease) both; }
.irn-step--entering { animation: irnSlideIn .35s var(--ease) both; }

/* ── Step header ── */
.irn-step__hd {
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 24px;
}

/* Big decorative number */
.irn-step__num {
  position: relative;
  font-size: 3.25rem; font-weight: 900;
  line-height: 1; letter-spacing: -.04em;
  color: var(--gold);
  opacity: .09;
  flex-shrink: 0;
  margin-top: -6px;
  user-select: none;
  /* Subtle text-stroke effect */
  -webkit-text-stroke: 1px rgba(196,165,90,.3);
}
.irn-step__num--sm {
  font-size: 1rem; opacity: .5;
  display: flex; align-items: center;
  color: var(--muted);
  -webkit-text-stroke: 0;
  margin-top: 2px;
}

.irn-step__meta { display: flex; flex-direction: column; gap: 4px; padding-top: 4px; }
.irn-step__label {
  font-size: .8125rem; font-weight: 700;
  color: var(--muted); letter-spacing: .06em;
  text-transform: uppercase;
}
.irn-step__sub {
  font-size: .8rem; color: var(--subtle);
}

/* ── Required / Optional markers ── */
.irn-req      { color: var(--gold); margin-left: 2px; }
.irn-optional { font-size: .75rem; font-weight: 400; color: var(--subtle); }
.irn-empty-notice { font-size: .875rem; color: var(--muted); }

/* ── Type list (horizontal 4-col grid) ── */
.irn-type-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}

.irn-type-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
  padding: 22px 16px 18px;
  background: rgba(255,255,255,.025);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition:
    border-color .22s var(--ease),
    background   .22s var(--ease),
    box-shadow   .22s var(--ease),
    transform    .18s var(--ease);
  position: relative;
  overflow: hidden;
}
.irn-type-item input[type=radio] { display: none; }

/* Hover */
.irn-type-item:hover {
  border-color: rgba(var(--item-color, 196,165,90), .35);
  background: rgba(255,255,255,.04);
  transform: translateY(-3px);
}

/* Selected state — top border glow */
.irn-type-item.is-selected {
  border-color: var(--item-color, var(--gold));
  background: color-mix(in srgb, var(--item-color, #C4A55A) 7%, transparent);
  box-shadow: inset 0 3px 0 var(--item-color, var(--gold)),
              0 6px 24px color-mix(in srgb, var(--item-color, #C4A55A) 20%, transparent);
  transform: translateY(0);
}
/* Fallback for browsers without color-mix */
@supports not (background: color-mix(in srgb, red 10%, blue)) {
  .irn-type-item.is-selected {
    background: rgba(196,165,90,.07);
    box-shadow: inset 0 3px 0 var(--item-color, var(--gold));
  }
}

/* Icon badge */
.irn-type-item__badge {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--item-color, #C4A55A) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--item-color, #C4A55A) 28%, transparent);
  border-radius: 12px;
  color: var(--item-color, var(--gold));
  transition: background .2s, transform .2s var(--ease);
}
@supports not (background: color-mix(in srgb, red 10%, blue)) {
  .irn-type-item__badge {
    background: rgba(196,165,90,.1);
    border-color: rgba(196,165,90,.25);
    color: var(--gold);
  }
}
.irn-type-item.is-selected .irn-type-item__badge {
  transform: scale(1.1);
}

/* Text body */
.irn-type-item__body {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.irn-type-item__name {
  font-size: .875rem; font-weight: 700; color: var(--text); line-height: 1.2;
}
.irn-type-item__desc {
  font-size: .75rem; color: var(--muted); line-height: 1.4;
}

/* Check indicator — top-right corner */
.irn-type-item__check {
  position: absolute; top: 10px; right: 10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  transition: border-color .2s, background .2s, color .2s;
}
.irn-type-item.is-selected .irn-type-item__check {
  background: var(--item-color, var(--gold));
  border-color: var(--item-color, var(--gold));
  color: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--item-color, #C4A55A) 20%, transparent);
}
@supports not (background: color-mix(in srgb, red 10%, blue)) {
  .irn-type-item.is-selected .irn-type-item__check {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
  }
}

/* ── Grids for field rows ── */
.irn-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.irn-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.irn-grid-full { display: block; }

/* ── File area ── */
.irn-file-area { display: flex; flex-direction: column; gap: 8px; }

/* ── Submit row ── */
.irn-submit-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding-top: 28px; flex-wrap: wrap;
  animation: irnFadeUp .5s var(--ease) .3s both;
}

.irn-cancel-btn {
  font-size: .875rem !important;
  color: var(--muted) !important;
}

.irn-submit-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #C4A55A 0%, #D4BE7A 50%, #C4A55A 100%);
  background-size: 200% 200%;
  border: none; border-radius: var(--r-md);
  font-size: .9375rem; font-weight: 800; letter-spacing: .02em;
  color: #111; cursor: pointer;
  transition:
    background-position .4s var(--ease),
    box-shadow .25s,
    transform  .18s var(--ease),
    opacity    .18s;
  box-shadow: 0 4px 22px rgba(196,165,90,.3), 0 1px 0 rgba(255,255,255,.15) inset;
  flex: 1; justify-content: center; max-width: 360px;
}
.irn-submit-btn:hover {
  background-position: 100% 100%;
  box-shadow: 0 8px 32px rgba(196,165,90,.48), 0 1px 0 rgba(255,255,255,.15) inset;
  transform: translateY(-1px);
}
.irn-submit-btn:active { transform: translateY(0); }
.irn-submit-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.irn-submit-btn__text { flex: 1; }
.irn-submit-btn__icon { flex-shrink: 0; transition: transform .2s var(--ease); }
.irn-submit-btn:hover .irn-submit-btn__icon { transform: translateX(3px); }

/* ── Light mode overrides ── */
[data-theme="light"] .irn-head__kicker { background: rgba(196,165,90,.08); border-color: rgba(196,165,90,.3); }
[data-theme="light"] .irn-step { border-bottom-color: #e8e4dc; }
[data-theme="light"] .irn-type-item {
  background: #f7f5f0;
  border-color: #ddd9d0;
  color: #18181a;
}
[data-theme="light"] .irn-type-item:hover { background: #f0ece3; }
[data-theme="light"] .irn-type-item.is-selected { background: color-mix(in srgb, var(--item-color, #C4A55A) 8%, #fff); }
[data-theme="light"] .irn-type-item__name { color: #18181a; }
[data-theme="light"] .irn-type-item__desc { color: #6b6b72; }
[data-theme="light"] .irn-type-item__check { border-color: #ccc; }
[data-theme="light"] .irn-submit-btn { color: #1a1a1a; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .irn-write { padding: 20px 0 60px; }
  .irn-step  { padding: 24px 0; }
  .irn-step__num { font-size: 2.5rem; }
  .irn-grid-2 { grid-template-columns: 1fr; }
  .irn-grid-3 { grid-template-columns: 1fr; }
  .irn-submit-btn { max-width: 100%; }
  .irn-submit-wrap { flex-direction: column; align-items: stretch; }
  .irn-cancel-btn  { text-align: center; }
}
@media (max-width: 640px) {
  .irn-type-list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 380px) {
  .irn-type-list { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .irn-type-item { padding: 16px 10px 14px; gap: 8px; }
  .irn-type-item__badge { width: 38px; height: 38px; border-radius: 9px; }
  .irn-type-item__name  { font-size: .8rem; }
  .irn-type-item__desc  { font-size: .7rem; }
}
