.recruit_wrap {
  background: #f2f7fc;
}

.recruit_wrap .layout {
  padding: 60px 15px 165px;
  display: flex;
  gap: 20px;
}


.category_title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.66px;
}

/* 왼쪽 사이드바 */
.side_nav_wrap {
  position: absolute;
  left: 0;
  top: 25px;
  transform: translateX(-100%);
  
}

.side_nav_wrap ul {
  display: flex;
  flex-direction: column;
}

.side_nav_wrap ul li a {
  display: block;
  padding: 25px;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #d5d5d5;
  background: #fafafa;
  letter-spacing: -0.6px;
  color: #3a3a3a;
}

.side_nav_wrap ul li a.on {
  background: #fff;
  border: none;
  border-left: 2px solid var(--brandColor);
}

.side_nav_wrap ul li:last-child a {
  border-top: none;
}

.side_nav_wrap .btn_next_posting {
  display: flex;
  flex-direction: column;
  padding: 12px 5px;
  border: 1px solid #191919;
  background: #fff;
  align-items: center;
  justify-content: center;
  margin: 26px auto;
  width: 75%;
  gap: 5px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.54px;
}

/* 공고 내용 영역 */
.posting_detail_wrap {
  width: calc(100% - 270px);
}

.posting_detail_wrap .posting { 
  background: #fff;
  position: relative;
  padding: 48px;
  margin-bottom: 80px;
}
.posting_detail_wrap .posting:last-child{
  margin-bottom: 0;
}

.title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.title_wrap .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.title_wrap .left .name_dday {
  display: flex;
  gap: 28px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.54px;
  font-weight: 500;
  color: #3a3a3a;
}

.title_wrap .left .name_dday p {
  font-size: inherit;
}

.title_wrap .left .name_dday .dday {
  position: relative;
  color: var(--brandColor);
}

.title_wrap .left .name_dday .dday:after {
  content: '';
  width: 1px;
  height: 10px;
  background: #d2d2d2;
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
}

.title_wrap .left h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1.4px;
}

.title_wrap .btn_bookmark {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
  border: 1px solid #878787;
}

.title_wrap .btn_bookmark p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.48px;
  color: #3a3a3a;
}

/* 공고 요약 */
.summary_wrap {
  margin: 30px auto 50px;
  display: flex;
  gap: 22px;
}

.summary_wrap ul {
  width: 50%;
  padding: 30px 25px;
  border-top: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
}

.summary_wrap ul li {
  display: flex;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: -0.54px;
  color: #3a3a3a;
}

.summary_wrap ul li:nth-last-child(1) {
  margin-bottom: 0;
}

.summary_wrap ul li .label {
  width: 130px;
}

.summary_wrap ul li .value {
  font-weight: 500;
  color: #1c1c1c;
}

.summary_wrap ul li .value.blue {
  color: var(--brandColor);
}

/* 공고 본문 - 템플릿 */

.contents_wrap .template { 
  padding: 10px 20px 80px;
}

.contents_wrap .template h2 { 
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--brandColor);
  letter-spacing: -1.32px;
}

.contents_wrap .template ul li h3 {
  padding-left: 30px;
  position: relative;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.9px;
}

.contents_wrap .template ul li h3:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--brandColor);
  border-radius: 50%;
}

.contents_wrap .template ul li > h3:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.contents_wrap .template ul li .list_wrap {
  margin-top: 18px;
  margin-bottom: 40px;
}
.contents_wrap .template ul li:last-child .list_wrap{
  margin-bottom: 0;
}
.contents_wrap .template ul li .list_wrap li {
  line-height: 1.8;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: #3a3a3a;
}
.contents_wrap .template ul li .list_wrap li span{
  font-weight: normal;
}

.contents_wrap .template ul li .list_wrap li:before {
  content: '·';
  margin-right: 5px;
}

.contents_wrap .img_wrap img {
  max-width: 100%;
}

/* 접수방법 */

.apply_wrap .apply_box {
  display: flex;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  overflow: hidden;
}

.apply_wrap .apply_box .left {
  width: 35%;
  padding: 40px 30px;
  text-align: center;
}

.apply_wrap .apply_box .left .apply_label {
  color: var(--brandColor);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.54px;
}

.apply_wrap .apply_box .left .remain_wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  letter-spacing: -0.78px;
}

.apply_wrap .apply_box .left .remain_wrap span {
  color: var(--brandColor);
  font-size: 24px;
  font-weight: 700;
}

.apply_wrap .apply_box .left .date_info .date_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.apply_wrap .apply_box .left .date_info .date_item.end {
  margin-top: 10px;
}

.apply_wrap .apply_box .left .date_info .date_item .label {
  border: 1px solid #a0a0a0;
  border-radius: 15px;
  padding: 4px 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.48px;
  color: #3a3a3a;
  flex-shrink: 0;
}

.apply_wrap .apply_box .left .date_info .date_item.end .label {
  border: 1px solid var(--brandColor);
  color: var(--brandColor);
}

.apply_wrap .apply_box .left .date_info .date_item .value {
  font-weight: 600;
  letter-spacing: -0.48px;
}

.apply_wrap .apply_box .left .date_info .date_item.end .value {
  color: var(--brandColor);
}

.apply_wrap .apply_box .right {
  width: 65%;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 35px;
  gap: 24px;
}

.apply_wrap .apply_box .right .job_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apply_wrap .apply_box .right .job_info li {
  display: flex;
  gap: 15px;
}

.apply_wrap .apply_box .right .job_info li p {
  font-size: 16px;
  letter-spacing: -0.48px;
  color: #3a3a3a;
}

.apply_wrap .apply_box .right .job_info li .label {
  width: 70px;
  color: #878787;
}
.apply_wrap .apply_box .right .job_info li .value{
  font-weight: 500;
}

.apply_wrap .apply_box .right .apply_buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apply_wrap .apply_box .right .apply_buttons .row {
  display: flex;
  gap: 10px;
}

.apply_wrap .apply_box .right .apply_buttons .row .btn {
  padding: 7px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.42px;
}

.apply_wrap .apply_box .right .apply_buttons .row .btn.btn_blue {
  color: #fff;
  background: var(--brandColor);
  border: 1px solid var(--brandColor);
}

.apply_wrap .apply_box .right .apply_buttons .row .btn.btn_gray {
  color: #878787;
  background: #fff;
  border: 1px solid #d5d5d5;
}

.apply_wrap .noti_wrap {
  margin-top: 15px;
}

.apply_wrap .noti_wrap p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.42px;
  color: #3a3a3a;
}

.apply_wrap .noti_wrap p span {
  font-size: inherit;
  color: var(--brandColor);
  line-height: inherit;
}

/* 기업정보 */
.company_info_wrap {
  margin-top: 80px;
}

.company_info_wrap .company_box {
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  padding: 30px;
}

.company_info_wrap .company_box .left {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company_info_wrap .company_box .left img {
  width: 100%;
}

.company_info_wrap .company_box .right {
  width: 70%;
}

.company_info_wrap .company_box .right .company_name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: -0.54px;
}

.company_info_wrap .company_box .right ul {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.company_info_wrap .company_box .right ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: -0.48px;
}

.company_info_wrap .company_box .right ul li .label {
  width: 95px;
  color: #878787;
}
.company_info_wrap .company_box .right ul li .value {
  font-weight: 500;
  color: #3a3a3a;
}

.company_info_wrap .company_box .right ul li.subway .value {
  display: flex;
  gap: 8px;
  align-items: center;
}

.company_info_wrap .company_box .right ul li .value .line {
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 14px;
}

.company_info_wrap .company_box .right ul li .value .line.line_seoul3 {
  border: 1px solid #fd602a;
  color: #fd602a;
}

/* 키워드 */
.keyword_wrap {
  margin-top: 50px;
}


.keyword_wrap ul {
  display: flex;
  gap: 10px;
}

.keyword_wrap ul li {
  padding: 8px 12px;
  background: #f2f7fc;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: -0.48px;
  color: #1c1c1c;
}

/* 오른쪽 사이드바 */
aside {
  width: 250px;
}

aside .btn_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

aside .btn_wrap button {
  padding: 15px;
  width: 100%;
  background: var(--brandColor);
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.recommend_posting_wrap {
  width: 250px;
}

.recommend_posting_wrap h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: -1.2px;
}

.recommend_posting_wrap h3 span {
  color: var(--brandColor);
  font-weight: inherit;
}

.recommend_posting_wrap ul li {
  margin-bottom: 16px;
}
.recommend_posting_wrap ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
}

.recommend_posting_wrap ul li a .title {
  width: 100%;
  font-weight: 600;
  font-size: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: -1px;
}

.recommend_posting_wrap ul li a .meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}

.recommend_posting_wrap ul li a .meta span {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.42px;
  color: #3a3a3a;
}

.recommend_posting_wrap ul li a .meta span:nth-child(2):before {
  content: '';
  width: 1px;
  height: 8px;
  background: #878787;
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
}

.recommend_posting_wrap ul li a .meta span:nth-child(2):after {
  content: '';
  width: 1px;
  height: 8px;
  background: #878787;
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
}

.recommend_posting_wrap ul li a .end_date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.42px;
  color: #3a3a3a;
}

.recommend_posting_wrap ul li a button
/* tempImg */
.company_info_wrap .company_box .left { display: flex; align-items: center; justify-content: center;}
.company_info_wrap .company_box .left img { width: 118px;}
.side_nav_wrap .btn_next_posting img { width: 20px; height: 10px; margin-top: 6px;}
.btn_bookmark img{width: 20px; height: 19px;}