/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth !important;
  /* Color Variables */
  --color-primary: #2453A5;
  --color-primary-transparent-100: rgb(36, 83, 165, .05);
  --color-primary-transparent-200: rgb(36, 83, 165, .15);
  --color-secondary: #213B73;
  --color-tertiary: #3272E1;
  --color-bg-dark: #01173C;
  --color-dark: #222;
  --color-white: #fff;
  --color-gray-50: #f6f6f6;
  --color-gray-100: #f3f3f3;
  --color-gray-200: #f1f1f1;
  --color-gray-300: #eaeaea;
  --color-gray-400: #ddd;
  --color-gray-500: #bbb;
  --color-gray-600: #9a9a9a;
  --color-gray-700: #666;
  --color-gray-800: #555;
  --color-gray-850: #444;
  --color-gray-900: #333;
  --color-alert: #E82D2D;
  /* Width */
  --w-main-content: 1400px;
  --w-content: 1000px;
}

body, button, input, textarea { font-family: "Pretendard", "Dotum", "Arial", san-serif; }

/* screen reader */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* object fit */
.object-fit--contain > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.object-fit--cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* buttons */
.btn--more-view {
  padding: 8px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  box-sizing: border-box;
}
.btn--more-view::after {
  content: '\e145';
  color: var(--color-primary);
  font-family: 'Material Symbols Outlined';
  font-size: 18px;
  font-weight: 500;
}
.btn--more-view.list::after {
  content: '\e166';
}

/* table */
.table-wrap {
  width: 100%;
  overflow-x: auto;
}
.table-wrap table {
  width: 100%;
  min-width: 450px;
}
.tb {
  border-top: 2px solid var(--color-secondary);
}
.tb th,
.tb td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--color-gray-400);
  border-right: 1px solid var(--color-gray-400);
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
}
.tb th.align-left,
.tb td.align-left {
  text-align: left;
}
.tb th.align-top,
.tb td.align-top {
  vertical-align: top;
}
.tb th {
  border-top: 1px solid var(--color-gray-400);
  background-color: var(--color-gray-50);
  color: var(--color-dark);
  font-weight: 600;
}
.tb td {
  color: var(--color-gray-900);
}
.tb th:last-child:not(.border-right), .tb td:last-child:not(.border-right) {
  border-right: 0;
}
.table-wrap .cont-p {
  margin-top: 8px;
  font-size: 16px;
}

/* pagination */
.pagination {
  margin: 50px 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-nav {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-indent: -9999px;
}
.page-nav .in-icon {
  color: var(--color-gray-850);
  font-size: 21px;
  text-indent: 0;
}
.page-nav.prev .in-icon,
.page-nav.next .in-icon {
  font-size: 20px;
}
.page-links {
  margin: 0 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.page-link {
  width: 22px;
  height: 22px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 2px solid transparent;
  color: var(--color-gray-600);
  font-size: 14px;
  text-align: center;
  box-sizing: border-box;
}
.page-link.on {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}
.page-link:not(.on):hover,
.page-link:not(.on):focus-visible {
  color: var(--color-gray-850);
  font-weight: 600;
}