/* 상세 필터 */
.filter {
  position: sticky;
  top: 90px;
  z-index: 1000;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  border: 1px solid #dbeafe;
  box-shadow: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.filter .filter_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 25px 32px;
  cursor: pointer;
}

.filter .filter_header:hover {
  background-color: #f9fafb;
}

.filter .filter_title {
  font-size: 18px;
  font-weight: 900;
  line-height: 28px;
  color: var(--black);
}

.filter .filter_toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 16px;
  transform: rotate(0deg);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cg clip-path='url(%23clip0_315_1985)'%3E%3Cpath d='M7 8C6.72667 8 6.48667 7.90667 6.28 7.72L0.28 1.72C0.0933333 1.51333 0 1.27333 0 1C0 0.726667 0.0933333 0.486666 0.28 0.28C0.486667 0.0933331 0.726667 0 1 0C1.27333 0 1.51333 0.0933331 1.72 0.28L7 5.59L12.28 0.28C12.4867 0.0933331 12.7267 0 13 0C13.2733 0 13.5133 0.0933331 13.72 0.28C13.9067 0.486666 14 0.726667 14 1C14 1.27333 13.9067 1.51333 13.72 1.72L7.72 7.72C7.51333 7.90667 7.27333 8 7 8Z' fill='%239CA3AF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_315_1985'%3E%3Crect width='14' height='8' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.filter.active .filter_toggle {
  transform: rotate(180deg);
}

.filter .filter_contents {
  display: none;
  padding: 0 33px 25px;
}

.filter.active .filter_contents {
  display: block;
}

.filter .search_area {
  position: relative;
  margin-bottom: 24px;
}

.filter .search_area::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("../images/bizhome/kglobal500/company_list/ic_search.png")
    no-repeat 50% 50%;
  background-size: contain;
}

.filter .search_area .search_input {
  height: 56px;
  width: 100%;
  padding: 16px 58px 16px 66px;
  border-radius: 16px;
  border: none;
  background-color: #f9fafb;
  position: relative;
}

.filter .search_area .search_input::placeholder {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #757575;
}

.filter .search_area .search_input:focus {
  outline: 1px solid var(--black);
  box-sizing: border-box;
}

.filter .search_area .search_reset {
  display: none;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  font-size: 0;
  background: url("../images/bizhome/kglobal500/company_list/ic_search_remove.png")
    no-repeat 50% 50%;
  background-size: contain;
}

.filter .search_area .search_reset.active {
  display: block;
}

.filter .keyword_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0;
}

.filter .keyword_area .keyword_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  padding: 3px 0;
}

.filter .keyword_area .keyword_list .keyword_item {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 7px 13px;
  background-color: var(--bg-blue);
  border-radius: 8px;
  border: 1px solid #dbeafe;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: var(--pcolor);
}

.filter .keyword_area .keyword_list .keyword_item.active {
  background-color: var(--pcolor);
  color: #fff;
}

.filter .keyword_area .keyword_list .keyword_item .keyword_item_remove {
  display: inline-block;
  width: 9px;
  height: 12px;
  border: none;
  cursor: pointer;
  font-size: 0;
  background: transparent
    url("../images/bizhome/kglobal500/company_list/ic_keyword_remove.png")
    no-repeat 50% 50% / 7.5px;
}

.filter .keyword_area .filter_reset {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #9ca3af;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.filter .keyword_area .filter_reset::before {
  content: "";
  display: inline-block;
  width: 10.875px;
  height: 10.5px;
  background: url("../images/bizhome/kglobal500/company_list/ic_filter_reset.png")
    no-repeat 50% 50%;
  background-size: contain;
}

.filter .filter_row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 63px;
  margin-bottom: 20px;
}

.filter .filter_row .filter_row_title {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 38px;
  color: #9ca3af;
}

.filter .filter_row .filter_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}

.filter .filter_row .filter_list .filter_list_item {
  flex-shrink: 0;
  height: 38px;
  padding: 9px 15px;
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #4b5563;
  box-shadow:
    0 1px 2px 0 rgba(0, 0, 0, 0.05),
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

.filter .filter_row .filter_list .filter_list_item.active {
  background-color: var(--pcolor);
  font-weight: 900;
  color: #fff;
}

.filter .filter_row .filter_list .filter_list_item--all {
  background-color: #f3f4f6;
}

.filter .search_result {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}

.filter .search_result .search_result_text {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  color: var(--desc);
}

.filter .search_result .search_result_text .count {
  color: var(--pcolor);
  padding: 0 2px 0 0;
}

/* 카테고리 영역 */
.company_list > .visual_wrap {
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: 100% 328px;
}

.company_list .bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 328px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0.5;
}

.category {
  position: relative;
  z-index: 100;
  margin-bottom: 64px;
}

.category .category_title {
  font-size: 26px;
  font-weight: 900;
  line-height: 32px;
  color: var(--black);
  margin-bottom: 20px;
}

.category .category_list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  height: 152px;
  overflow: hidden;
}

.category .category_list.active {
  height: auto;
  overflow: visible;
}

.category .category_list .category_list_item {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  width: 184px;
  height: 68px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: 24px;
  font-size: 16px;
  font-weight: 900;
  color: #374151;
  cursor: pointer;
  box-shadow:
    0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

.category .category_list .category_list_item:nth-child(7n) {
  margin-right: 0;
}

.category .category_list .category_list_item .category_text {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #374151;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.category .category_list .category_list_item .category_count {
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #9ca3af;
  border-radius: 8px;
}

.category .category_list .category_list_item.active {
  background: var(--pcolor);
  color: #fff;
}

.category .category_list .category_list_item.active .category_text {
  color: var(--white);
}

.category .category_list .category_list_item.active .category_count {
  color: var(--white);
}

.category .category_list .category_list_item:not(.active):hover {
  border-color: #60a5fa;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category .category_list .category_list_item:not(.active):hover .category_text {
  color: var(--pcolor);
}

.category
  .category_list
  .category_list_item:not(.active):hover
  .category_count {
  color: var(--pcolor);
}

.category .category_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.category .category_more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 150px;
  padding: 11px 17px;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  line-height: 20px;
  background-color: var(--white);
  border-radius: 43px;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 1px 2px 0 rgba(0, 0, 0, 0.05),
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

.category .category_more::after {
  content: "";
  display: inline-flex;
  width: 14px;
  height: 14px;
  transform: rotate(0deg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cg clip-path='url(%23clip0_315_1985)'%3E%3Cpath d='M7 8C6.72667 8 6.48667 7.90667 6.28 7.72L0.28 1.72C0.0933333 1.51333 0 1.27333 0 1C0 0.726667 0.0933333 0.486666 0.28 0.28C0.486667 0.0933331 0.726667 0 1 0C1.27333 0 1.51333 0.0933331 1.72 0.28L7 5.59L12.28 0.28C12.4867 0.0933331 12.7267 0 13 0C13.2733 0 13.5133 0.0933331 13.72 0.28C13.9067 0.486666 14 0.726667 14 1C14 1.27333 13.9067 1.51333 13.72 1.72L7.72 7.72C7.51333 7.90667 7.27333 8 7 8Z' fill='%239CA3AF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_315_1985'%3E%3Crect width='14' height='8' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.category .category_more:hover {
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.category .category_more:hover::after {
  transform: rotate(0deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cg clip-path='url(%23clip0_315_1985)'%3E%3Cpath d='M7 8C6.72667 8 6.48667 7.90667 6.28 7.72L0.28 1.72C0.0933333 1.51333 0 1.27333 0 1C0 0.726667 0.0933333 0.486666 0.28 0.28C0.486667 0.0933331 0.726667 0 1 0C1.27333 0 1.51333 0.0933331 1.72 0.28L7 5.59L12.28 0.28C12.4867 0.0933331 12.7267 0 13 0C13.2733 0 13.5133 0.0933331 13.72 0.28C13.9067 0.486666 14 0.726667 14 1C14 1.27333 13.9067 1.51333 13.72 1.72L7.72 7.72C7.51333 7.90667 7.27333 8 7 8Z' fill='%232563EB'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_315_1985'%3E%3Crect width='14' height='8' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.category .category_more.active::after {
  transform: rotate(180deg);
}

/* 리스트 영역 */
.startup {
  position: relative;
  z-index: 100;
}

.startup .startup_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.startup .startup_header .search_result {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.35px;
  color: #9ca3af;
  text-transform: uppercase;
}

.startup .startup_header .search_result .count {
  color: var(--black);
}

.startup .startup_header .cate_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.startup .startup_header .cate_wrap h3 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.36px;
}

.startup .startup_header .cate_wrap h3::after {
  display: none;
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/bizhome/kglobal500/arrow_black_20px.png") no-repeat
    50% 50%;
}

.startup .startup_header .cate_wrap h3.arrow_show::after {
  display: block;
}

.startup .startup_header .cate_wrap h3 span {
  font-size: 14px;
  font-weight: 700;
  color: var(--pcolor);
  margin-left: 4px;
}

.startup .startup_header .cate_wrap .cate_type .fakeselect_wrap {
  max-width: none;
  min-width: 200px;
}

.startup .startup_header .cate_wrap .cate_type .fakeselect_btn span {
  text-indent: 0;
}

.startup .startup_header .cate_wrap .cate_type .fakeselect_list li span {
  word-break: break-all;
}

.startup .list_category {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.startup .list_category > li {
  position: relative;
  top: 0px;
  width: 316px;
  min-height: 357px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: top 0.2s;
}

.startup .list_category > li:hover {
  top: -4px;
}

.startup .list_category > li.no_list_wrap {
  width: 100%;
  height: 200px;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}

.startup .list_category > li.no_list_wrap:hover {
  top: 0;
}

.startup .list_category > li a {
  display: flex;
}

.startup .list_category > li:nth-child(2n) {
  margin-right: 0;
}

.startup .list_category > li .thumb {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  border-radius: 3px;
}

.startup .list_category > li .desc_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 16px;
}

.startup .list_category > li .desc_top {
  position: relative;
}

.startup .list_category > li .desc_top .com_name {
  max-width: 300px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.36px;
  margin-bottom: 8px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
}

.startup .list_category > li .desc_top .com_desc {
  max-width: 300px;
  letter-spacing: -0.28px;
  color: var(--grey333);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-transform: none;
}

.startup .list_category > li .desc_top .logo {
  content: "";
  display: inline-flex;
  right: 4px;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  border-radius: 100%;
  border: 1px solid var(--greyf2f2);
}

.startup .list_category > li .desc_bottom .com_cate {
  letter-spacing: -0.28px;
  color: var(--pdark);
  margin-bottom: 12px;
}

.startup .list_category > li .desc_bottom .badge_wrap {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.startup .list_category > li .desc_bottom .badge_wrap ul {
  display: flex;
  align-items: center;
}

.startup .list_category > li .desc_bottom .badge_wrap ul li {
  margin-right: 10px;
}

.startup .list_category > li .desc_bottom .badge_wrap ul li:last-child {
  margin-right: 10px;
}

.startup .list_category > li .desc_bottom .badge_wrap ul li i {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
}

.startup .btn_wrap {
  text-align: center;
  padding-top: 64px;
}

.startup .btn_more {
  padding: 0 24px;
  display: none;
}

.startup .btn_more .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  vertical-align: middle;
  background: url("../images/bizhome/kglobal500/arrow_down_20px.png") no-repeat
    50% 80%;
}

.startup .pagination_wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.startup .pagination_wrap .pagination_item {
  height: 40px;
  min-width: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #4b5563;
  background-color: transparent;
  cursor: pointer;
}

.startup .pagination_wrap .pagination_item:hover {
  background-color: #f3f4f6;
}

.startup .pagination_wrap .pagination_item.active {
  border-color: var(--pcolor);
  background-color: var(--pcolor);
  color: #fff;
  box-shadow:
    0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

.startup .pagination_wrap .pagination_item.pagination_control {
  flex-shrink: 0;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px 12.5px;
}

.startup .pagination_wrap .pagination_item.pagination_control--prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cg clip-path='url(%23clip0_739_42682)'%3E%3Cpath d='M0.25 5.5C0.0833333 5.68 0 5.89 0 6.13C0 6.36333 0.0833333 6.57 0.25 6.75L5.5 12C5.68 12.1667 5.89 12.25 6.13 12.25C6.36333 12.25 6.57 12.1667 6.75 12C6.91667 11.82 7 11.6133 7 11.38C7 11.14 6.91667 10.93 6.75 10.75L2.11 6.13L6.75 1.5C6.91667 1.32 7 1.11333 7 0.88C7 0.64 6.91667 0.43 6.75 0.25C6.57 0.0833333 6.36333 0 6.13 0C5.89 0 5.68 0.0833333 5.5 0.25L0.25 5.5Z' fill='%234B5563'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_739_42682'%3E%3Crect width='7' height='12.25' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.startup .pagination_wrap .pagination_item.pagination_control--next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cg clip-path='url(%23clip0_739_42692)'%3E%3Cpath d='M6.75 5.5C6.91667 5.68 7 5.89 7 6.13C7 6.36333 6.91667 6.57 6.75 6.75L1.5 12C1.32 12.1667 1.11333 12.25 0.88 12.25C0.64 12.25 0.43 12.1667 0.25 12C0.0833333 11.82 0 11.6133 0 11.38C0 11.14 0.0833333 10.93 0.25 10.75L4.89 6.13L0.25 1.5C0.0833333 1.32 0 1.11333 0 0.88C0 0.64 0.0833333 0.43 0.25 0.25C0.43 0.0833333 0.64 0 0.88 0C1.11333 0 1.32 0.0833333 1.5 0.25L6.75 5.5Z' fill='%234B5563'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_739_42692'%3E%3Crect width='7' height='12.25' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.startup .pagination_wrap .pagination_item.pagination_control--prev.disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cg clip-path='url(%23clip0_739_42682)'%3E%3Cpath d='M0.25 5.5C0.0833333 5.68 0 5.89 0 6.13C0 6.36333 0.0833333 6.57 0.25 6.75L5.5 12C5.68 12.1667 5.89 12.25 6.13 12.25C6.36333 12.25 6.57 12.1667 6.75 12C6.91667 11.82 7 11.6133 7 11.38C7 11.14 6.91667 10.93 6.75 10.75L2.11 6.13L6.75 1.5C6.91667 1.32 7 1.11333 7 0.88C7 0.64 6.91667 0.43 6.75 0.25C6.57 0.0833333 6.36333 0 6.13 0C5.89 0 5.68 0.0833333 5.5 0.25L0.25 5.5Z' fill='%239CA3AF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_739_42682'%3E%3Crect width='7' height='12.25' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.startup .pagination_wrap .pagination_item.pagination_control--next.disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cg clip-path='url(%23clip0_739_42692)'%3E%3Cpath d='M6.75 5.5C6.91667 5.68 7 5.89 7 6.13C7 6.36333 6.91667 6.57 6.75 6.75L1.5 12C1.32 12.1667 1.11333 12.25 0.88 12.25C0.64 12.25 0.43 12.1667 0.25 12C0.0833333 11.82 0 11.6133 0 11.38C0 11.14 0.0833333 10.93 0.25 10.75L4.89 6.13L0.25 1.5C0.0833333 1.32 0 1.11333 0 0.88C0 0.64 0.0833333 0.43 0.25 0.25C0.43 0.0833333 0.64 0 0.88 0C1.11333 0 1.32 0.0833333 1.5 0.25L6.75 5.5Z' fill='%239CA3AF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_739_42692'%3E%3Crect width='7' height='12.25' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.startup .pagination_wrap .pagination_item.disabled,
.startup .pagination_wrap .pagination_item:disabled {
  cursor: default;
  border-color: #e5e7eb;
  color: #9ca3af;
  background-color: #f9fafb;
}

.startup .pagination_wrap .pagination_item.pagination_ellipsis:hover,
.startup .pagination_wrap .pagination_item:disabled:hover {
  border-color: #e5e7eb;
  color: #9ca3af;
}

/* 배너 영역 */
.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 198px;
  padding: 49px;
  background-color: #d7e6ff;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  margin-top: 96px;
}

.banner .banner_desc .banner_desc--main {
  font-size: 30px;
  font-weight: 900;
  line-height: 36px;
  color: var(--black);
  margin-bottom: 16px;
}

.banner .banner_desc .banner_desc--sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--desc);
}

.banner .banner_link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 60px;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 900;
  line-height: 20px;
  color: var(--white);
  background-color: var(--pcolor);
  border-radius: 24px;
  box-shadow:
    0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 0 0 0 rgba(0, 0, 0, 0),
    0 0 0 0 rgba(0, 0, 0, 0);
}

.banner .banner_link::after {
  content: "";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  background: url("../images/bizhome/kglobal500/company_list/ic_rocket.png")
    no-repeat center;
}

