/* PC_SUB DEDICATED FILE */
/* =========================================================
   50_footer_section.css (PC 전용)
   - SECTION5 / FOOTER SECTION
   - 메인/서브 공통 footer
   ========================================================= */

.pc-site .footer-section.section{
  --pc-sticky-h: 68px;
  --pc-sticky-gap: 6px;
  --pc-sticky-safe: 4px;
  --footer-bg: #000000;
  --footer-side: 180px;
  --footer-maxw: 1480px;

  position: relative;
  box-sizing: border-box;
  height: 100vh;
  min-height: 100vh;
  background: var(--footer-bg);
  color:#fff;
  overflow: visible;
  display:block;
  padding: 0;
}

/* footer 본문을 sticky 바로 위에 고정 배치 */
.pc-site .footer-section .footer-row{
  box-sizing:border-box;
  width:min(var(--footer-maxw), calc(100% - (var(--footer-side) * 2)));
  display:grid;
  grid-template-columns: minmax(240px, 320px) minmax(580px, 1fr);
  align-items:start;
  gap: 20px;

  position:absolute;
  left:50%;
  top: 30px;
  bottom: auto;
  transform: translateX(-50%);
  z-index:1;
}

.pc-site .footer-section .footer-left{
  min-width:0;
  text-align:left;
  padding-top: 10px;
}

.pc-site .footer-section .footer-title{
  margin:0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color:#fff;
}

.pc-site .footer-section .footer-right{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap: 5px;
  padding-right: 88px;
}

.pc-site .footer-section .footer-copy-group{
  display:flex;
  flex-direction:column;
  gap: 1px;
}

.pc-site .footer-section .footer-copy-group p,
.pc-site .footer-section .footer-right > p{
  margin:0;
  font-size: 13px;
  line-height: 1.18;
  color: rgba(255,255,255,.78);
  word-break: keep-all;
}

.pc-site .footer-section .footer-copy-note p{
  color: rgba(255,255,255,.62);
}

.pc-site #section5 .footer-copy-group--primary p{
  line-height: 1.2;
}

.pc-site #section5 .footer-copy-group--primary .footer-key{
  font-weight: 620;
  font-size: 12px;
  color: rgba(255,255,255,.9);
}

.pc-site .footer-section .copyright{
  margin-top: 1px;
  font-size: 12px;
  color: rgba(255,255,255,.52);
}

.pc-site .footer-section .footer-top-btn{
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
  outline:none;
  z-index:3000;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.pc-site .footer-section .footer-top-btn:hover{
  transform: translateY(-50%) translateY(-2px);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.05);
}

.pc-site .footer-section .footer-top-btn::before{
  content:"";
  width:13px;
  height:13px;
  border-left:3px solid rgba(255,255,255,.82);
  border-top:3px solid rgba(255,255,255,.82);
  transform: rotate(45deg);
  display:block;
  margin-top:4px;
}
