:root {
  --bg: #f3f6fa;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --line: #dce4ee;
  --text: #172019;
  --muted: #647084;
  --green: #1f8f5f;
  --green-dark: #146344;
  --blue: #2b69c8;
  --blue-soft: #e8f1ff;
  --amber: #c78214;
  --red: #c84632;
  --shadow: 0 14px 34px rgba(24, 36, 28, 0.08);
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  width: min(var(--page-width), 100%);
  margin: 0 auto;
}

.site-logo {
  color: var(--text);
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.top-menu {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-2);
}

.site-main-menu {
  width: 100%;
  max-width: 100%;
  gap: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-main-menu::-webkit-scrollbar {
  display: none;
}

.site-main-menu .top-menu-link {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.site-main-menu .top-menu-link:hover,
.site-main-menu .top-menu-link.active {
  background: transparent;
  color: var(--green-dark);
  box-shadow: none;
}

.top-menu-button {
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #475569;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.top-menu-button.active {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 1px 4px rgba(20, 99, 68, 0.12);
}

.layout {
  max-width: 1540px;
  margin: 0 auto;
  padding: 22px 24px 56px;
}

.filter-section {
  display: grid;
  grid-template-columns: 206px minmax(0, 1fr);
  grid-template-rows: auto auto;
  width: min(var(--page-width), 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--surface);
}

.filter-main {
  min-width: 0;
  border-left: 1px solid var(--line);
  grid-column: 2;
  grid-row: 2;
}

.filter-section > .inline-mode-menu {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-content: flex-end;
  justify-self: stretch;
  align-self: center;
  margin: 0;
  padding: 6px 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #f8fafc;
}

.primary-sidebar {
  align-self: stretch;
  grid-column: 1;
  grid-row: 2;
  background: var(--surface);
}

.primary-sidebar h2 {
  margin: 0;
  padding: 16px 14px 12px;
  color: #1c2637;
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 900;
}

.category-list,
.topic-list {
  display: flex;
  flex-direction: column;
  padding: 8px;
}

.category-button,
.topic-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 9px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #263247;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}

.compact-category {
  min-height: 36px;
  padding: 8px 10px;
  font-size: 13px;
}

.category-button:hover,
.topic-button:hover,
.category-button.active,
.topic-button.active {
  background: var(--blue-soft);
  color: #1d5fd6;
  font-weight: 700;
}

.category-button.active,
.topic-button.active {
  box-shadow: inset 0 0 0 1px #cfe0fb;
}

.category-label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.category-label > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-count {
  color: #9aa8ba;
  font-size: 12px;
}

.topic-panel {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.filter-section .topic-panel {
  margin-top: 0;
  border: 0;
}

.topic-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: #1c2637;
}

.topic-panel-head div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.topic-panel-head span {
  color: var(--green-dark);
  font-weight: 900;
}

.topic-panel-head strong {
  font-size: 15px;
}

.inline-mode-menu {
  flex: 0 0 auto;
  padding: 3px;
}

.inline-mode-menu .top-menu-button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
}

.topic-panel .topic-list {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
}

.topic-panel .topic-button {
  justify-content: space-between;
  min-height: 46px;
  padding: 12px 18px;
  border-bottom: 1px solid #edf1f5;
  border-radius: 0;
  color: #263247;
  font-size: 14px;
  font-weight: 650;
}

.question-button {
  align-items: center;
}

.question-main {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.question-prefix {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-weight: 900;
}

.question-text {
  line-height: 1.55;
}

.topic-count {
  flex: 0 0 auto;
  margin-left: 14px;
  color: #9aa8ba;
  font-size: 12px;
  font-weight: 800;
}

.topic-panel .topic-button.active {
  background: #e9f4ef;
  color: var(--green-dark);
  box-shadow: inset 0 0 0 1px #b9d9c8;
}

.model-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.model-check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-right: 1px solid #edf1f5;
  border-bottom: 1px solid #edf1f5;
  color: #263247;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.model-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--green);
}

.model-check span {
  flex: 1 1 auto;
}

.model-check em {
  color: #9aa8ba;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.model-check.active {
  background: #e9f4ef;
  color: var(--green-dark);
}

.content {
  width: min(var(--page-width), 100%);
  min-width: 0;
  margin: 0 auto;
  padding-top: 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 0;
  min-height: 310px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-actions button {
  border: 0;
  background: var(--green);
  color: #fff;
  border-radius: 6px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.hero-actions button:last-child {
  color: var(--green-dark);
  background: #e5f4ea;
}

.hero-media {
  min-height: 310px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.results-section {
  margin-top: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.section-title h2 {
  margin: 0;
  font-size: 22px;
}

.section-title p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.stage-badge,
.card-badge {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 5px;
  background: #e5f4ea;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.topic-match {
  background: #e9f4ef;
  color: var(--green-dark);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.view-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  background: #f4f7fb;
}

.view-toggle-button {
  min-width: 68px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #5b6678;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

.view-toggle-button.active {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.video-grid.grid-view {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
}

.page-button {
  min-width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: #4b5a70;
  cursor: pointer;
  font-weight: 800;
}

.page-button:hover,
.page-button.active {
  border-color: var(--green);
  background: #e9f4ef;
  color: var(--green-dark);
}

.video-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.video-grid.grid-view .video-card {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.video-grid.grid-view .video-card:nth-child(4n) {
  border-right: 0;
}

.video-info {
  align-self: center;
}

.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dce6df;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

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

.play {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  font-weight: 900;
}

.video-info h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.38;
}

.video-grid.grid-view .video-info h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
  font-size: 17px;
}

.video-info p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.video-grid.grid-view .reason-line {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.video-info > .badge-row {
  margin-top: 0;
  margin-bottom: 6px;
}

.duration-badge {
  background: #f5f7f9;
  color: #526174;
}

.tag {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #47534b;
  font-size: 12px;
  background: var(--surface-2);
}

.tag-button {
  font: inherit;
  cursor: pointer;
}

.tag-button:hover,
.tag-button.active {
  border-color: #9fc6b7;
  background: #e9f4ef;
  color: var(--green-dark);
}

.intent-high {
  background: #fcebe8;
  color: var(--red);
}

.intent-medium {
  background: #fff3dc;
  color: var(--amber);
}

.intent-low {
  background: #e8f0fc;
  color: var(--blue);
}

.empty-state {
  padding: 22px;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 18, 0.5);
}

.modal-panel {
  position: relative;
  width: min(860px, calc(100vw - 32px));
  max-height: calc(100vh - 42px);
  margin: 21px auto;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(20, 28, 24, 0.24);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #dce6df;
  overflow: hidden;
}

.modal-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.modal-body {
  padding: 24px;
}

.modal-body h2 {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.3;
}

.modal-body p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .filter-section {
    width: 100%;
  }

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

  .hero-media {
    min-height: 220px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}



.top-menu-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 4px;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.top-menu-link.active,
.top-menu-link:hover {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.about-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 26px;
}

.about-hero {
  padding: 42px 0 34px;
}

.about-kicker {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.about-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: 38px;
  line-height: 1.25;
  letter-spacing: 0;
}

.about-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #4b5a70;
  font-size: 17px;
  line-height: 1.8;
}

.about-card {
  padding: 38px 42px;
  border: 1px solid var(--line);
  background: #fff;
}

.about-section + .about-section,
.about-note {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.about-section h2,
.about-note h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.45;
}

.about-section p,
.about-note p {
  margin: 0;
  color: #42506a;
  font-size: 16px;
  line-height: 1.9;
}

.about-section p + p {
  margin-top: 14px;
}

.about-note {
  padding: 26px;
  border: 1px solid #b7d4c8;
  background: #f2faf6;
}

.about-note h2 {
  color: var(--green-dark);
}

.terms-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #42506a;
  font-size: 16px;
  line-height: 1.9;
}

.terms-list li + li {
  margin-top: 6px;
}

.contact-email-line {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid #cbd8e8;
  border-radius: 4px;
  background: #f8fbff;
  color: #42506a;
  font-size: 15px;
  font-weight: 800;
}

.contact-email-line a {
  color: var(--green-dark);
  text-decoration: none;
}

.contact-action-row {
  margin-top: 18px;
}

.contact-primary-link,
.contact-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #15945f;
  border-radius: 4px;
  background: #15945f;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.contact-secondary-link {
  border-color: #cbd8e8;
  background: #fff;
  color: var(--green-dark);
}

.about-review-date {
  margin: 28px 0 0;
  color: #69758a;
  font-size: 14px;
}

.tools-page {
  width: min(var(--page-width), 100% - 48px);
  margin: 0 auto;
  padding: 44px 0 10px;
}

.tools-hero {
  max-width: 820px;
  margin-bottom: 24px;
}

.tools-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: 34px;
  line-height: 1.28;
  letter-spacing: 0;
}

.tools-hero p:not(.about-kicker) {
  margin: 14px 0 0;
  color: #5a6680;
  font-size: 16px;
  line-height: 1.8;
}

.tools-panel {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

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

.tool-card {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid #d6e0ec;
  border-radius: 6px;
  background: #f8fafc;
  text-align: center;
}

.tool-card-empty {
  border-style: dashed;
  background: linear-gradient(135deg, #fafcff, #f3f7fb);
}

.tool-card-active {
  border-color: #15945f;
  background: #f1fbf6;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.tool-card-active:hover {
  border-color: var(--green-dark);
  box-shadow: 0 12px 28px rgba(20, 99, 68, 0.12);
  transform: translateY(-2px);
}

.tool-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 4px;
  background: #dff5e9;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.tool-card strong {
  color: #132018;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.tool-card small {
  margin-top: 12px;
  color: #65758b;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .about-page {
    width: min(100% - 28px, 900px);
    padding-top: 26px;
  }

  .about-hero h1 {
    font-size: 28px;
  }

  .about-card {
    padding: 26px 22px;
  }


  .tools-page {
    width: min(100% - 28px, 900px);
    padding-top: 26px;
  }

  .tools-hero h1 {
    font-size: 28px;
  }

  .tools-panel {
    padding: 14px;
  }

  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tool-card strong {
    font-size: 16px;
  }

  .tool-card small {
    font-size: 11px;
  }
}

.site-footer {
  margin-top: 42px;
  padding: 34px 20px 40px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  width: min(var(--page-width), 100%);
  margin: 0 auto;
}

.footer-company {
  display: block;
  color: #3e4756;
  font-size: 13px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.footer-links a {
  color: #0b63d1;
  text-decoration: none;
}

.footer-links a:nth-of-type(3) {
  color: #111827;
}

.footer-links span {
  color: #8a94a6;
}

.footer-copy {
  margin: 18px 0 0;
  color: #7b8494;
  font-size: 12px;
}

@media (max-width: 760px) {
  .site-footer {
    margin-top: 28px;
    padding: 28px 18px 34px;
  }

  .footer-links {
    gap: 8px 10px;
    line-height: 1.8;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 14px;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-main-menu {
    width: 100%;
    max-width: 100%;
    gap: 18px;
    padding-bottom: 2px;
  }

  .site-main-menu .top-menu-link {
    font-size: 13px;
  }

  .top-menu {
    width: 100%;
  }

  .top-menu-button {
    flex: 1 1 0;
  }

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

  .layout {
    display: block;
    padding: 14px;
  }

  .filter-section {
    display: block;
  }

  .filter-section > .inline-mode-menu {
    margin: 0;
    padding: 6px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: #f8fafc;
  }

  .filter-section > .inline-mode-menu .top-menu-button {
    min-height: 36px;
  }

  .filter-main {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .content {
    padding: 0;
  }

  .primary-sidebar {
    min-height: 0;
  }

  .topic-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
  }

  .topic-panel-head div {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
  }

  .topic-panel-head span {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topic-panel-head strong {
    flex: 0 0 auto;
  }

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

  .hero-copy {
    padding: 26px;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .view-toggle {
    width: 100%;
  }

  .view-toggle-button {
    flex: 1 1 0;
  }

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

  .video-grid.grid-view .video-card {
    border-right: 1px solid var(--line);
  }

  .video-grid.grid-view .video-card:nth-child(2n) {
    border-right: 0;
  }

  .video-card {
    grid-template-columns: 1fr;
  }

}

.reason-line {
  color: #4b5a70 !important;
  font-size: 13px;
  font-weight: 600;
}

.reason-label {
  display: inline-block;
  margin-right: 7px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.reason-label::after {
  content: ":";
}

.modal-reason {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.modal-reason h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 16px;
}

.modal-reason p {
  margin: 10px 0 0;
  color: #263247;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
}


.modal-detail {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.modal-detail h3 {
  margin: 0;
  color: #17211b;
  font-size: 16px;
}

.evidence-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.evidence-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.evidence-time {
  border: 1px solid #9fc6b7;
  border-radius: 5px;
  background: #e9f4ef;
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 800;
  padding: 6px 7px;
}

.evidence-time:disabled {
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--muted);
  cursor: default;
}

.evidence-item p {
  margin: 0;
  color: #344258;
  font-size: 14px;
  line-height: 1.65;
}

.evidence-item strong {
  display: inline-block;
  margin-right: 6px;
  color: var(--green-dark);
}

.empty-evidence {
  margin: 10px 0 0;
  color: var(--muted);
}

.modal-contact {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #b7d4c8;
  background: #f2faf6;
}

.modal-contact strong {
  color: var(--green-dark);
  font-size: 16px;
}

.modal-contact p {
  margin: 6px 0 0;
  color: #42506a;
  font-size: 14px;
}

.modal-contact a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 760px) {
  .evidence-item,
  .modal-contact {
    display: block;
  }

  .evidence-item p,
  .modal-contact a {
    margin-top: 10px;
  }
}
