@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Noto Sans TC", "Noto Sans SC", sans-serif;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", "Noto Sans SC", sans-serif;
  font-size: 14px;
  color: #4b4b4b;
  background: linear-gradient(
    115deg,
    rgba(229, 237, 247, 0.3),
    rgba(197, 215, 236, 0.4),
    rgba(184, 207, 232, 0.5)
  );
  min-height: 100vh;
}

body.site-no-copy {
  -webkit-user-select: none;
  user-select: none;
}

body.site-no-copy input,
body.site-no-copy textarea,
body.site-no-copy select {
  -webkit-user-select: text;
  user-select: text;
}

header {
  display: flex;
  gap: 10px;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: space-between;
  background-color: #fff;
  align-items: center;
  width: 100%;
  padding: 10px 150px;
  z-index: 5;
  border-bottom: 1px solid #d9d9d9;
}

header .header__title {
  color: #4b4b4b;
}

header .header__brand {
  color: #4b4b4b;
  display: flex;
  align-items: center;
  text-decoration: none;
}

header .header__title a,
header .header__brand {
  color: #4b4b4b;
  display: flex;
  align-items: center;
  text-decoration: none;
}

header .header__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

header .header__brand-title {
  font-size: 18px;
  font-weight: 500;
  color: #002f94;
}

header .header__brand-subtitle {
  font-size: 11px;
  font-weight: 400;
  color: #646464;
  letter-spacing: 0.01em;
}

header .header__title a img,
header .header__brand img {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

header .header__container {
  display: flex;
  gap: 24px;
  align-items: center;
}

header .header__price {
  font-size: 14px;
  color: #3d3d3d;
  padding: 8px 16px;
  border: 1px solid #0d40c3;
  border-radius: 4px;
  background: #edf2fe;
}

header .header__price strong {
  color: #002f94;
  font-size: 18px;
}

header .header__locale {
  display: flex;
  gap: 8px;
  align-items: center;
}

header .locale-btn {
  width: auto;
  height: 35px;
  padding: 8px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  color: #4b4b4b;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

header .locale-btn:hover {
  color: #002f94;
  border-color: #0d40c3;
}

header .locale-btn--active {
  color: #002f94;
  border-color: #0d40c3;
  background-color: #edf2fe;
  pointer-events: none;
}

body.locale-sc,
body.locale-sc * {
  font-family: "Noto Sans SC", "Noto Sans TC", sans-serif;
}

main {
  display: block;
  padding: 100px 150px 48px;
  min-height: calc(100vh - 80px);
}

.es-page-query {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.entry-tab-menu {
  display: flex;
  text-align: left;
  align-items: flex-start;
  margin: 16px;
  width: 100%;
  max-width: 960px;
  font-size: 20px;
  padding-left: 36px;
}

.entry-tab-menu--main {
  padding-left: 0;
  margin-bottom: 8px;
}

.entry-tab-menu--main ul li a.active {
  border-bottom: 2px solid #002f94;
  padding-bottom: 4px;
}

.entry-tab-menu--sub {
  font-size: 18px;
  padding-left: 0;
  margin-top: 0;
}

.entry-tab-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.entry-tab-menu ul li a {
  color: #646464;
  text-decoration: none;
}

.entry-tab-menu ul li a:hover {
  color: #000;
}

.entry-tab-menu ul li a.active {
  color: #002f94;
  font-weight: 500;
}

#search-form {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.es-container {
  background: #fff;
  display: flex;
  border-radius: 40px;
  min-height: 88px;
  width: 100%;
  position: relative;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 18px 80px 18px 18px;
  align-items: normal;
  overflow: hidden;
  border: 1px solid #dedede;
}

.es-container--secondary {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.es-semester {
  border-right: 1px solid #d9d9d9;
  padding: 0 16px;
  width: 220px;
  flex-shrink: 0;
}

.es-semester label,
.es-dept label {
  color: #3d3d3d;
  display: block;
  margin-bottom: 4px;
}

.es-semester select,
.es-dept select {
  font-size: 20px;
  padding: 8px 0;
  display: block;
  width: 100%;
  border: none;
  box-shadow: none;
  background-color: transparent;
  appearance: none;
  color: #2d2d2d;
}

.es-semester select:focus,
.es-dept select:focus {
  outline: none;
}

.es-dept {
  padding: 0 16px;
  width: 100%;
}

.ic-search {
  background: #1f50ad;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  text-align: center;
  align-items: center;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -24px;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease;
}

.ic-search:hover {
  background: #002f94;
}

.ic-search img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
}

.select-info-notice {
  margin-block: 36px;
  background-color: rgba(229, 77, 22, 0.15);
  padding: 16px 36px;
  border-radius: 38px;
  width: 100%;
  max-width: 960px;
}

.select-info-notice h3 {
  color: #4b4b4b;
  margin: 0 0 8px;
  font-size: 16px;
}

.select-info-notice ul {
  margin: 0;
  padding: 0;
}

.select-info-notice ul li {
  color: rgb(229, 77, 22);
  list-style-type: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}

.select-info-notice ul li:last-child {
  margin-bottom: 0;
}

.icon-alert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgb(229, 77, 22);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.result-panel {
  width: 100%;
  max-width: 960px;
  margin-top: 24px;
}

.totcrd-result-title h1,
.totcrd-result-title h2 {
  font-size: 24px;
  text-align: left;
  color: #002f94;
  margin: 0 0 8px;
}

.totcrd-result-title h3 {
  font-size: 16px;
  font-weight: normal;
  color: #646464;
  margin: 0;
}

.totcrd-table {
  background: #fff;
  border-radius: 20px;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #d9d9d9;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  background: #edf2fe;
  border: 1px solid #e4e4e7;
  padding: 12px 8px;
  color: #3a5ccc;
  font-weight: 500;
}

table td {
  border: 1px solid #e4e4e7;
  padding: 12px 8px;
  text-align: center;
  color: #3d3d3d;
}

.query-result-table th {
  width: 33%;
}

.price-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #0d40c3;
  border-radius: 8px;
  padding: 16px 24px;
  color: #002f94;
}

.price-summary strong {
  font-size: 28px;
}

#predict-section,
#mbti-section {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mbti-page {
  max-width: 960px;
}

.mbti-intro h1 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #002f94;
  font-weight: 500;
}

.mbti-intro {
  background: #fff;
  border-radius: 20px;
  padding: 24px 32px;
  margin-bottom: 16px;
  border: 1px solid #dedede;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.mbti-intro h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #002f94;
  font-weight: 500;
}

.mbti-intro p {
  margin: 0;
  color: #646464;
  line-height: 1.6;
}

.mbti-intro p + p {
  margin-top: 12px;
}

.type16-disclaimer {
  font-size: 13px;
  color: #888;
}

.type16-api-source {
  margin: 0 0 8px;
  font-size: 13px;
  color: #888;
}

.mbti-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #dedede;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
}

.mbti-progress {
  margin-bottom: 24px;
}

.mbti-progress span {
  display: block;
  margin-bottom: 8px;
  color: #646464;
  font-size: 14px;
}

.mbti-progress-track {
  height: 6px;
  background: #edf2fe;
  border-radius: 3px;
  overflow: hidden;
}

.mbti-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1f50ad, #002f94);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.mbti-question {
  font-size: 20px;
  color: #2d2d2d;
  line-height: 1.6;
  margin: 0 0 24px;
  min-height: 64px;
}

.mbti-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.mbti-option {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background: #fff;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.mbti-option:hover {
  border-color: #0d40c3;
  background: #edf2fe;
  color: #002f94;
}

.mbti-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mbti-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
}

.mbti-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mbti-btn--ghost {
  background: #fff;
  border-color: #d9d9d9;
  color: #4b4b4b;
}

.mbti-btn--ghost:hover:not(:disabled) {
  border-color: #0d40c3;
  color: #002f94;
}

.mbti-btn--primary {
  background: #002f94;
  color: #fff;
  border-color: #002f94;
}

.mbti-btn--primary:hover {
  background: #1f50ad;
}

.mbti-result-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.mbti-type-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 72px;
  padding: 0 12px;
  border-radius: 16px;
  background: #002f94;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.mbti-result-header h2 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #646464;
  font-weight: normal;
}

.mbti-type-name {
  margin: 0;
  font-size: 24px;
  color: #002f94;
  font-weight: 500;
}

.mbti-result-block {
  margin-bottom: 20px;
}

.mbti-result-block h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #3a5ccc;
  font-weight: 500;
}

.mbti-result-block p {
  margin: 0;
  line-height: 1.7;
  color: #3d3d3d;
}

.mbti-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.mbti-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mbti-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #e4e4e7;
  color: #3d3d3d;
}

.mbti-list li:last-child {
  border-bottom: none;
}

.mbti-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #edf2fe;
  color: #002f94;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.mbti-tag {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 4px;
  background: #ffe199;
  color: #2d2d2d;
  font-size: 12px;
  white-space: nowrap;
}

.mbti-list--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mbti-list--tags li {
  padding: 8px 14px;
  border: 1px solid #0d40c3;
  border-radius: 20px;
  background: #edf2fe;
  color: #002f94;
  border-bottom: none;
}

.convert-page {
  max-width: 1200px;
  position: relative;
}

.convert-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: #002f94;
  font-size: 14px;
}

.convert-toolbar {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  margin-bottom: 16px;
}

.convert-table-wrap {
  overflow-x: auto;
}

.convert-page-table th,
.convert-page-table td {
  font-size: 13px;
}

.convert-page-table .convert-name-cell {
  text-align: left;
  max-width: 320px;
}

.convert-row {
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.convert-row:hover,
.convert-row--active {
  background: #edf2fe;
}

.convert-empty {
  padding: 24px;
  color: #646464;
}

.convert-detail-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.convert-detail-name {
  margin: 0 0 6px;
  color: #002f94;
  font-size: 18px;
  font-weight: 500;
}

.convert-meta-inline {
  margin: 0 0 16px;
  color: #3d3d3d;
}

.convert-source-link {
  display: inline-block;
  margin-top: 16px;
  color: #002f94;
  text-decoration: none;
}

.convert-source-link:hover {
  text-decoration: underline;
}

header .header__back {
  color: #002f94;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid #0d40c3;
  border-radius: 4px;
}

header .header__back:hover {
  background: #edf2fe;
}

.convert-anchor {
  height: 0;
}
  background: #fff;
  border-radius: 20px;
  padding: 24px 32px;
  margin-bottom: 16px;
  border: 1px solid #dedede;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.convert-intro h1,
.convert-intro h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #002f94;
  font-weight: 500;
}

.convert-intro p {
  margin: 0;
  color: #646464;
  line-height: 1.6;
}

.convert-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #dedede;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
  margin-bottom: 16px;
}

.convert-filters {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.convert-field label {
  display: block;
  margin-bottom: 6px;
  color: #3d3d3d;
}

.convert-field select,
.convert-custom-row input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 16px;
  color: #2d2d2d;
  background: #fff;
}

.convert-program-info {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #f6f9ff;
  border: 1px solid #d9e4ff;
}

.convert-program-meta {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.convert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #002f94;
  color: #fff;
  font-weight: 700;
}

.convert-program-meta h3 {
  margin: 0 0 6px;
  color: #002f94;
  font-size: 20px;
}

.convert-program-meta p {
  margin: 0;
  color: #646464;
}

.convert-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 180px));
  gap: 16px;
  margin-bottom: 12px;
}

.convert-meta-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.convert-meta-grid span {
  color: #646464;
  font-size: 13px;
}

.convert-meta-grid strong {
  color: #002f94;
  font-size: 24px;
}

.convert-note,
.convert-formula {
  margin: 8px 0 0;
  color: #3d3d3d;
  line-height: 1.6;
}

.convert-formula {
  color: #002f94;
  font-weight: 500;
}

.convert-table th:last-child,
.convert-table td:last-child {
  width: 34%;
}

.convert-score {
  color: #002f94;
  font-size: 18px;
}

.convert-formula-cell {
  font-size: 13px;
  color: #646464;
  text-align: left;
}

.convert-ip-notice {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f5f8ff;
  border: 1px solid #d6e0f5;
  color: #4a5568;
  font-size: 13px;
  line-height: 1.6;
}

.convert-protected {
  -webkit-user-select: none;
  user-select: none;
}

.convert-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  font-size: 48px;
  font-weight: 700;
  color: #002f94;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-18deg);
  z-index: 1;
}

.convert-domain-warning {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff4f4;
  border: 1px solid #f0caca;
  color: #a94442;
  font-size: 13px;
}

.convert-backup-page {
  max-width: 1200px;
}

.convert-backup-general {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f5f8ff;
  border: 1px solid #d6e0f5;
  color: #002f94;
  font-weight: 500;
  line-height: 1.6;
}

.convert-backup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.convert-backup-status {
  color: #646464;
  font-size: 13px;
}

.convert-backup-list {
  display: grid;
  gap: 16px;
}

.convert-backup-card h2 {
  margin: 0 0 12px;
  font-size: 16px;
  color: #002f94;
  font-weight: 500;
}

.convert-backup-card__body p {
  margin: 0 0 6px;
  color: #3d3d3d;
  line-height: 1.6;
  font-size: 14px;
  word-break: break-word;
}

.convert-backup-card__body p:last-child {
  margin-bottom: 0;
}

.convert-backup-link-wrap {
  margin: 12px 0 0;
}

.convert-backup-link {
  color: #002f94;
  font-size: 14px;
  text-decoration: underline;
}

.convert-backup-link:hover {
  color: #001f66;
}

.convert-subnav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.convert-subnav__link {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #d6e0f5;
  background: #fff;
  color: #002f94;
  font-size: 13px;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.convert-subnav__link:hover {
  background: #f5f8ff;
}

.convert-subnav__link--active {
  background: #002f94;
  border-color: #002f94;
  color: #fff;
}

.convert-reverse-input {
  margin-bottom: 16px;
}

.convert-reverse-input label {
  display: block;
  margin-bottom: 10px;
  color: #3d3d3d;
  font-weight: 500;
}

.convert-reverse-meta {
  margin: 16px 0;
}

.convert-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: #f0f0f0;
  color: #646464;
}

.convert-status--good {
  background: #e8f5e9;
  color: #2e7d32;
}

.convert-status--mid {
  background: #fff8e1;
  color: #f57f17;
}

.convert-status--low {
  background: #ffebee;
  color: #c62828;
}

@media print {
  header,
  footer,
  .convert-backup-actions,
  .convert-toolbar {
    display: none !important;
  }

  main {
    padding-top: 24px !important;
  }

  .convert-backup-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

.convert-custom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e4e4e7;
}

.convert-custom label {
  display: block;
  margin-bottom: 10px;
  color: #3d3d3d;
}

.convert-custom-row {
  display: flex;
  gap: 12px;
  max-width: 420px;
}

.convert-custom-result {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: #edf2fe;
  color: #002f94;
}

.convert-custom-result strong {
  font-size: 20px;
}

.convert-custom-result p {
  margin: 8px 0 0;
}

.convert-demo {
  background: #fff;
  border-radius: 20px;
  padding: 24px 32px;
  border: 1px solid #dedede;
}

.convert-demo h3 {
  margin: 0 0 8px;
  color: #002f94;
}

.convert-demo p {
  margin: 0 0 16px;
  color: #646464;
  line-height: 1.6;
}

.convert-demo img {
  width: 100%;
  max-width: 720px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
}

footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 150px;
  gap: 16px;
  background-color: #fff;
  justify-content: center;
  border-top: 1px solid #d9d9d9;
}

footer .footer__catalog {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 12px 0 4px;
  border-bottom: 1px solid #e4e4e7;
}

footer .footer__catalog a {
  color: #002f94;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

footer .footer__catalog a:hover {
  text-decoration: underline;
  color: #0d40c3;
}

footer .footer__divider {
  color: #d9d9d9;
  user-select: none;
}

footer .footer__copyright-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}

footer .footer__ntu {
  display: flex;
  gap: 16px;
  font-size: 16px;
  color: #6f6f6f;
}

footer .footer__ntu a {
  color: #6f6f6f;
  text-decoration: none;
}

footer .footer__ntu a:hover {
  color: #002f94;
}

footer .footer__copyright-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  color: #6f6f6f;
  font-size: 13px;
}

@media (max-width: 1140px) and (min-width: 769px) {
  header,
  main,
  footer {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  header .header__container {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  main {
    padding: 180px 16px 48px;
  }

  .entry-tab-menu {
    padding-left: 0;
  }

  .entry-tab-menu ul {
    flex-direction: column;
    gap: 12px;
  }

  .es-container {
    flex-direction: column;
    border-radius: 20px;
    padding: 18px;
  }

  .es-semester {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .ic-search {
    position: static;
    margin: 12px auto 0;
    transform: none;
  }

  .select-info-notice {
    padding: 16px;
    border-radius: 20px;
  }

  footer {
    padding: 10px 15px;
  }

  footer .footer__catalog {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0 8px;
  }

  footer .footer__divider {
    display: none;
  }

  .mbti-card {
    padding: 20px;
  }

  .mbti-result-grid {
    grid-template-columns: 1fr;
  }

  .mbti-result-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .convert-filters {
    grid-template-columns: 1fr;
  }

  .convert-card,
  .convert-demo {
    padding: 20px;
  }

  .convert-custom-row {
    flex-direction: column;
    max-width: none;
  }

  .convert-toolbar {
    grid-template-columns: 1fr;
  }

  .convert-table th:last-child,
  .convert-table td:last-child {
    width: auto;
  }
}
