.edu_plan_page {
  padding: 8px 0 40px;
}
.edu_plan_main {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  --edu-plan-side-inset: 24px;
  padding-left: var(--edu-plan-side-inset);
  padding-right: var(--edu-plan-side-inset);
}

/* 상단 컨트롤 패널 */
.edu_plan_control_panel {
  margin-bottom: 20px;
  border: 1px solid #ece6d8;
  border-top: 3px solid #F9B700;
  border-radius: 0 0 12px 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(80, 60, 20, 0.06);
  overflow: hidden;
}
.edu_plan_control_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}
.edu_plan_title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}
.edu_plan_filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px 16px;
}
.edu_plan_filter {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.edu_plan_filter_label {
  font-size: 12px;
  font-weight: 700;
  color: #777;
  letter-spacing: -0.02em;
}
.edu_plan_select {
  min-width: 132px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd5c4;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: #fff;
  transition: border-color 0.15s ease;
}
.edu_plan_select:focus {
  outline: none;
  border-color: #F9B700;
}

/* 월 선택 */
.edu_plan_picker {
  border-top: 1px solid #f0ebe0;
  background: #fff;
}
.edu_plan_picker_col_head {
  padding: 10px 20px 8px;
  font-size: 12px;
  font-weight: 800;
  color: #666;
  letter-spacing: -0.02em;
}
.edu_plan_month_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 0 12px 12px;
}
.edu_plan_picker_cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0;
  padding: 8px 6px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  font-family: 'Noto Sans KR', sans-serif, 'NanumSquareRoundR';
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.edu_plan_month_grid .edu_plan_picker_cell {
  margin: 4px;
}
.edu_plan_picker_cell:hover:not(.is-selected):not(.is-disabled) {
  background: #fff8e6;
  border-color: #f5dfa0;
}
.edu_plan_picker_cell.is-selected {
  background: #F9B700;
  border-color: #F9B700;
  color: #fff;
  box-shadow: 0 2px 8px rgba(249, 183, 0, 0.35);
}

.edu_plan_meta {
  margin-bottom: 18px;
  overflow-x: auto;
}
.edu_plan_meta_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.edu_plan_meta_heading {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #222;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.edu_plan_download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.edu_plan_download_label {
  font-size: 13px;
  font-weight: 700;
  color: #666;
}
.edu_plan_download_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid #e0d2a8;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.edu_plan_download_btn:hover {
  background: #fff8e6;
  border-color: #f5dfa0;
  color: #222;
}
.edu_plan_download_btn.is-locked {
  opacity: 0.72;
  color: #777;
  border-color: #e5e5e5;
  background: #f7f7f7;
}
.edu_plan_download_btn.is-locked:hover {
  background: #f0f0f0;
  border-color: #ddd;
  color: #555;
}
.edu_plan_meta_frame {
  border: 1px solid #e8d49a;
  border-radius: 4px;
  overflow: hidden;
  background: #fffefb;
}
.edu_plan_meta_table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 16px;
}
.edu_plan_meta_table col.col-meta-label {
  width: 10%;
}
.edu_plan_meta_table col.col-meta-val-sm {
  width: 25%;
}
.edu_plan_meta_table col.col-meta-val-lg {
  width: 55%;
}
.edu_plan_meta_table th,
.edu_plan_meta_table td {
  border: 1px solid #e8e8e8;
  padding: 12px 14px;
  word-break: break-word;
  vertical-align: top;
}
.edu_plan_meta_table th {
  background: #f9f9f9;
  color: #f6a000;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.edu_plan_meta_table th[rowspan="2"] {
  text-align: center;
  vertical-align: middle;
  padding-top: 12px;
}
.edu_plan_meta_table td[rowspan="2"] {
  vertical-align: top;
}
.edu_plan_meta_table td {
  background: #fff;
  color: #222;
  line-height: 1.55;
}
.edu_plan_meta_table #edu_plan_meta_target,
.edu_plan_meta_table #edu_plan_meta_theme {
  vertical-align: middle;
}
.edu_plan_meta_table td.is-auto {
  font-weight: 500;
}
.edu_plan_meta_table #edu_plan_meta_expectation {
  white-space: pre-wrap;
  min-height: 94px;
}
.edu_plan_status {
  min-height: 20px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #888;
}
.edu_plan_status.is-error { color: #c0392b; }
.edu_plan_status.is-preparing {
  text-align: center;
  font-weight: bold;
  color: #222;
  font-size: 15px;
  padding: 48px 0;
}

.edu_plan_sheet_wrap {
  border: 1px solid #f0e8d8;
  border-radius: 16px;
  overflow: visible;
  background: #fffdf8;
  box-shadow: 0 8px 28px rgba(80, 60, 20, 0.07);
  padding: 28px 32px 32px;
  box-sizing: border-box;
}
.edu_plan_report {
  padding: 0;
  overflow-anchor: none;
}
.edu_plan_report_doc {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  overflow-anchor: none;
  overscroll-behavior-x: auto;
  overscroll-behavior-y: auto;
}
.edu_plan_report_table--view td.ep-cell--special-carousel {
  padding: 10px 8px;
  overflow: hidden;
  vertical-align: middle;
  background: #fff !important;
}
.edu_plan_report_table--view td.ep-cell--tone-highlight.ep-cell--special-carousel {
  background: #fffdf3 !important;
}
.edu_plan_report_table--view td.ep-cell--tone-prep.ep-cell--special-carousel {
  background: #fffdf7 !important;
}
.edu_plan_report_table--view td.ep-cell--tone-special-data.ep-cell--special-carousel {
  background: #fbf7e8 !important;
}
.edu_plan_special--inline {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.edu_plan_report_table--view td.ep-cell--special-carousel.ep-cell--data {
  padding: 10px 8px;
}
.edu_plan_report_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  font-size: 14px;
  line-height: 1.55;
  color: #222;
}
.edu_plan_report_table--view {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ebe3d6;
  border-radius: 12px;
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
  font-size: 15px;
  line-height: 1.65;
  color: #3a342c;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.edu_plan_report_table td {
  padding: 6px 10px;
  vertical-align: middle;
  text-align: left;
  border: 0;
  word-break: break-word;
}
.edu_plan_report_table--view td {
  padding: 13px 16px;
  border: 1px solid #ebe3d6;
  overflow-anchor: none;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.edu_plan_report_table--view .ep-cell--header {
  background: linear-gradient(180deg, #ffe08a 0%, #ffd45e 100%) !important;
  color: #3d3428 !important;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-align: center !important;
  border-color: #e8d49a !important;
}
.edu_plan_report_table--view .ep-cell--tone-week {
  background: #fff7e6 !important;
  color: #222 !important;
  font-weight: 700;
  text-align: center !important;
  border-color: #ebe3d6 !important;
  word-break: keep-all;
  overflow-wrap: normal;
}
.edu_plan_report_table--view .ep-cell--tone-week-kg {
  background: #fff7e3 !important;
  color: #222 !important;
  font-weight: 700;
  text-align: center !important;
  border-color: #ebe3d6 !important;
  word-break: keep-all;
  overflow-wrap: normal;
}
.edu_plan_report_table--view .ep-cell--tone-highlight {
  background: #fffdf3 !important;
  color: #3a342c;
  font-weight: 600;
  text-align: center !important;
  border-color: #ebe3d6 !important;
}
.edu_plan_report_table--view .ep-cell--tone-highlight.ep-cell--data {
  background: #fffdf3 !important;
  color: #333;
  text-align: left !important;
  font-weight: 400;
}
.edu_plan_report_table--view .ep-cell--tone-highlight.ep-cell--tone-accent {
  color: #f6a000 !important;
}
.edu_plan_report_table--view .ep-cell--label-special-event {
  color: #222 !important;
}
.edu_plan_report_table--view .ep-cell--section-label {
  height: 1px;
  padding: 8px 6px;
  text-align: center !important;
  vertical-align: middle !important;
}
.edu_plan_report_table--view .ep-cell--section-label .ep-cell-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  text-align: center;
  line-height: 1.35;
  word-break: keep-all;
}
.edu_plan_report_table--view .ep-cell--tone-prep {
  background: #fffdf7 !important;
  color: #f6a000;
}
.edu_plan_report_table--view .ep-cell--tone-prep.ep-cell--data {
  background: #fffdf7 !important;
  color: #333;
  text-align: left !important;
  font-weight: 400;
}
.edu_plan_report_table--view .ep-cell--tone-section {
  background: #f4f7fb !important;
  color: #3a342c;
  font-weight: 600;
  text-align: center !important;
  border-color: #e3e8ef !important;
}
.edu_plan_report_table--view .ep-cell--tone-section.ep-cell--data {
  background: #f4f7fb !important;
  color: #333;
  text-align: left !important;
  font-weight: 400;
}
.edu_plan_report_table--view .ep-cell--tone-area {
  background: #fbfcfd !important;
  color: #3a342c;
  font-weight: 600;
  text-align: center !important;
  border-color: #eceff3 !important;
  white-space: nowrap;
}
.edu_plan_report_table--view .ep-cell--tone-prep:not(.ep-cell--data) {
  white-space: nowrap;
}
.edu_plan_report_table--view .ep-cell--tone-area.ep-cell--data {
  background: #ffffff !important;
  color: #333;
  text-align: left !important;
  font-weight: 400;
}
.edu_plan_report_table--view .ep-cell--tone-info {
  background: #eff6ff !important;
  color: #1d4ed8;
  font-weight: 600;
  text-align: center !important;
  border-color: #dbeafe !important;
}
.edu_plan_report_table--view .ep-cell--tone-info.ep-cell--data {
  background: #eff6ff !important;
  color: #333;
  text-align: left !important;
  font-weight: 400;
}
.edu_plan_report_table--view .ep-cell--tone-special-data {
  background: #fbf7e8 !important;
  color: #333;
  text-align: left !important;
  font-weight: 400;
}
.edu_plan_report_table--view .ep-cell--tone-neutral {
  background: #fafafa !important;
  color: #3a342c;
  font-weight: 600;
  text-align: center !important;
  border-color: #ebe3d6 !important;
}
.edu_plan_report_table--view .ep-cell--tone-neutral.ep-cell--data {
  background: #fafafa !important;
  text-align: left !important;
  font-weight: 400;
}
.edu_plan_report_table--view .ep-row--header td {
  text-align: center !important;
}
.edu_plan_report_table--view .ep-cell--label {
  background: #fff8e8 !important;
  color: #5c5346;
  font-weight: 600;
  text-align: center !important;
  border-color: #f0e6d4 !important;
}
.edu_plan_report_table--view .ep-cell--data {
  background: #fff !important;
  color: #333;
  text-align: left !important;
  min-height: 36px;
}
.edu_plan_report_table--view .ep-cell--tone-highlight.ep-cell--data,
.edu_plan_report_table--view .ep-cell--tone-neutral.ep-cell--data,
.edu_plan_report_table--view .ep-cell--tone-week {
  min-height: 36px;
}
.edu_plan_report_table tr:first-child td {
  text-align: center !important;
}
.edu_plan_report_table a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.edu_plan_report_table a:hover {
  color: #8f5c00;
  text-decoration: none;
}
.edu_plan_report_table--view a:hover {
  color: #8f5c00;
}
.edu_plan_cell_link--activity {
  display: inline;
}
.edu_plan_cell_activity {
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 100%;
}
.edu_plan_cell_activities {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}
.edu_plan_cell_activity_line {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  max-width: 100%;
}
.edu_plan_cell_activity_text {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.edu_plan_cell_clip_btn {
  flex: 0 0 auto;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F9B700' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3C/svg%3E") center / contain no-repeat;
  cursor: pointer;
  vertical-align: middle;
}
.edu_plan_cell_clip_btn:hover,
.edu_plan_cell_clip_btn.is-open {
  filter: brightness(0.92);
}
.edu_plan_cell_clip {
  display: none;
}

/* 활동자료 팝업 */
.edu_plan_clip_popover {
  position: fixed;
  z-index: 12050;
  width: min(248px, calc(100vw - 24px));
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(40, 30, 10, 0.18);
  overflow: hidden;
}
.edu_plan_clip_popover.is-wide {
  width: min(248px, calc(100vw - 24px));
}
.edu_plan_clip_popover[hidden] {
  display: none !important;
}
.edu_plan_clip_popover_arrow {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  background: #F9B700;
  transform: rotate(45deg);
  border-radius: 2px;
}
.edu_plan_clip_popover.is-above .edu_plan_clip_popover_arrow {
  top: auto;
  bottom: -8px;
}
.edu_plan_clip_popover_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: #F9B700;
  color: #222;
  font-size: 14px;
  font-weight: 800;
}
.edu_plan_clip_popover_close {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  color: #222;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.edu_plan_clip_popover_close:hover {
  background: rgba(0, 0, 0, 0.14);
}
.edu_plan_clip_popover_body {
  padding: 12px 12px 14px;
  text-align: center;
}
.edu_plan_clip_popover_grid {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  gap: 8px 10px;
  justify-content: center;
  margin-bottom: 10px;
  text-align: center;
}
.edu_plan_clip_popover_item {
  display: block;
  width: 100px;
  color: inherit;
  text-decoration: none;
}
.edu_plan_clip_popover_item:hover {
  color: #8f5c00;
}
.edu_plan_clip_popover_item .edu_plan_clip_popover_thumb {
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 1;
  padding: 6px;
}
.edu_plan_clip_popover_item_name {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.edu_plan_clip_popover_thumb {
  width: 100%;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16 / 10;
  border: 1px solid #e0d9cc;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.edu_plan_clip_popover_thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.edu_plan_clip_popover_thumb.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
}
.edu_plan_clip_popover_title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #222;
  word-break: keep-all;
}
.edu_plan_clip_popover_btn {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: #F9B700;
  color: #222 !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  text-align: center;
  box-sizing: border-box;
}
.edu_plan_clip_popover_btn:hover {
  background: #e5a600;
  color: #222 !important;
}
.edu_plan_clip_popover_loading {
  padding: 20px 12px;
  color: #777;
  font-size: 13px;
}
.edu_plan_empty {
  padding: 48px 24px;
  text-align: center;
  border: 1px dashed #ddd;
  border-radius: 12px;
  background: #fafafa;
}
.edu_plan_empty_sub { margin-top: 8px; color: #777; font-size: 14px; }

/* 스페셜행사 캐러셀 */
.edu_plan_special {
  margin-top: 0;
  padding: 0;
  border-top: 0;
}
.edu_plan_special_inner {
  display: flex;
  align-items: stretch;
  gap: 20px;
  min-width: 0;
}
.edu_plan_special_head {
  flex: 0 0 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 8px;
}
.edu_plan_special_label {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.3;
}
.edu_plan_special_go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}
.edu_plan_special_go:hover {
  background: #333;
  color: #fff;
}
.edu_plan_special_go.is-disabled {
  background: #d8d8d8;
  color: #888;
  cursor: default;
}
.edu_plan_special--inline .edu_plan_special_slider {
  padding: 0 52px;
  box-sizing: border-box;
}
.edu_plan_special_slider {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  padding: 0 52px;
  box-sizing: border-box;
  overflow: hidden;
}
.edu_plan_special_swiper {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.edu_plan_special_swiper .swiper-wrapper {
  align-items: stretch;
}
.edu_plan_special_swiper .swiper-slide {
  width: auto;
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
}
.edu_plan_special_card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.edu_plan_special_card_media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 118px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
}
.edu_plan_special_card_media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.edu_plan_special_card_placeholder {
  width: 100%;
  min-height: 118px;
  background: linear-gradient(135deg, #dfe8f5 0%, #f2ebe3 100%);
}
.edu_plan_special_card_foot {
  display: block;
  min-height: 52px;
  padding: 10px 12px 12px;
}
.edu_plan_special_card_text {
  min-width: 0;
  text-align: center;
}
.edu_plan_special_card_title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: center;
}
.edu_plan_special_card_desc {
  margin: 3px 0 0;
  font-size: 12px;
  color: #777;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: center;
}
.edu_plan_special_slider .edu_plan_special_prev,
.edu_plan_special_slider .edu_plan_special_next {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border: 0;
  border-radius: 50%;
  background: #f9b700 !important;
  background-image: none !important;
  box-shadow: 0 2px 10px rgba(80, 60, 20, 0.18);
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.edu_plan_special_slider .edu_plan_special_prev {
  left: 4px;
}
.edu_plan_special_slider .edu_plan_special_next {
  right: 4px;
}
.edu_plan_special_slider .edu_plan_special_prev::after,
.edu_plan_special_slider .edu_plan_special_next::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  font-family: inherit;
  font-size: 0;
}
.edu_plan_special_slider .edu_plan_special_prev::after {
  margin-left: 3px;
  transform: rotate(-135deg);
}
.edu_plan_special_slider .edu_plan_special_next::after {
  margin-right: 3px;
  transform: rotate(45deg);
}
.edu_plan_special_slider .edu_plan_special_prev:hover,
.edu_plan_special_slider .edu_plan_special_next:hover {
  background: #e5a600 !important;
  box-shadow: 0 3px 12px rgba(80, 60, 20, 0.22);
}
.edu_plan_special_slider .edu_plan_special_prev.swiper-button-disabled,
.edu_plan_special_slider .edu_plan_special_next.swiper-button-disabled {
  background: #f0f0f0 !important;
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
}
.edu_plan_special_slider .edu_plan_special_prev.swiper-button-disabled::after,
.edu_plan_special_slider .edu_plan_special_next.swiper-button-disabled::after {
  border-color: #bbb;
}

.edu_plan_mobile_pc_notice {
  display: none;
}

@media (max-width: 900px) {
  .edu_plan_main {
    --edu-plan-side-inset: 14px;
  }
  .edu_plan_control_header {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .edu_plan_title {
    font-size: 20px;
  }
  .edu_plan_filters {
    width: 100%;
  }
  .edu_plan_filter {
    flex: 1;
    min-width: 0;
  }
  .edu_plan_select {
    width: 100%;
    min-width: 0;
  }
  .edu_plan_month_grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 8px 8px;
  }
  .edu_plan_meta_heading {
    font-size: 20px;
  }
  /* 모바일: 상단 선택·다운로드만 노출, 표/시트는 PC 안내 */
  .edu_plan_meta_frame,
  .edu_plan_sheet_wrap,
  .edu_plan_status,
  .edu_plan_clip_popover {
    display: none !important;
  }
  .edu_plan_mobile_pc_notice {
    display: block;
    margin: 0 0 24px;
    padding: 28px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fafafa;
    text-align: center;
  }
  .edu_plan_mobile_pc_notice_title {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
  }
  .edu_plan_mobile_pc_notice_sub {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.55;
  }
}

@media (max-width: 520px) {
  .edu_plan_month_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
