/* ================= footer =================*/
.footer {
  background: #222222;
  color: white;
  padding: 40px 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  column-gap: 40px;
  align-items: start;
}

/* 컬럼 */
.footer-col {
  text-align: left;
  max-width: 300px;
  overflow-wrap: break-word;
}


/* 문의 아이콘 */
.contact-icon {
  width: 35px;
  height: 35px;
  margin-right: 3px;
  flex-shrink: 0;
  vertical-align: middle;
  position: relative;
}

.contact-link {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.contact-link .icon {
  width: 35px;
  flex-shrink: 0;
}

.contact-link span {
  display: block;
  flex: 1;
  line-height: 1.4;
}

.email-link span,
.phone-link span {
  margin-top: 5px;
}

.contact-link:hover .mail {
  content: url("../images/footer/mail_red.png");
}

.contact-link:hover .telephone {
  content: url("../images/footer/telephone_red.png");
}

.contact-link:hover .address {
  content: url("../images/footer/address_red.png");
}

.footer-info {
  text-align: left;
  max-width: 400px;
}

.footer-info p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.6;
}

.footer-tagline {
  margin-bottom: 24px;
  font-size: 19px;
  font-weight: 700;
}

.footer-org-info {
  margin-top: 0;
}

/* 로고 */
.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

/* 제목 */
.footer-col h4 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
}

.footer-col a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  line-height: 1.4;
}

.footer-col a:hover {
  color: #B22222;
}

/* SNS */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding-bottom: 24px;
}

.footer-social-col h4 {
  margin-left: 10px;
}

.footer-social img {
  width: 60px;
}

.footer-social-link {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 0 !important;
}

.footer-social-label {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translate(-50%, -3px);
  opacity: 0;
  visibility: hidden;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.footer-social-link:hover .footer-social-label,
.footer-social-link:focus-visible .footer-social-label {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}


/* 구분선 */
.footer-line {
  height: 1px;
  background: #FF4C4C;
  margin: 30px 0;
}

/* 하단 */
.footer-bottom {
  text-align: left;
  font-size: 14px;
  color: #bbb;
}

.footer-bottom p {
  margin: 4px 0;
}

/* ============================================== */
