@charset"utf-8";

/* 추가 강사 소개 박스 */
.more-teacher {
  margin: 40px 0 0;
}

.more-teacher-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 26px;
  background: #f7f8fa;
  border-radius: 10px;

  display: flex;
  align-items: center;
  gap: 18px;
}

/* 아이콘 */
.more-teacher .icon {
  font-size: 28px;
  color: #1c6bd6;
  flex-shrink: 0;
}

/* 텍스트 */
.more-teacher .text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.more-teacher .text p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* 링크 버튼 */
.more-teacher .link {
  margin-left: auto;
}

.more-teacher .link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 10px 16px;
  background: #1c6bd6;
  color: #fff;
  font-size: 14px;
  font-weight: 600;

  border-radius: 6px;
  text-decoration: none;
  transition: all .2s ease;
}

.more-teacher .link a:hover {
  background: #1557b0;
}

/* =====================
   모바일 반응형
===================== */
@media (max-width: 768px) {
  .more-teacher-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .more-teacher .link {
    margin-left: 0;
    width: 100%;
  }

  .more-teacher .link a {
    width: 100%;
    justify-content: center;
  }
}
