:root {
  --cs-bg: #f4f6f9;
  --cs-card: #ffffff;
  --cs-text: #111827;
  --cs-muted: #8a93a3;
  --cs-line: rgba(15, 23, 42, 0.09);
  --cs-blue: #0057ff;
  --cs-dark: #111827;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  background: var(--cs-bg);
  color: var(--cs-text);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.support-page {
  width: 100%;
  min-height: 100vh;
  background: #f4f6f9;
  overflow: hidden;
}

.support-panel {
  display: none;
}

.support-panel.is-active {
  display: block;
  animation: pageIn 0.36s ease both;
}

.page-nav {
  position: sticky;
  top: 112px;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.page-nav .row {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
}

.page-nav .tab {
  height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: #fff;
  color: rgba(17, 24, 39, 0.58);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.page-nav .tab.active {
  border-color: var(--cs-dark);
  background: var(--cs-dark);
  color: #fff;
}

.support-container {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.support-container.small {
  width: min(760px, calc(100% - 40px));
}

.notice-container {
  width: min(860px, calc(100% - 40px));
}

.review-container {
  width: min(760px, calc(100% - 40px));
}

.support-light {
  padding: 74px 0 98px;
  background: #f4f6f9;
}

.inquiry-light {
  padding-top: 76px;
}

.support-hero {
  position: relative;
  height: 165px;
  min-height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.notice-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    url("/assets/img/support-notice-hero.jpg") center / cover no-repeat;
}

.faq-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/assets/img/support-qna-hero.jpg") center / cover no-repeat;
}

.event-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    url("/assets/img/support-event-hero.jpg") center / cover no-repeat;
}

.reviews-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    url("/assets/img/support-review-hero.jpg") center / cover no-repeat;
}

.support-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 28px 16px;
}

.support-hero-inner h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: -0.07em;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.support-hero-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.inquiry-card,
.my-ticket-card,
.notice-card,
.review-write-card,
.review-list-card,
.review-stat-card {
  border: 1px solid rgba(15, 23, 42, 0.055);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.05);
}

.inquiry-card {
  padding: 42px 40px;
}

.inquiry-card h2,
.my-ticket-card h2,
.review-write-card h2 {
  margin: 0 0 30px;
  color: #111827;
  font-size: 25px;
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.field label,
.label {
  color: #111827;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: -0.035em;
}

.in,
.field textarea,
#wBody,
#wBodyModal {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 11px;
  background: #fff;
  color: #111827;
  outline: none;
  font-size: 15px;
  font-weight: 800;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.in {
  height: 56px;
  padding: 0 18px;
}

.field textarea,
#wBody,
#wBodyModal {
  min-height: 180px;
  padding: 18px;
  resize: vertical;
  line-height: 1.65;
}

.in::placeholder,
textarea::placeholder {
  color: rgba(17, 24, 39, 0.32);
}

.in:focus,
textarea:focus {
  border-color: rgba(0, 87, 255, 0.38);
  box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.08);
}

.main-submit {
  width: 100%;
  height: 56px;
  margin-top: 10px;
  border: 0;
  border-radius: 10px;
  background: #0057ff;
  color: #fff;
  font-size: 16px;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(0, 87, 255, 0.2);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.main-submit:hover {
  transform: translateY(-4px);
  background: #004df0;
  box-shadow: 0 24px 52px rgba(0, 87, 255, 0.28);
}

.inquiry-note {
  margin-top: 30px;
  padding: 18px 20px;
  border-radius: 10px;
  background: #f9fafb;
}

.inquiry-note p {
  margin: 0 0 6px;
  color: rgba(17, 24, 39, 0.5);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.inquiry-note p:last-child {
  margin-bottom: 0;
}

.my-ticket-card {
  margin-top: 58px;
  padding: 38px 40px 34px;
  overflow: hidden;
}

.ticket-list-wrap {
  border-top: 2px solid #111827;
  overflow-x: auto;
}

.ticket-list-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.ticket-list-wrap th,
.ticket-list-wrap td {
  padding: 21px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(17, 24, 39, 0.72);
  font-size: 14px;
  font-weight: 850;
  text-align: left;
  white-space: nowrap;
}

.ticket-list-wrap th {
  color: rgba(17, 24, 39, 0.42);
  font-size: 12px;
  font-weight: 1000;
}

.ticket-list-wrap td:first-child {
  color: #0057ff;
  font-weight: 1000;
}

.ticket-list-wrap td:first-child span,
.ticket-list-wrap .status,
.ticket-list-wrap .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 6px;
  background: #eef4ff;
  color: #0057ff;
  font-size: 12px;
  font-weight: 1000;
}

.support-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.support-pager > span {
  display: none;
}

.pager-btn,
.number-pager button,
.review-pager__controls button,
.pbtn,
.btn {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  color: rgba(17, 24, 39, 0.6);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.support-pager .pager-btn:first-child,
.number-pager .active,
.review-pager__numbers .active {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

.notice-card {
  padding: 38px 40px 44px;
}

.notice-table-head {
  display: grid;
  grid-template-columns: 90px 1fr 150px;
  gap: 18px;
  padding: 0 28px 18px;
  border-bottom: 2px solid #111827;
  color: rgba(17, 24, 39, 0.48);
  font-size: 13px;
  font-weight: 1000;
}

.notice-list {
  min-height: 420px;
}

.notice-list > * {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.notice-head {
  display: grid;
  grid-template-columns: 90px 1fr 150px 24px;
  align-items: center;
  gap: 18px;
  min-height: 69px;
  padding: 0 28px;
  cursor: pointer;
}

.notice-no {
  color: rgba(17, 24, 39, 0.35);
  font-size: 14px;
  font-weight: 850;
}

.notice-title {
  color: #111827;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: -0.035em;
}

.notice-meta {
  color: rgba(17, 24, 39, 0.45);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.notice-arrow {
  color: rgba(17, 24, 39, 0.28);
}

.notice-body {
  padding: 22px 28px 28px 136px;
  color: rgba(17, 24, 39, 0.66);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.75;
  background: #fafafa;
}

.number-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.faq-title {
  text-align: center;
  margin-bottom: 38px;
}

.faq-title h2 {
  margin: 0;
  color: #111827;
  font-size: 38px;
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.faq-list {
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.05);
}

.faq {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.faq:last-child {
  border-bottom: 0;
}

.faq summary {
  list-style: none;
  min-height: 88px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 34px 1fr 20px;
  align-items: center;
  gap: 18px;
  color: #111827;
  font-size: 16px;
  font-weight: 1000;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f8;
  color: #8b95a1;
  font-size: 13px;
  font-weight: 1000;
}

.faq summary i {
  color: rgba(17, 24, 39, 0.3);
  font-style: normal;
  font-weight: 1000;
}

.faq[open] summary i {
  transform: rotate(180deg);
}

.faq .ans {
  padding: 0 28px 28px 80px;
  color: rgba(17, 24, 39, 0.62);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.75;
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-item {
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.05);
}

.event-head {
  min-height: 68px;
  padding: 0 24px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.event-head::-webkit-details-marker {
  display: none;
}

.event-title {
  color: #111827;
  font-size: 16px;
  font-weight: 1000;
}

.event-arrow {
  color: rgba(17, 24, 39, 0.35);
  font-size: 18px;
  font-weight: 1000;
}

.event-item[open] .event-arrow {
  transform: rotate(180deg);
}

.event-body {
  padding: 0 24px 24px;
}

.event-image {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.review-stat-card {
  min-height: 100px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.review-stat-card div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.review-stat-card i {
  color: #0057ff;
  font-style: normal;
  font-weight: 1000;
}

.review-stat-card span {
  color: rgba(17, 24, 39, 0.58);
  font-size: 15px;
  font-weight: 900;
}

.review-stat-card strong {
  color: #111827;
  font-size: 32px;
  font-weight: 1000;
  letter-spacing: -0.05em;
}

.review-stat-card em {
  font-size: 18px;
  font-style: normal;
}

.review-write-card {
  margin-top: 40px;
  padding: 38px 40px 40px;
}

.review-author {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.review-author span,
.review-author b {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 1000;
}

.review-author b {
  background: #f4f6f8;
  color: rgba(17, 24, 39, 0.62);
}

.review-actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.review-actions button {
  min-width: 120px;
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
  cursor: pointer;
}

.review-list-card {
  margin-top: 40px;
  padding: 30px;
}

.filterbar {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.search {
  flex: 1;
}

.search input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  outline: none;
  font-weight: 850;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards > article,
.cards > div:not(.empty-td) {
  padding: 32px 34px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
}

.review-pager {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.review-pager__info {
  display: none;
}

.review-pager__controls {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-pager__numbers {
  display: flex;
  gap: 8px;
}

.modal,
.tmodal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(5px);
}

.modal.show,
.modal[aria-hidden="false"],
.tmodal.show,
.tmodal[aria-hidden="false"] {
  display: flex;
}

.modal-card,
.tmodal__panel {
  width: min(640px, 100%);
  max-height: calc(100dvh - 40px);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.modal-hd,
.tmodal__head {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-bd,
.tmodal__body {
  padding: 22px;
  overflow-y: auto;
}

.modal-ft {
  padding: 16px 22px 22px;
  display: flex;
  justify-content: flex-end;
}

.tmodal__close,
#btnCloseModal {
  min-width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: #fff;
  font-weight: 1000;
  cursor: pointer;
}

.tmodal__title {
  color: #111827;
  font-size: 20px;
  font-weight: 1000;
}

.tmodal__meta {
  padding: 14px 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(17, 24, 39, 0.52);
  font-size: 13px;
  font-weight: 850;
}

.tmodal__msgs {
  color: rgba(17, 24, 39, 0.74);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.7;
}

.empty-td {
  padding: 48px 20px;
  color: rgba(17, 24, 39, 0.42);
  text-align: center;
  font-size: 14px;
  font-weight: 850;
}

.hidden-btn,
.chat-hidden,
.legacy-hidden {
  position: absolute !important;
  left: -99999px !important;
  top: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1000000;
  display: none;
  padding: 12px 16px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  transform: translateX(-50%);
}

.toast.show {
  display: block;
  animation: toastIn 0.25s ease both;
}

.rt-modal-ov {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(5px);
}

.rt-modal-ov.show {
  display: flex;
}

.rt-modal {
  width: min(720px, 100%);
  max-height: min(760px, calc(100dvh - 40px));
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.rt-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.rt-modal-title {
  margin: 0;
  color: #111827;
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: -0.04em;
}

.rt-modal-close {
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.rt-modal-body {
  padding: 24px;
  overflow-y: auto;
}

.rt-modal-text {
  white-space: pre-line;
  color: rgba(15, 23, 42, 0.72);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.75;
  letter-spacing: -0.025em;
}

.rt-modal-foot {
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.rt-modal-ok {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: #0057ff;
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(7px);
  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.78s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 980px) {
  .page-nav {
    top: 62px;
  }

  .page-nav .row {
    width: calc(100% - 28px);
    justify-content: flex-start;
  }

  .support-container,
  .support-container.small,
  .notice-container,
  .review-container {
    width: min(100% - 32px, 720px);
  }

  .support-light {
    padding: 54px 0 78px;
  }

  .support-hero {
    height: 150px;
    min-height: 150px;
  }

  .inquiry-card,
  .my-ticket-card,
  .notice-card,
  .review-write-card,
  .review-list-card {
    padding: 30px 24px;
    border-radius: 18px;
  }

  .notice-table-head {
    display: none;
  }

  .notice-head {
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
    padding: 18px 20px;
  }

  .notice-no {
    display: none;
  }

  .notice-title {
    min-width: 0;
    white-space: normal !important;
    overflow: hidden;
    text-overflow: unset;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.45;
    word-break: keep-all;
  }

  .notice-meta {
    grid-column: 1 / 2;
    white-space: nowrap;
    font-size: 11px;
    margin-top: 2px;
    text-align: left;
  }

  .notice-arrow {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  .notice-body {
    padding: 18px 20px 24px;
  }

  .faq summary {
    min-height: 76px;
    padding: 0 20px;
    grid-template-columns: 30px 1fr 18px;
    gap: 14px;
    font-size: 15px;
  }

  .faq .ans {
    padding: 0 20px 24px 64px;
  }

  .filterbar {
    flex-direction: column;
  }

  .review-stat-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 24px;
  }
}

@media (max-width: 640px) {
  .support-container,
  .support-container.small,
  .notice-container,
  .review-container {
    width: min(100% - 28px, 420px);
  }

  .support-hero-inner h1 {
    font-size: 30px;
  }

  .support-hero-inner p {
    font-size: 13px;
  }

  .inquiry-card h2,
  .my-ticket-card h2,
  .review-write-card h2 {
    font-size: 22px;
  }

  .inquiry-card,
  .my-ticket-card,
  .notice-card,
  .review-write-card,
  .review-list-card {
    padding: 28px 20px;
  }

  .ticket-list-wrap table {
    min-width: 520px;
  }

  .support-pager {
    flex-direction: column;
  }

  .faq-title h2 {
    font-size: 34px;
  }

  .review-stat-card strong {
    font-size: 28px;
  }
}

#notice .support-hero {
  height: 183px !important;
  min-height: 183px !important;
}

#notice .notice-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    url("/assets/img/support-notice-hero.jpg") center 42% / cover no-repeat !important;
}

#notice .support-hero-inner h1 {
  margin-bottom: 12px !important;
  font-size: 38px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.07em !important;
}

#notice .support-hero-inner p {
  font-size: 15px !important;
  font-weight: 850 !important;
}

#notice .support-light {
  padding: 60px 0 110px !important;
  background: #f5f6f8 !important;
}

#notice .notice-container {
  width: min(860px, calc(100% - 40px)) !important;
}

#notice .notice-card {
  padding: 38px 40px 50px !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: none !important;
}

#notice .notice-table-head {
  display: grid !important;
  grid-template-columns: 70px 1fr 150px !important;
  gap: 18px !important;
  padding: 0 30px 18px !important;
  border-bottom: 1px solid #111 !important;
  color: #8d96a3 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

#notice .notice-table-head span:nth-child(1) {
  text-align: left !important;
}

#notice .notice-table-head span:nth-child(3) {
  text-align: center !important;
}

#notice .notice-list {
  min-height: 520px !important;
  counter-reset: noticeNo 31;
}

#notice .notice-list > .notice-item {
  border-bottom: 1px solid #e7e9ed !important;
  background: #fff !important;
}

#notice .notice-head {
  position: relative !important;
  width: 100% !important;
  min-height: 69px !important;
  padding: 0 30px !important;
  border: 0 !important;
  background: transparent !important;
  display: grid !important;
  grid-template-columns: 70px 1fr 150px !important;
  gap: 18px !important;
  align-items: center !important;
  text-align: left !important;
  cursor: pointer !important;
}

#notice .notice-head::before {
  counter-increment: noticeNo -1;
  content: counter(noticeNo);
  color: #b7bdc6 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

#notice .notice-head > div {
  display: contents !important;
}

#notice .notice-title {
  grid-column: 2 !important;
  color: #101827 !important;
  font-size: 16px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.45 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

#notice .notice-meta {
  grid-column: 3 !important;
  color: #89919d !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  text-align: center !important;
}

#notice .notice-arrow {
  display: none !important;
}

#notice .notice-body {
  display: none !important;
  margin: 0 !important;
  padding: 26px 30px 34px 118px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.04) !important;
  background: #fafafa !important;
  color: rgba(17, 24, 39, 0.72) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.8 !important;
}

#notice .notice-item.open .notice-body {
  display: block !important;
  animation: noticeOpen 0.28s ease both;
}

#notice .number-pager {
  margin-top: 36px !important;
}

#notice .number-pager button {
  min-width: 34px !important;
  height: 34px !important;
  border-radius: 6px !important;
  border: 1px solid #d9dde3 !important;
  background: #fff !important;
  color: #8b94a1 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

#notice .number-pager button.active {
  border-color: #111827 !important;
  background: #111827 !important;
  color: #fff !important;
}

@keyframes noticeOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  #notice .support-hero {
    height: 160px !important;
    min-height: 160px !important;
  }

  #notice .support-light {
    padding: 42px 0 80px !important;
  }

  #notice .notice-card {
    padding: 26px 20px 34px !important;
    border-radius: 18px !important;
  }

  #notice .notice-table-head {
    display: none !important;
  }

  #notice .notice-list {
    min-height: 360px !important;
  }

  #notice .notice-head {
    grid-template-columns: 1fr auto !important;
    min-height: auto !important;
    padding: 18px 4px !important;
    gap: 8px 12px !important;
  }

  #notice .notice-head::before {
    display: none !important;
  }

  #notice .notice-title {
    grid-column: 1 !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
  }

  #notice .notice-meta {
    grid-column: 1 !important;
    text-align: left !important;
    font-size: 12px !important;
  }

  #notice .notice-body {
    padding: 20px 4px 28px !important;
  }
}

#reviews .support-light {
  background: #f4f6f9 !important;
  padding: 70px 0 110px !important;
}

#reviews .review-container {
  width: min(760px, calc(100% - 40px)) !important;
}

#reviews .review-stat-card,
#reviews .review-write-card,
#reviews .filterbar {
  display: none !important;
}

#reviews .review-pager {
  display: flex !important;
}
#reviews .review-list-card {
  margin-top: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#reviews .cards {
  display: grid !important;
  gap: 22px !important;
}

#reviews .review-card-new {
  position: relative !important;
  min-height: 230px !important;
  padding: 42px 42px 36px !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.045) !important;
  overflow: hidden !important;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease !important;
}

#reviews .review-card-new:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.075) !important;
}

#reviews .review-card-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 22px !important;
}

#reviews .review-card-profile {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  min-width: 0 !important;
}

#reviews .review-avatar {
  width: 40px !important;
  height: 40px !important;
  flex: 0 0 40px !important;
  border-radius: 999px !important;
  background: #f4f6f8 !important;
  color: #6f7a89 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.06em !important;
}

#reviews .review-name {
  color: #111827 !important;
  font-size: 16px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.04em !important;
  white-space: nowrap !important;
}

#reviews .review-date {
  color: #9aa3af !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  white-space: nowrap !important;
}

#reviews .review-tags {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin-bottom: 22px !important;
}

#reviews .review-tags span {
  min-height: 26px !important;
  padding: 0 10px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  background: #f8fafc !important;
  color: #7a8492 !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.035em !important;
}

#reviews .review-tags span:nth-child(2) {
  background: #eef5ff !important;
  color: #0057ff !important;
}

#reviews .review-tags span:nth-child(3) {
  background: #fff4e5 !important;
  color: #d88416 !important;
}

#reviews .review-card-body {
  margin: 0 !important;
  color: #202733 !important;
  font-size: 15px !important;
  font-weight: 650 !important;
  line-height: 2.05 !important;
  letter-spacing: -0.035em !important;
  word-break: keep-all !important;
  white-space: pre-line !important;
}

#reviews .empty-td {
  min-height: 180px !important;
  border-radius: 22px !important;
  background: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width: 640px) {
  #reviews .support-light {
    padding: 42px 0 80px !important;
  }

  #reviews .review-container {
    width: min(100% - 28px, 430px) !important;
  }

  #reviews .cards {
    gap: 18px !important;
  }

  #reviews .review-card-new {
    min-height: 210px !important;
    padding: 34px 24px 30px !important;
    border-radius: 20px !important;
  }

  #reviews .review-card-top {
    margin-bottom: 20px !important;
  }

  #reviews .review-avatar {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
  }

  #reviews .review-name {
    font-size: 15px !important;
  }

  #reviews .review-date {
    font-size: 11px !important;
  }

  #reviews .review-card-body {
    font-size: 14px !important;
    line-height: 1.9 !important;
  }
}
.review-pager {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  margin: 36px auto 0 !important;
  padding: 10px 0 30px !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.review-pager__controls {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.review-pager__numbers {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.review-pager .pager-btn,
.review-page-number {
  min-width: 38px !important;
  height: 38px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06) !important;
}

.review-pager .pager-btn:disabled,
.review-page-number:disabled {
  cursor: default !important;
  opacity: 0.45 !important;
}

.review-page-number.is-active {
  background: #111827 !important;
  color: #fff !important;
  border-color: #111827 !important;
  opacity: 1 !important;
}

.review-pager__info {
  font-size: 13px !important;
  font-weight: 900 !important;
  color: #64748b !important;
}

@media (max-width: 768px) {
  .review-pager {
    flex-direction: column !important;
    margin-top: 26px !important;
  }

  .review-pager .pager-btn,
  .review-page-number {
    min-width: 34px !important;
    height: 34px !important;
    font-size: 13px !important;
  }
}
#reviews .review-list-card .review-pager {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  margin: 36px auto 0 !important;
  padding: 10px 0 30px !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#reviews .review-pager__controls {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

#reviews .review-pager__numbers {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

#reviews .review-pager .pager-btn,
#reviews .review-page-number {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
#notice .number-pager {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 36px !important;
}

#notice .number-pager button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 36px !important;
  height: 36px !important;
  padding: 0 12px !important;
  border-radius: 8px !important;
  border: 1px solid #d9dde3 !important;
  background: #fff !important;
  color: #8b94a1 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

#notice .number-pager button.active {
  border-color: #111827 !important;
  background: #111827 !important;
  color: #fff !important;
}

#notice .number-pager button:disabled {
  cursor: default !important;
  opacity: 0.45 !important;
}
#faq .faq-list {
  width: 100% !important;
  border-radius: 18px !important;
  background: #fff !important;
  overflow: hidden !important;
}

#faq .faq {
  width: 100% !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

#faq .faq summary {
  width: 100% !important;
  min-height: 86px !important;
  padding: 24px 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  color: #111827 !important;
  font-size: 17px !important;
  font-weight: 1000 !important;
  line-height: 1.45 !important;
  letter-spacing: -0.045em !important;
  word-break: keep-all !important;
  white-space: normal !important;
  cursor: pointer !important;
}

#faq .faq summary span {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  display: block !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #111827 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-align: left !important;
  word-break: keep-all !important;
  white-space: normal !important;
}

#faq .faq summary > i,
#faq .faq summary .faq-arrow {
  flex: 0 0 auto !important;
  margin-left: auto !important;
  color: rgba(17, 24, 39, 0.35) !important;
  font-style: normal !important;
  font-weight: 1000 !important;
}

#faq .faq .ans {
  padding: 0 28px 34px 102px !important;
  color: rgba(17, 24, 39, 0.68) !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  line-height: 1.95 !important;
  letter-spacing: -0.035em !important;
  word-break: keep-all !important;
  white-space: pre-line !important;
}

@media (max-width: 640px) {
  #faq .support-container.small {
    width: min(100% - 28px, 430px) !important;
  }

  #faq .faq-title {
    margin-bottom: 34px !important;
  }

  #faq .faq-title h2 {
    font-size: 38px !important;
    line-height: 1.1 !important;
  }

  #faq .faq summary {
    min-height: 78px !important;
    padding: 22px 20px !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  #faq .faq summary span {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  #faq .faq .ans {
    padding: 0 20px 28px 64px !important;
    font-size: 14px !important;
    line-height: 1.85 !important;
  }
}
.footer-grid {
  display: grid !important;
  grid-template-columns: 130px minmax(0, 1fr) 240px !important;
  gap: 28px !important;
  align-items: flex-start !important;
}

.footer-cs-box {
  width: 240px !important;
  min-width: 240px !important;
  margin-left: auto !important;
  padding-top: 2px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  align-items: flex-start !important;
}

.footer-cs-item {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.footer-cs-item span {
  display: block !important;
  margin: 0 0 6px !important;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.035em !important;
}

.footer-cs-item strong {
  display: block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.04em !important;
}

.footer-kakao-card,
#kakaoLink.footer-kakao-card {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 2px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  color: rgba(255, 255, 255, 0.88) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  text-decoration: none !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.footer-kakao-card:hover,
#kakaoLink.footer-kakao-card:hover {
  transform: none !important;
  background: transparent !important;
  border-color: transparent !important;
}

.footer-kakao-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: transparent !important;
}

.footer-kakao-icon svg,
#kakaoLink.footer-kakao-card svg {
  width: 24px !important;
  height: 24px !important;
  display: block !important;
}

.footer-kakao-text {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.footer-kakao-text b {
  display: block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.04em !important;
}

.footer-kakao-text em {
  display: block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.46) !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.035em !important;
}

.footer-kakao-card:hover .footer-kakao-text b,
#kakaoLink.footer-kakao-card:hover .footer-kakao-text b {
  color: #fee500 !important;
}

.footer-kakao-only,
.social.footer-kakao-only {
  display: none !important;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-cs-box {
    width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    padding-top: 4px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 18px !important;
    align-items: start !important;
  }

  .footer-kakao-card,
  #kakaoLink.footer-kakao-card {
    grid-column: 1 / -1 !important;
  }

  .footer-cs-item span {
    font-size: 11.5px !important;
  }

  .footer-cs-item strong {
    font-size: 14px !important;
  }
}

@media (max-width: 520px) {
  .footer-main {
    padding: 26px 0 42px !important;
  }

  .footer-cs-box {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding-top: 2px !important;
  }

  .footer-kakao-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
  }

  .footer-kakao-icon svg,
  #kakaoLink.footer-kakao-card svg {
    width: 22px !important;
    height: 22px !important;
  }
}
.tmodal__panel {
  max-height: calc(100dvh - 40px) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.tmodal__head {
  flex: 0 0 auto !important;
}

.tmodal__meta {
  flex: 0 0 auto !important;
}

.tmodal__body {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

.tmodal__msgs {
  overflow: visible !important;
  max-height: none !important;
  word-break: break-word !important;
}

.tmodal__msgs .msg {
  word-break: break-word !important;
}

.tmodal__msgs .msg p {
  margin: 0 0 8px !important;
}

.tmodal__msgs .msg p:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 640px) {
  .tmodal {
    align-items: flex-start !important;
    padding: 14px !important;
  }

  .tmodal__panel {
    max-height: calc(100dvh - 28px) !important;
  }

  .tmodal__body {
    padding: 18px !important;
  }
}
.tmodal__msgs {
  line-height: 1.45 !important;
}

.tmodal__msgs .msg {
  line-height: 1.45 !important;
}

.tmodal__msgs .msg div {
  line-height: 1.45 !important;
}

.tmodal__msgs .msg p {
  margin: 0 0 4px !important;
  line-height: 1.45 !important;
}

.tmodal__msgs .msg br {
  line-height: 1.2 !important;
}
.tmodal__meta {
  display: none !important;
}
.tmodal__meta,
.tmodal__msgs .msg .caption {
  display: none !important;
}
.tmodal__msgs {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  padding: 2px 0 !important;
}

.tmodal__msgs .msg {
  width: 100% !important;
  margin: 0 !important;
  padding: 18px 18px 16px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  background: #f8fafc !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04) !important;
}

.tmodal__msgs .msg:nth-child(odd) {
  background: #f8fafc !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
}

.tmodal__msgs .msg:nth-child(even) {
  background: #eef5ff !important;
  border-color: rgba(0, 87, 255, 0.12) !important;
}

.tmodal__msgs .msg > div:first-child {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 28px !important;
  margin: 0 0 10px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  background: #111827 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
}

.tmodal__msgs .msg:nth-child(even) > div:first-child {
  background: #0057ff !important;
  color: #fff !important;
}

.tmodal__msgs .msg > div:nth-child(2) {
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1.55 !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
}

.tmodal__msgs .msg p {
  margin: 0 0 6px !important;
  line-height: 1.55 !important;
}

.tmodal__msgs .msg p:last-child {
  margin-bottom: 0 !important;
}

.tmodal__msgs .msg .caption {
  display: none !important;
}

@media (max-width: 640px) {
  .tmodal__msgs {
    gap: 12px !important;
  }

  .tmodal__msgs .msg {
    padding: 16px 15px 14px !important;
    border-radius: 14px !important;
  }

  .tmodal__msgs .msg > div:nth-child(2) {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
}
.inquiry-success-popup {
  position: fixed;
  inset: 0;
  z-index: 1000001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(7px);
}

.inquiry-success-popup.show {
  display: flex;
  animation: inquirySuccessFade 0.2s ease both;
}

.inquiry-success-card {
  width: min(420px, 100%);
  padding: 38px 30px 30px;
  border-radius: 24px;
  background: #fff;
  text-align: center;
  box-shadow: 0 34px 100px rgba(15, 23, 42, 0.28);
  animation: inquirySuccessPop 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.inquiry-success-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0057ff, #3b82f6);
  box-shadow: 0 18px 42px rgba(0, 87, 255, 0.28);
}

.inquiry-success-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inquiry-success-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 23px;
  font-weight: 1000;
  line-height: 1.3;
  letter-spacing: -0.06em;
}

.inquiry-success-card p {
  margin: 0 0 26px;
  color: rgba(17, 24, 39, 0.58);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.65;
  letter-spacing: -0.035em;
}

.inquiry-success-card button {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 14px;
  background: #0057ff;
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 87, 255, 0.22);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.inquiry-success-card button:hover {
  transform: translateY(-2px);
  background: #004df0;
  box-shadow: 0 20px 44px rgba(0, 87, 255, 0.3);
}

@keyframes inquirySuccessFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes inquirySuccessPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .inquiry-success-popup {
    padding: 18px;
  }

  .inquiry-success-card {
    padding: 34px 24px 26px;
    border-radius: 22px;
  }

  .inquiry-success-icon {
    width: 70px;
    height: 70px;
  }

  .inquiry-success-card h3 {
    font-size: 21px;
  }

  .inquiry-success-card p {
    font-size: 13px;
  }
}
#reviews .review-write-card {
  display: block !important;
  margin: 0 0 34px !important;
  padding: 38px 40px 40px !important;
  border: 1px solid rgba(15, 23, 42, 0.055) !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.05) !important;
}

#reviews .review-stat-card {
  display: none !important;
}

#reviews .filterbar {
  display: none !important;
}

#reviews .review-author {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
}

#reviews .review-author span,
#reviews .review-author b {
  min-height: 34px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.035em !important;
}

#reviews .review-author span {
  background: #111827 !important;
  color: #fff !important;
}

#reviews .review-author b {
  background: #eef4ff !important;
  color: #0057ff !important;
}

#reviews .review-write-card textarea,
#reviews #wBody {
  min-height: 190px !important;
  border-radius: 16px !important;
  background: #fff !important;
  line-height: 1.75 !important;
}

#reviews .review-actions {
  margin-top: 18px !important;
  display: flex !important;
  justify-content: flex-end !important;
}

#reviews .review-actions button {
  min-width: 140px !important;
  height: 52px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: #0057ff !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 1000 !important;
  cursor: pointer !important;
  box-shadow: 0 16px 34px rgba(0, 87, 255, 0.2) !important;
}

#reviews .review-actions button:hover {
  background: #004df0 !important;
}

@media (max-width: 640px) {
  #reviews .review-write-card {
    margin-bottom: 26px !important;
    padding: 28px 20px !important;
    border-radius: 18px !important;
  }

  #reviews .review-actions {
    display: block !important;
  }

  #reviews .review-actions button {
    width: 100% !important;
  }
}
