/* src/main/resources/static/css/academy-info.css */

/* 레이아웃 */
.info-wrap {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

/* 좌측 네비 (fragments/academy_info_nav.html) */
.info-aside {
  width: 180px;
  flex-shrink: 0;
}

.info-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-nav-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.15s ease;
}

.info-nav-list a:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.info-nav-list a.is-active {
  background-color: #16a34a;
  color: #ffffff;
}

/* 우측 본문 */
.info-main {
  flex: 1;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 24px 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.info-header {
  margin-bottom: 20px;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background-color: #ecfdf5;
  color: #15803d;
  margin-bottom: 6px;
}

.info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.info-subtitle {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #6b7280;
}

.info-body {
  margin-top: 12px;
}

/* 공지 목록 */
.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e5e7eb;
}

.notice-item {
  padding: 14px 4px;
  border-bottom: 1px solid #e5e7eb;
}

.notice-title {
  display: block;
  font-size: 0.98rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  margin-bottom: 4px;
}

.notice-title:hover {
  text-decoration: underline;
}

.notice-meta {
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  gap: 8px;
}

.notice-empty {
  padding: 20px 4px;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* 공지 상세 */
.notice-detail-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.notice-separator {
  margin: 16px 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}

.notice-content {
  font-size: 0.95rem;
  color: #111827;
  line-height: 1.6;
  white-space: pre-line;  /* 줄바꿈 개행문자 적용 */
}

.notice-back {
  margin-top: 20px;
}

/* 지도 */
.map-card {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 16px 18px 20px;
}

.map-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.map-desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.map-embed-placeholder {
  border-radius: 10px;
  border: 1px dashed #d1d5db;
  padding: 28px 16px;
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 12px;
}

.map-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  background-color: #16a34a;
  color: #ffffff;
}

/* 공통: 지도 박스 */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  margin: 12px 0 14px;

  position: relative;
  padding-top: 65%;        /* 비율 고정 (원하는 대로 조정 가능) */
}

/* 두 iframe 모두 같은 위치에 겹쳐 놓기 */
.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 기본은 PC용 보여주고 모바일용은 숨김 */
.map-iframe--mobile {
  display: none;
}

/* ✅ 모바일에서만 반대로: PC용 숨기고 모바일용 보여주기 */
@media (max-width: 768px) {
  .map-iframe--pc {
    display: none;
  }
  .map-iframe--mobile {
    display: block;
  }

  /* 필요하면 모바일일 때 비율 조금 더 줄이기 */
  .map-wrapper {
    padding-top: 70%;   /* 세로 높이 줄이고 싶으면 여기 숫자 더 낮춰도 됨 */
  }
}







/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
}

.faq-summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
}

.faq-toggle-icon {
  font-size: 0.8rem;
  color: #6b7280;
}

.faq-answer {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #4b5563;
}

.faq-empty {
  font-size: 0.9rem;
  color: #9ca3af;
}

/* FAQ 관리 영역 (강사용) */
.faq-manage {
  max-width: 720px;
  margin-top: 8px;
  padding: 16px 18px 20px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;   /* 🔹 살짝 다른 배경색 */
}

.faq-manage-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px;
}

.faq-manage-subtitle {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 14px;
}

/* FAQ 내용 + 삭제버튼 한 줄 정렬 */
.faq-body {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

/* 답변은 왼쪽에서 넓게 차지 */
.faq-answer {
  flex: 1;
}

/* 삭제 버튼 영역은 오른쪽 끝 */
.faq-admin-actions {
  flex-shrink: 0;
}

/* 🔹 FAQ 삭제 버튼 (추가 버튼처럼 동글 + 살짝 경고색) */
.btn-faq-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #fecaca;
  background-color: #fee2e2;
  color: #b91c1c;
  cursor: pointer;
}

.btn-faq-delete:hover {
  background-color: #fecaca;
}



.info-error {
  font-size: 0.95rem;
  color: #b91c1c;
}

.map-info {
  margin-bottom: 12px;
}

.map-address {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 4px;
}

.map-desc {
  font-size: 0.9rem;
  color: #6b7280;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  margin: 12px 0 14px;
}

.notice-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.btn-notice-new {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid #16a34a;
  color: #16a34a;
}

.btn-notice-new:hover {
  background-color: #16a34a;
  color: #ffffff;
}

/* =======================
   공지 작성/수정 폼
   ======================= */

.notice-form {
   width: 100%;          /* 카드 안에서 가로 꽉 채우기 */
    max-width: 1000px;    /* 너무 넓어지지 않게 상한만 넉넉하게 */
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.notice-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notice-form-field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
}

.notice-form-field input,
.notice-form-field textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}

.notice-form-field input:focus,
.notice-form-field textarea:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.25);
}

/* 버튼 영역 */
.notice-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}

/* 기본 버튼 스타일 */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

/* 저장 버튼 */
.btn-primary {
  background-color: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #15803d;
  border-color: #15803d;
}

/* 취소 버튼 */
.btn-ghost {
  background-color: #ffffff;
  border-color: #e5e7eb;
  color: #4b5563;
}

.btn-ghost:hover {
  background-color: #f3f4f6;
}

/* 공지 상세 하단 버튼 영역 */
.notice-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.notice-actions-left,
.notice-actions-right {
  display: flex;
  gap: 8px;
}

/* 삭제 버튼 */
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #f97373;
  background-color: #fee2e2;
  color: #b91c1c;
  cursor: pointer;
}

.btn-danger:hover {
  background-color: #fecaca;
}


/* ===== 모바일 레이아웃 전환 ===== */
/* ===== 모바일 레이아웃 전환 ===== */
@media (max-width: 768px){

  /* 2열 flex → 세로 한 줄 (위: 네비, 아래: 내용) */
  .info-wrap{
    flex-direction: column;   /* ✅ 핵심: 가로 → 세로 */
    gap: 8px;
    margin-top: 0px;         /* 살짝 여백 줄이고 싶으면 */
  }

  /* 네비 전체를 가로 폭 100%로 */
  .info-aside{
    width: 100%;
    flex-shrink: 0;
  }

  /* 네비를 가로 탭처럼 나열 */
  .info-nav-list{
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 6px;
    border-bottom: 1px solid #e5e7eb;
  }

  .info-nav-list a{
    flex: 0 0 auto;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.8rem;
  }

  .info-nav-list a.is-active{
    background:#16a34a; /* 초록색 */
    color:#fff;
    font-weight: 600;
  }

  .info-main{
    min-height: auto;
  }

  /* 상단 페이지 제목 크기 줄이기 */
    .info-title {
      font-size: 1.0rem;   /* 기존 1.4rem → 조금 작게 */
    }

    /* 카드 안 공지 제목 크기 줄이기 */
    .notice-title {
      font-size: 0.8rem;   /* 기존 0.98rem → 살짝 줄임 */
    }

    /* 카드 전체 패딩도 살짝 줄이기 (선택) */
      .info-main{
        padding: 18px 16px 24px;
      }

      /* 페이지 제목(info-title)은 그대로 두고,
         그 아래 내용들만 전체적으로 폰트 축소 */
      .info-main .info-subtitle,
      .info-main .notice-list,
      .info-main .notice-item,
      .info-main .notice-meta,
      .info-main .notice-content,
      .info-main .notice-empty {
        font-size: 0.8rem;
      }

      /* 공지 제목(목록에서 각 제목)도 살짝만 줄이기 */
      .info-main .notice-title{
        font-size: 0.9rem;
      }

      /* 상세 페이지 상단 날짜 같은 메타 영역도 조금 더 작게(선택) */
      .info-main .notice-meta span{
        font-size: 0.7rem;
      }

      .info-header {
          margin-bottom: 1px;   /* 기본 20px → 8px 정도로 줄이기 */
       }

       /* 공지 상세의 "목록으로" 버튼만 작게 */
       notice-actions-left .btn-ghost {
       font-size: 0.78rem;      /* 글자 크기 */
       padding: 5px 12px;      /* 버튼 높이/가로 여백 줄이기 */
       border-radius: 999px;   /* 동글동글은 유지 */
      }







}