/***************************************************************메인하단 교육레이어***************************************************************/
@font-face {
  font-family: 'Paperlogy';
  font-weight: 300;
  src: url('/images/info21c/layer/Paperlogy-L.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 400;
  src: url('/images/info21c/layer/Paperlogy-R.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 600;
  src: url('/images/info21c/layer/Paperlogy-M.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 700;
  src: url('/images/info21c/layer/Paperlogy-B.woff2') format('woff2');
  font-display: swap;
}

@keyframes eduBannerUp {
  from {
    opacity: 0;
    transform: translate(-50%, 40px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.edu-fixed-area {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  z-index: 9999;
  pointer-events: none;
}

.edu-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(
    to top,
    rgba(52,93,147,0.5),
    rgba(255,255,255,0)
  );
  z-index: 1;
}

.edu-banner-container {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap:6px;
  pointer-events: auto;
  animation: eduBannerUp 0.6s ease-out forwards;
}

.edu-banner-card,
.edu-banner-card * {
  font-family: 'Paperlogy', -apple-system, BlinkMacSystemFont,
               'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
}

.edu-banner-card {
  padding: 22px 24px;
  border-radius: 24px 24px 0 0;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(.16,1,.3,1),
    box-shadow 0.4s ease;
}

.edu-banner-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
  border-radius: 24px !important;
}

.edu-fixed-area .banner-left {
  width: 560px;
  flex: 0 0 560px;
}
/*640,500*/

.edu-fixed-area .banner-right {
  width: 560px;
  flex: 0 0 560px;
}
/*560,500*/

.edu-banner-card.dark {
	background:
    linear-gradient(
      to bottom,
      rgba(49, 32, 24, 0.8),
      rgba(49, 32, 24, 0.8)
    ),
    url('/images/info21c/layer/edu_backimg01.jpg?ver=1') center / cover no-repeat;
}

.edu-banner-card.blue {
  background:
    linear-gradient(
      to bottom,
      rgba(49, 52, 60, 0.8),
      rgba(49, 52, 60, 0.8)
    ),
    url('/images/info21c/layer/edu_backimg02.jpg?ver=1') center / cover no-repeat;
}

.edu-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.edu-fixed-area .banner-left .edu-title {color:#FAC063;}
.edu-fixed-area .banner-right .edu-title {color:#36D3FF;}

.edu-title strong {
  font-size: 24px;
  font-weight: 700;
}

.edu-title strong span {
  font-size: 24px;
  font-weight: 300;
}

.edu-schedule-wrap {
  display: flex;
  align-items: center;
  gap: 12px;       
  flex-wrap: wrap;  
}

.edu-schedule {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 14px;
  padding: 10px 30px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  width: fit-content;
  max-width: 100%;
  font-size: 15px;
}

.edu-schedule2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
   justify-content: center;
  gap: 10px;
  margin: 0 auto;
  padding: 10px 30px 20px;
  border-radius: 20px;
  background: rgba(0,0,0,0.35);
  width: fit-content;
  max-width: 100%;
}

.edu-schedule .edu-subtitle {
	color:#81e4fd;
	font-size:15px;
}

.edu-schedule2 span {
	font-size:15px;
}

.edu-schedule .edu-item,
.edu-schedule2 .edu-item{
  position: relative;
  padding-left: 8px;
  font-size: 15px;
  white-space: nowrap;
}
.edu-schedule .edu-item::before,
.edu-schedule2 .edu-item::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.edu-btn {
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.edu-schedule2 > .edu-btn {
  border: none;
  border-radius: 999px;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.edu-btn.yellow {
  background: linear-gradient(
    90deg,
    #FAC063 0%,
    #F29F1B 100%
  );
  color: #fff;
}

.edu-btn.blue {
 background: linear-gradient(
    90deg,
    #36D3FF 0%,
    #199BF8 100%
  );
  color: #fff;
}

.edu-btn i {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.edu-btn:hover i {
  transform: translateX(3px);
}

.edu-close {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.8);
  color: #111;
  cursor: pointer;
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s ease;
}

.edu-close i {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}


.edu-close:hover i {
  transform: rotate(90deg);
}


@media (max-width: 768px) {
  .edu-banner-container {
    left: 0;
    right: 0;
    transform: none;
    flex-direction: column;
    padding: 12px;
  }

  .edu-fixed-area .banner-left,
  .edu-fixed-area .banner-right {
    width: 100%;
    flex: none;
  }

  .edu-schedule {
    white-space: normal;
    text-align: center;
}

  .edu-close {
    right: 12px;
    top: 12px;
    transform: none;
  }
}


/***************************************************************1:1분석후기***************************************************************/
.latebid-banner * {font-family:
        'Paperlogy',
        -apple-system,
        BlinkMacSystemFont,
        'Apple SD Gothic Neo',
        'Noto Sans KR',
        sans-serif;}
.latebid-banner {
	position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999999;

    box-sizing: border-box;
    width: min(860px, calc(100vw - 40px));
    max-height: calc(100dvh - 40px);
    padding: clamp(32px, 3.6vw, 40px) 30px 30px;

    overflow-x: hidden;
    overflow-y: auto;

    margin: 0;
    text-align: left;
    background: #f5f7fb;
    border: clamp(3px, 0.3vw, 4px) solid #616dfa;
    border-radius: clamp(22px, 2vw, 30px);
    box-shadow:
        0 28px 70px rgba(25, 31, 70, 0.28),
        0 8px 24px rgba(97, 109, 250, 0.18);

    transform: none;
}

.latebid-banner .latebid-close {
    position: absolute;
    top: 12px;
    left: 12px;

    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #454b70;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 3px 12px rgba(31, 39, 80, 0.16);

    cursor: pointer;
    z-index: 10;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.latebid-banner .latebid-close i {
    font-size: 18px;
    line-height: 1;
}

.latebid-banner .latebid-close:hover {
    color: #fff;
    background: #616dfa;
    transform: rotate(90deg);
}

/* 상단 문구 + 이미지 */
.latebid-banner .banner-top {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    align-items: center;
    min-height: 210px;
}
.latebid-banner .banner-text {
   position: relative;
    z-index: 2;
    padding-left: 20px;
}
.latebid-banner h2,
.latebid-banner h2 * {
    margin: 0;
    font-size: clamp(25px, 2.4vw, 32px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #222;
}

.latebid-banner h2 .batxt01 {
    font-size: clamp(19px, 1.9vw, 24px) !important;
    font-weight: 300 !important;
}

.latebid-banner p.desc {
    margin: 8px 0 0;
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -0.03em;
    color: #555;
}

.latebid-banner .desc-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}


.latebid-banner .responsibility-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;

    margin: 0;
    padding: 5px 11px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 500;
    line-height: 1;

    color: #fff;
    background: linear-gradient(135deg, #7278ff, #535adf);
    box-shadow: 0 4px 10px rgba(83, 90, 223, 0.22);
}

.latebid-banner .responsibility-badge i {
    flex: 0 0 auto;
    font-size: 12px;
    color: #fff;
}

/* 트로피와 실적 영역 */
.latebid-banner .banner-graph {
    position: static;
    z-index: 1;
}

/* 트로피 이미지를 뒤쪽에 깔기 */
.latebid-banner .trophy-img {
    position: absolute;
    z-index: 0;
    top: 50%;
    right: 100px;
    width: 288px;
    transform: translateY(-50%);
    pointer-events: none;
}

.latebid-banner .trophy-img img {
    display: block;
    width: 100%;
    height: auto;
}

/* 오른쪽 숫자 실적은 트로피보다 앞쪽 */
.latebid-banner .bid-results {
    position: relative;
    z-index: 2;
    width: 120px;
    padding: 12px 0;
	margin-left:20px;
}

/* 위·아래 가로선 */
.latebid-banner .bid-results::before,
.latebid-banner .bid-results::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 100%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        to right,
        transparent 0%,
        #d8dce5 25%,
        #d8dce5 75%,
        transparent 100%
    );
}

.latebid-banner .bid-results::before {
    top: 0;
}

.latebid-banner .bid-results::after {
    bottom: 0;
}

/* 위·아래 선 제거 */
.latebid-banner .bid-results::before,
.latebid-banner .bid-results::after {
    content: none;
}

/* 두 항목 사이 가운데 선만 표시 */
.latebid-banner .result-item + .result-item {
    position: relative;
    margin-top: 15px;
    padding-top: 15px;
}

.latebid-banner .result-item + .result-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35%;
    width: 90%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        to right,
        transparent 0%,
        #d8dce5 25%,
        #d8dce5 75%,
        transparent 100%
    );
}

/* 업체별 낙찰 실적 */
.latebid-banner .result-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	padding-left:10px;
}

/* 업체명 */
.latebid-banner .company-name {
    display: block;
    margin-bottom: 3px;
    color: #888b94;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

/* 누적낙찰건·누적낙찰액과 숫자를 세로로 배치 */
.latebid-banner .result-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

/* 누적낙찰건·누적낙찰액 */
.latebid-banner .result-info strong {
    color: #111318;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

/* 141건·322억원 */
.latebid-banner .result-info em {
    display: block;
    margin-top: 1px;
    color: #ff315b;
    font-size: 15px;
    font-weight: 800;
    font-style: normal;
    line-height: 1.1;
    white-space: nowrap;
}

/* 숫자만 크게 */
.latebid-banner .result-info em b {
    font-size: 21px;
    font-weight: 900;
}

.latebid-banner .count-up {
    display: inline-block;
    min-width: 3ch;
    font-variant-numeric: tabular-nums;
}

.latebid-banner .review-wrap {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: clamp(16px, 2vw, 20px) clamp(16px, 2.2vw, 22px);
    background: #fff;
    border: 1px solid #e2e6f2;
    border-radius: clamp(15px, 1.6vw, 20px);
    box-shadow: 0 12px 30px rgba(61, 74, 150, 0.1);
}

.review-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7e9f2;
}

.review-title span {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.review-title strong {
    color: #9297a3;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
	letter-spacing:0.02em;
}
.review-title strong i {
    color: #616dfa;
    font-size: 13px;
	margin-left:5px;
}
.review-title strong span {
    color: #596173;
    font-size: 15px;
    font-weight: 700;
}

/* 후기 2개 정도만 보이는 창 */
.review-window {
    height: 101px;
    overflow: hidden;
}

.review-list {
	position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    transform: translateY(0);
    will-change: transform;
}

.latebid-banner .review-item {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) 150px  150px;
    align-items: center;
    column-gap: 14px;
	font-size: 14px;
    height: 46px;
    margin-bottom: 7px;
    padding: 0 20px;
    box-sizing: border-box;

    background: #f6f7fc;
    border-radius: 11px;
}

.review-id {
    flex: 0 0 70px;
    font-size: 14px;
    font-weight: 600;
    color: #616dfa;
	 font-family: 'Paperlogy', sans-serif;
}

.latebid-banner .review-content {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
}

.review-date {
    flex: 0 0 78px;
    text-align: right;
    font-family: Arial, sans-serif;
    font-size: 15px !important;
    color: #999;
}
.review-amount {text-align: right; letter-spacing: 1.4px; font-family: Arial, sans-serif; font-size: 15px;}

.review-item p {
    margin: 0;

    font-family: 'Paperlogy', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    /*letter-spacing: -0.03em;*/
    color: #555;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.latebid-banner .review-buttons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.latebid-banner .review-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    flex: 1;
    min-width: 0;
    height: 44px;

    background: #616dfa;
    border: 1px solid #616dfa;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(97, 109, 250, 0.2);

    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.latebid-banner .review-apply {
    background:#596173;
    border-color: #596173;
    box-shadow: 0 5px 12px rgba(52, 58, 73, 0.18);
}

.latebid-banner .review-more i {
    color: #fff;
    font-size: 11px;
    transition: transform 0.2s ease;
}

.latebid-banner .review-more:hover {
    background: #505be7;
    border-color: #505be7;
    box-shadow: 0 8px 18px rgba(97, 109, 250, 0.32);
    transform: translateY(-2px);
}
.latebid-banner .review-apply:hover {
    background: #252a36;
    border-color: #252a36;
    box-shadow: 0 8px 18px rgba(52, 58, 73, 0.28);
}

.latebid-banner .review-more:hover i {
    transform: translateX(4px);
}

.latebid-banner .review-more:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(97, 109, 250, 0.22);
}

/* 작은 노트북 화면에서는 트로피·낙찰 실적 숨김 */
@media (max-width: 700px) {
    .latebid-banner .banner-graph {
        display: none;
    }

    /* 오른쪽 실적 자리까지 없애고 문구를 전체 너비로 */
    .latebid-banner .banner-top {
        display: block;
        min-height: auto;
    }

    .latebid-banner .banner-text {
        width: 100%;
        padding: 20px 10px 25px;
        box-sizing: border-box;
    }
}