@charset "UTF-8";
/******************************
  Colors
******************************/
/******************************
  Fonts
******************************/
/******************************
  Media Query Size
******************************/
/**
input 에서 type=number 일 때 자동으로 생기는 화살표 제거
 */
/******************************
  Colors
  디폴트 ex) .col-text_point{ color: color(text_default); }
******************************/
/******************************
Texts
디폴트 ex) .font-t1_26{ @include font($type: B1_16);}
******************************/
/******************************
  Media Query
******************************/
.authorP .headingArea.schDetail.author .author-actions {
  align-items: center;
}

.acm-entry {
  display: inline-flex;
  align-items: center;
  height: 32px;
  margin-right: 4px;
  padding: 0;
  border: none;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  vertical-align: middle;
  transition: background 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.acm-entry-ic {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  overflow: hidden;
  background: url("/images/icon/icon_24_question.svg") no-repeat center/24px auto;
  transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.acm-entry-label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-family: "Pretendard";
  font-size: 13px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0em;
  line-height: 1;
  color: #fff;
  overflow: hidden;
  transition: max-width 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.24s ease 0.08s, padding 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.acm-entry:hover, .acm-entry:focus-visible {
  background: #C93035;
}
.acm-entry:hover .acm-entry-ic, .acm-entry:focus-visible .acm-entry-ic {
  width: 0;
  opacity: 0;
}
.acm-entry:hover .acm-entry-label, .acm-entry:focus-visible .acm-entry-label {
  max-width: 150px;
  opacity: 1;
  padding: 0 13px;
}

.acm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
}
.acm-overlay.on {
  display: block;
}

.acm-spot {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
  cursor: pointer;
}

.acm-ring {
  position: absolute;
  border: 2px solid #C93035;
  border-radius: 8px;
  pointer-events: none;
  animation: acm-pulse 1.8s ease infinite;
}

@keyframes acm-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 48, 53, 0.35);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(201, 48, 53, 0);
  }
}
.acm-tip {
  position: fixed;
  z-index: 1220;
  width: 320px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: none;
}
.acm-tip.on {
  display: block;
}
.acm-tip .acm-skip {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  background: url("/images/icon/icon_16_close.svg") no-repeat center/16px auto;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
}
.acm-tip .acm-skip:hover {
  background-color: #F3F3F3;
}
.acm-tip .acm-step {
  display: inline-block;
  background: #FFE9E9;
  color: #C93035;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 11px;
  margin-bottom: 10px;
}
.acm-tip .acm-media {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 13px;
  background: #F3F3F3;
}
.acm-tip .acm-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.acm-tip .acm-title {
  font-family: "Pretendard";
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0em;
  color: #111111;
  margin-bottom: 7px;
}
.acm-tip .acm-desc {
  font-family: "Pretendard";
  font-size: 13px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0em;
  color: #404042;
}
.acm-tip .acm-hl {
  color: #C93035;
  font-weight: 700;
}
.acm-tip .acm-note {
  font-family: "Pretendard";
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0em;
  color: #767676;
  margin-top: 11px;
  padding: 10px 12px;
  background: #F3F3F3;
  border-radius: 8px;
}
.acm-tip .acm-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}
.acm-tip .acm-dots {
  display: flex;
  gap: 6px;
}
.acm-tip .acm-dots .d {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dcdcdc;
  transition: 0.2s;
}
.acm-tip .acm-dots .d.on {
  background: #C93035;
  width: 18px;
  border-radius: 4px;
}
.acm-tip .acm-btns {
  display: flex;
  gap: 7px;
}
.acm-tip .acm-btns .base-btn {
  width: auto;
  min-height: 34px;
  padding: 7px 16px;
  font-size: 12px;
  border-radius: 8px;
}

html.acm-lock {
  overflow: hidden;
}

.acm-target {
  cursor: pointer;
}

html.acm-lock .base-tooltip .tooltiptext {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .acm-entry {
    display: none !important;
  }
  .acm-overlay, .acm-tip {
    display: none !important;
  }
}
@media (max-height: 700px) {
  .acm-tip .acm-media {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .acm-ring {
    animation: none;
  }
  .acm-entry,
  .acm-entry-ic,
  .acm-entry-label {
    transition: none;
  }
}
.acm-tip .acm-skip:focus-visible,
.acm-tip .acm-btns .base-btn:focus-visible {
  outline: 2px solid #C93035;
  outline-offset: 2px;
}
