@import url(common.css);
@import url(fonts.css);

/* 공통요소 */
.line-thin {
  background: #aeaeae;
  height: 1px;
  width: 100%;
}
.line-bold {
  background: #3a3a3a;
  height: 3px;
  width: 100%;
}
a:link {
  color: #777;
}
a:visited {
  color: #777;
}
.question-prefix {
  color: #03446a;
}
.lead-box {
  border-left: 5px solid #222222;
  padding-left: 1.5rem;
  color: #5a5a5a;
}

/* 콘텐츠 헤더 영역 시작 */
.article-header-container {
  height: 100vh;
  background-color: white;
  padding-top: 100px;
  background-position: center left;
  background-size: 70%;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: white;
  text-align: center;
}
.content-title-wrap {
  padding: 0 2em;
}
/* 휠 아이콘 애니메이션 */
.scroll {
  width: 60px;
  height: 60px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: relative;
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;
  cursor: pointer;
  &::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
  }
}

@keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}

@-webkit-keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}

/* 기사 제목 */
.article-title {
  font-family: var(--KNOC-main-h2-font-family);
  font-size: var(--KNOC-main-h4-font-size);
  margin-bottom: 40px;
  animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: both;
}
.article-title-small {
  font-size: var(--KNOC-main-h5-font-size);
}
/* 기사 부제목 */
.article-subtitle {
  font-family: var(--KNOC-main-h5-font-family);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
  animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  -webkit-animation-fill-mode: both;
}
/* 기고자 */
.article-writer {
  font-size: 1.25rem;
  animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  animation-delay: 1.5s;
  -webkit-animation-fill-mode: both;
}
/* 텍스트 나타나는 애니메이션 */
@keyframes reveal {
  0% {
    transform: translate(0, 100%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* 콘텐츠 헤더 영역 끝 */

/* 콘텐츠 내용 시작 */
.article-body-container {
  height: 100%;
  padding-top: 9.88em;
  padding-left: 9.88em;
  padding-right: 9.88em;
}
/* 리드문 영역 시작 */
.body-lead-wrap {
  background-color: #e8f1f9;
  width: 100%;
  min-height: 300px;
  margin-bottom: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 96px;
}
/* 리드문 영역 끝 */

/* 사이드바 영역 시작 */
.side-menu-container {
  width: 390px;
  min-width: 390px;
  height: auto;
}
.side-menu-item-wrap {
  position: sticky;
  top: 100px;
}
.side-menu-item {
  font-size: 1.25rem;
  margin-bottom: 32px;
  padding-bottom: 20px;
  color: #6d6d6d;
  border-bottom: 1px solid #6d6d6d;
  cursor: pointer;
  transition: all 500ms ease-in-out;
}
.side-menu-item.active {
  font-weight: 700;
  border-bottom: 3px solid #3a3a3a;
}
.side-menu-item.active a {
  color: #3a3a3a;
}
/* 사이드바 영역 끝 */

/* 사이드바 영역(모바일) 시작 */
.mob-side-menu-container {
  width: 100%;
  position: fixed;
  height: fit-content;
  background-color: #ffffff;
  z-index: 9;
  bottom: -100%;
  display: none;
  transition: all 500ms ease-in-out;
  padding: 1rem;
}
.mob-side-menu-container.open {
  bottom: 100px;
}

.mob-side-menu-item-wrap {
  padding: 2rem 1rem 2rem 1rem;
  width: 100%;
  height: auto;
  max-height: 50vh;
  overflow-y: scroll;
}
.mob-side-menu-item {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  padding-bottom: 20px;
  color: #6d6d6d;
  border-bottom: 1px solid #6d6d6d;
  cursor: pointer;
  transition: all 500ms ease-in-out;
}

/* 사이드바 영역(모바일) 끝 */

/* 본문 영역 시작 */
.body-text-wrap {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  position: relative;
  height: 100%;
}
.text-content-wrap {
  width: 960px;
  max-width: 960px;
  overflow-x: hidden;
}
.article-body-container p {
  font-size: var(--KNOC-article-text-font-size);
  line-height: 1.875;
}
/* 본문 영역 끝 */
/* 콘텐츠 내용 끝 */

/* 연관콘텐츠 영역 시작 */
/* 연관콘텐츠 카드 시작 */
.related-article-wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-bottom: 80px;
}
.relative-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.r-article-thumbnail {
  height: 150px;
  background-color: rgb(74, 109, 139);
  margin-bottom: 20px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.r-article-thumbnail img {
  width: 100%;
}
.r-category,
.r-title {
  display: block;
}
.r-category {
  font-size: 1rem;
}
.r-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.relative-card:nth-child(2) .r-article-thumbnail {
  background-image: url(https://www.knoc.co.kr/upload/EBOOK/sabo/204/images/visual/s1_1_visual.jpg);
}

.relative-card:nth-child(4) .r-article-thumbnail {
  background-image: url(https://www.knoc.co.kr/upload/EBOOK/sabo/204/images/main/cont2-wrap3-6.png);
}

/* 연관콘텐츠 카드 끝 */
/* 연관콘텐츠 영역 끝 */

.content-title h5 {
  font-size: 1.5rem;
  font-weight: 700;
}
.caption {
  font-size: 1.1rem;
  color: #777;
  padding-top: 20px;
  display: inline-block;
}

/* 콘텐츠용 기본 이미지 프레임 */
.content_image {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 70px;
  /* box-shadow: 0px 10px 26px -3px rgba(0, 0, 0, 0.2); */
}

.content_image img {
  width: 100%;
}

/* 플래시카드 시작 */
.cardContainer {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;

  /*depth of the elements */
  -webkit-perspective: 800px;
  -moz-perspective: 800px;
  -o-perspective: 800px;
  perspective: 800px;

  /*border: 1px solid #ff0000;*/
  padding-left: 1%;
}
.body-cards-wrap {
  background-color: #d8cc9e;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.row {
  display: flex;
  flex-direction: row;
}
.cardContainer {
  width: 100%;
}
.cardWrapper {
  width: 100%;
}
.card {
  width: 99%;
  height: 200px;
  cursor: pointer;

  /*transition effects */
  -webkit-transition: -webkit-transform 0.6s;
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.card.flipped {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.card .front,
.card .back {
  display: flex;
  height: 100%;
  width: 100%;

  color: white;
  text-align: center;
  font-size: 4em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 3px 5px 20px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16),
    0 2px 5px rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 2px 5px rgba(0, 0, 0, 0.26);
}

.card .back {
  width: 100%;
  padding-left: 3%;
  padding-right: 3%;
  font-size: 16px;
  text-align: left;
  line-height: 25px;
}

.card .back {
  background: #03446a;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/*Colors for front and back applied here*/
.cardContainer:first-child .card .front {
  background: #456a7a;
}

.cardContainer:first-child .card .back {
  background: #456a7a;
}

.cardContainer:nth-child(2) .card .front {
  background: #988a73;
}
.cardContainer:nth-child(2) .card .back {
  background: #988a73;
}

.cardContainer:nth-child(3) .card .front {
  background: #5e4d2a;
}
.cardContainer:nth-child(3) .card .back {
  background: #5e4d2a;
}

h3.cardTitle {
  line-height: 1.2em;
  font-weight: 600;
  font-size: 1.5rem;
}
.content h3.cardTitle {
  margin-top: 0%;
}

.content {
  padding: 4%;
  font-weight: 100;
  text-align: left;
  font-weight: bold;
}

.card-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.cards-title {
  font-size: 2rem;
  font-family: var(--KNOC-main-h2-font-family);
  font-weight: 700;
}
.title-img img {
  width: 30%;
}

/* 플래시카드 끝 */

/* 단 나누기 */
/* 1:1 */
.half-text-container {
  display: flex;
  gap: 1.5rem;
}

.horizontal-text-container {
  display: flex;
  overflow: hidden;
  gap: 1.5rem;
}
.half-text-container .content_image {
  flex: 1;
  overflow: hidden;
}
.half-text-container .text-part {
  flex: 1;
}
.half-pic-container {
  display: flex;
  gap: 0.9rem;
}
.pic-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.pic-wrap {
  display: flex;
  width: fit-content;
  gap: 1.5rem;
}
.half-pic-container .content_image {
  width: auto;
}

.third-text-container {
  display: flex;
  gap: 1.5rem;
}
.third-text-container .content_image {
  flex: 0.5;
  overflow: hidden;
}
.third-text-container .text-part {
  flex: 1.5;
}

/* 아이콘 - 텍스트 나란히 배치 */
.icon-text-container {
  display: flex;
  width: 100%;
  gap: 1.5rem;
}
.icon-text-container > .content_image {
  width: 10%;
}
.icon-text-container > .text-part {
  width: 90%;
}

.ai-item-title {
  font-size: 1.5rem;
  font-family: Pretendard-Bold sans-serif;
}
.ai-item-list li {
  list-style: disc;
  font-size: var(--KNOC-article-text-font-size);
  font-family: var(--KNOC-article-text-font-family);
  line-height: 1.875;
  margin-left: 20px;
}
.ai-item-list li b,
.bolder {
  font-weight: 700;
  font-family: Pretendard-Bold sans-serif;
}

/* 점선 프레임 */
.dot-frame {
  border: 2px dashed #777;
  padding: 40px;
  margin-bottom: 40px;
}
.highlight {
  background-color: rgba(213, 247, 90, 0.333);
  font-size: 1.25rem;
}
.dot-list {
  padding-left: 0;
  margin-left: 20px;
}
.dot-list li {
  list-style: disc;
}

/* 작은 제목들 꾸며주는 거 */
.content-subtitle {
  padding: 10px 20px;
  background-color: #03446a;
  color: white;
  display: inline-block;
  font-weight: 700;
  font-size: var(--KNOC-article-text-font-size);
  border-radius: 40px;
  margin-bottom: 1.25rem;
}

.quote {
  color: #6d6d6d;
}
.underline {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  text-decoration-color: #9e9e9e;
}

/* 원형 타이틀 */
.rounded-title {
  padding: 0.6rem 1.25rem;
  background-color: #03446a;
  width: 50%;
  border-radius: 3rem;
  margin: 0 auto;
  text-align: center;
}

.interview-answer-container {
  display: flex;
  gap: 20px;
}
.interviewee-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1.5;
}
.profile-img {
  width: 100%;
  transform: scale(-1, 1);
}
.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #03446a;
}
.interview-answer-container p {
  flex: 8.5;
}
.rounded-title p {
  color: white;
  font-weight: 700;
}
#event a,
#event .rounded-title {
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
#event a:hover .rounded-title {
  background-color: white;

  border: 1px solid #03446a;
}
#event a:hover .rounded-title p {
  color: #03446a;
}
.temp-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.challenge-results-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
}
.challenge-results-wrap .content_image {
  width: 20%;
}

/* 위로, 공유하기 버튼 */
.sidebtn-wrap {
  position: fixed;
  bottom: 100px;
  right: 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.sidebtn-wrap a:visited {
  color: #3a3a3a;
}
.quickmenu-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-btn-long {
  padding: 10px;
  border-radius: 15px;
  text-align: center;
}
.side-btn-long a,
.side-btn-long a:link,
.side-btn-long a:visited,
.side-btn-long a:active {
  color: #3a3a3a;
}
#subscribe {
  background-color: #c3e0ff;
}
#kakao {
  background-color: #ffe812;
}
#quiz {
  background-image: url(../../images/common/event2-side-bg.jpg);
  background-position: center;
}
#quiz p {
  color: rgb(54, 39, 39);
}
.side-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  transition: all 500ms ease-in-out;
  cursor: pointer;
}
.side-btn:hover {
  transform: scale(1.1);
}
.side-btn:nth-child(1) {
  margin-bottom: 20px;
}
.side-btn img {
  width: 60%;
}
/* 사이드메뉴 토글 버튼. pc버전에서는 안 보이게. */
#btn-content-list {
  display: none;
  position: absolute;
}
#btn-content-list.side-btn.open img {
}
.btn-ico {
  position: absolute;
}
#ico-bar {
  display: block;
}

#ico-x {
  display: none;
}

#btn-content-list.side-btn.open #ico-bar {
  display: none;
}
#btn-content-list.side-btn.open #ico-x {
  display: block;
}

#quiz-award.winner-list {
  grid-template-columns: repeat(4, 1fr);
}

.winner-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.winner-info {
  margin-bottom: 20px !important;
}
.colored-box {
  background-color: #f0f3f5;
  padding: 1.25rem;
}
/* 코너별 */
/* 1. KNOC은 지금 */
.letter-container {
  background-color: #f4f0e0;
  width: 100%;
}
.letter-line-wrap {
  width: 100%;
}
.letter-line-wrap img {
  width: 100%;
}
.letter-wrap {
  padding: 0 3rem;
}
.letter-title h5 {
  font-family: "ChosunCentennial";
  text-align: center;
  font-size: 2.5rem !important;
}
/* 2. 이슈1 */
#issue1.grid-container {
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: auto repeat(4, 1fr);
}
.text-underline-gray {
  position: relative;
}
.text-underline-gray::after {
  position: relative;
  content: "";
  width: 100%;
  height: 10px;
  background: #dedede;
  position: absolute;
  display: inline-block;
  left: 0;
  bottom: 1px;
  z-index: -1;
}
.text-highlight-gray {
  background-color: #d3d3d3;
  font-weight: 700;
  padding: 5px;
}
.text-underline-lime {
  position: relative;
}
.text-underline-lime::after {
  position: relative;
  content: "";
  width: 100%;
  height: 10px;
  background: #d2ffaa;
  position: absolute;
  display: inline-block;
  left: 0;
  bottom: 1px;
  z-index: -1;
}
.text-highlight-lime {
  background-color: #d2ffaa;
  font-weight: 700;
  padding: 5px;
}

/* 7. 스페셜이슈 */
.special-grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(1, auto) repeat(10, 1fr);
  font-size: var(--KNOC-article-text-font-size);
}
.special-grid-container .grid-head {
  grid-column: span 2;
  border-right: 3px solid white;
}
/* 10. ai+knoc */
.list-title {
  margin-bottom: 20px;
}
.aiknoc.dot-frame {
}
.aiknoc.dot-frame ol > li {
  list-style-type: decimal;
}
.aiknoc.dot-frame ol > li::marker {
  list-style-type: decimal;
  font-size: var(--KNOC-article-text-font-size);
}
.aiknoc.dot-frame ul {
  padding-left: 0;
  margin-left: 0;
}
.aiknoc.dot-frame ul > li {
  font-size: 1rem;
  list-style: disc;
  line-height: 1.875;
  margin-bottom: 20px;
  margin-left: 18px;
}

/* 14. 멘토인터뷰 */
#mentorInterview.side-menu-item-wrap {
  overflow-y: scroll;
  height: 600px;
}

.green {
  background-color: #ebffe0;
}
.skyblue {
  background-color: #daf0ff;
}

.special-grid-container .grid-item:nth-child(2n + 1) {
  border-right: 3px solid white;
}

.special-grid-container .grid-item:nth-child(6n) {
  border-right: 0 !important;
}
.special-grid-container2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, auto) repeat(10, 1fr);
  font-size: var(--KNOC-article-text-font-size);
}
.special-grid-container2 .grid-item:nth-child(2n + 1) {
  border-right: 1px solid #3a3a3a;
}
.special-grid-container3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr) repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.special-grid-container3 .grid-item:nth-child(2),
.special-grid-container3 .grid-item:nth-child(3) {
  border-top: 1px solid #3a3a3a;
}
.special-grid-container3 .grid-item:nth-child(2),
.special-grid-container3 .grid-item:nth-child(5) {
  border-right: 1px solid #3a3a3a;
}
.special-grid-container3 .grid-head:nth-child(1) {
  border-bottom: 1px solid white;
}

#footer_wrap {
  width: 100%;
  background-color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 20px;
}
.footer-info {
  color: white;
  line-height: 40px;
}
.footer-logo {
  width: 150px;
}
.footer-logo img {
  width: 100%;
}

#btn-unsubscribe {
  background-color: #5c7bad;
}
#btn-unsubscribe a {
  color: white;
}
a#btn-unsubscribe:link {
  color: white;
}
.btn-subbuttons {
  appearance: button;
  background-image: none;
  border: 1px solid var(--color-theme);
  border-radius: 4px;
  box-shadow: #fff 4px 4px 0 0, #000 4px 4px 0 1px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  overflow: visible;
  padding: 12px 50px;
  text-align: center;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.btn-subbuttons :focus {
  text-decoration: none;
}

#btn-unsubscribe:hover {
  background-color: rgb(56, 63, 141);
  color: #777;
}

.btn-subbuttons :active {
  box-shadow: rgba(0, 0, 0, 0.125) 0 3px 5px inset;
  outline: 0;
}

.btn-subbuttons :not([disabled]):active {
  box-shadow: #fff 2px 2px 0 0, #000 2px 2px 0 1px;
  transform: translate(2px, 2px);
}
#event .text-part {
  text-align: center;
}

/* 모바일 */
@media all and (max-width: 768px) {
  .sidebtn-wrap {
    bottom: 50px;
  }
  .side-btn {
    width: 30px;
    height: 30px;
  }
  .side-btn-long {
    padding: 5px;
    font-size: 0.8rem;
    border-radius: 5px;
  }
  .side-btn-long img {
    width: 30px;
    height: 30px;
  }
  .article-header-container {
    background-position: center center;
  }
  .article-body-container {
    padding-top: 2em;
    padding-left: 2em;
    padding-right: 2em;
  }
  .body-text-wrap {
    flex-direction: column;
  }
  .text-content-wrap {
    width: 100%;
  }
  .half-text-container {
    flex-direction: column;
  }
  .icon-text-container {
    flex-direction: column;
  }
  .side-menu-container {
    display: none;
  }
  .mob-side-menu-container {
    display: block;
  }

  .sidebtn-wrap {
    width: 100%;
    background-color: white;
    height: fit-content;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    padding: 0.95rem 0;
    right: 0;
  }
  .side-btn-long a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tac {
    text-align: left;
    width: fit-content;
  }

  .tools-wrap {
    display: flex;
  }
  .quickmenu-wrap {
    flex-direction: row;
  }
  .side-btn {
    box-shadow: unset;
  }
  .side-btn img {
    width: 40%;
  }
  .side-btn:nth-child(1) {
    margin-bottom: 0;
  }
  #btn-content-list {
    display: flex;
  }
  #btn-content-list img {
    width: 40%;
  }
  .content_image {
    margin-bottom: 20px;
  }
  .icon-text-container {
    gap: 0.9rem;
  }
  .icon-text-container > .content_image {
    width: 30%;
  }
  .mob-centered .text-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .body-lead-wrap {
    padding: 2rem;
    margin-bottom: 40px;
  }
  .grid-container {
    grid-template-columns: 2fr 4fr 4fr;
  }
  .grid-item {
    padding: 0.45rem;
  }
  .annotation-wrap .caption {
    padding-top: 0;
  }
  .row {
    flex-direction: column;
  }
  .body-cards-wrap {
    padding: 1em;
  }
  .cardContainer {
    padding: 1rem;
  }
  .front {
    padding: 1em;
  }

  h3.cardTitle {
    font-size: 1.2rem;
  }
  .related-article-wrap {
    flex-direction: column;
  }
  .r-title {
    font-size: 0.95rem;
  }
  .content-title h5 {
    font-size: 0.95rem;
    line-height: 1.875;
  }
  .caption {
    font-size: 0.8rem;
  }
  .interview-answer-container {
    /* flex-direction: column; */
  }
  .highlight {
    background-color: rgba(213, 247, 90, 0.333);
    font-size: 0.9rem;
  }
  .scroll {
    width: 30px;
    height: 30px;
    &::before {
      top: 4px;
      left: 7px;
      width: 10px;
      height: 10px;
    }
  }
  .dot-frame {
    padding: 20px;
  }
  .article-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  .article-subtitle {
    font-size: 1.25rem;
  }
  .article-writer {
    font-size: 0.95rem;
  }
  .cards-title {
    font-size: 1.25rem;
  }
  #footer_wrap {
    flex-direction: column;
    width: unset;
  }

  .horizontal-text-container {
    flex-direction: column;
  }
  .footer-info {
    line-height: 1.8rem;
    text-align: center;
  }
  .event-header {
    background-image: url("../../images/sub/sub16/header-mob.jpg") !important;
  }
}
