@charset "utf-8";

:root {
  --bg: #f7f7f7;
  --surface: #ffffff;
  --text: #191919;
  --muted: #777777;
  --line: #e7e7e7;
  --red: #d40000;
  --black: #050505;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, "Noto Sans", "Noto Sans CJK KR",
    "Noto Sans CJK JP", "Noto Sans CJK SC", "Noto Sans Arabic",
    "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

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

img {
  display: block;
  max-width: 100%;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(100% - 28px, 680px);
  margin: 0 auto;
  padding: 28px 0 44px;
}

.top {
  position: relative;
  padding: 26px 28px 34px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.045);
}

.language-picker {
  display: flex;
  justify-content: center;
  margin: 26px auto 0;
}

.language-trigger {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 11px;
  width: min(300px, 100%);
  min-height: 58px;
  align-items: center;
  padding: 8px 12px 8px 9px;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  background: #fff;
  color: #111;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.language-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 0, 0, 0.45);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.language-trigger:focus-visible {
  outline: 3px solid rgba(212, 0, 0, 0.18);
  outline-offset: 3px;
}

.language-trigger__flag-wrap {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #f3f3f3;
  overflow: hidden;
}

.language-trigger__flag {
  width: 34px;
  height: 23px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.language-trigger__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1px;
}

.language-trigger__label {
  color: #9a9a9a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.language-trigger__copy strong {
  overflow: hidden;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-trigger__chevron {
  display: block;
  width: 20px;
  height: 20px;
  justify-self: center;
  align-self: center;
  overflow: visible;
  color: #d40000;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 160ms ease;
}

.language-trigger__chevron path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-trigger[aria-expanded="true"] .language-trigger__chevron {
  transform: rotate(180deg);
}

.language-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 170ms ease, visibility 170ms ease;
}

.language-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.language-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.64);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.language-modal__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.33);
  transform: translateY(12px) scale(0.985);
  transition: transform 170ms ease;
}

.language-modal.is-open .language-modal__panel {
  transform: translateY(0) scale(1);
}

.language-modal__handle {
  display: none;
}

.language-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 14px;
}

.language-modal__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.language-modal__brand strong {
  color: #d40000;
  font-size: 18px;
}

.language-modal__close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  color: #202020;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.language-modal__close:hover {
  background: #e8e8e8;
}

.language-modal__intro {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding: 15px;
  border-radius: 17px;
  background: linear-gradient(135deg, #111 0%, #242424 100%);
  color: #fff;
}

.language-modal__globe {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  background: #e93d3f;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.language-modal__globe img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language-modal__intro h2 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.language-modal__intro p {
  margin: 4px 0 0;
  color: #c9c9c9;
  font-size: 12px;
  line-height: 1.4;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.language-option {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  gap: 10px;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  background: #fff;
  color: #171717;
  text-align: left;
  cursor: pointer;
  transition: transform 130ms ease, border-color 130ms ease, background 130ms ease, box-shadow 130ms ease;
}

.language-option:hover {
  transform: translateY(-1px);
  border-color: #cfcfcf;
  background: #fafafa;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.055);
}

.language-option:focus-visible {
  outline: 3px solid rgba(212, 0, 0, 0.16);
  outline-offset: 2px;
}

.language-option.is-active {
  border-color: #d40000;
  background: #fff8f8;
  box-shadow: inset 0 0 0 1px rgba(212, 0, 0, 0.08);
}

.language-option__flag-frame {
  display: grid;
  width: 44px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: #f3f3f3;
}

.language-option__flag {
  width: 34px;
  height: 23px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.language-option__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1px;
}

.language-option__copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-option__copy small {
  color: #a0a0a0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.language-option__check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #ededed;
  color: transparent;
  font-size: 12px;
  font-weight: 900;
}

.language-option.is-active .language-option__check {
  background: #d40000;
  color: #fff;
}

body.language-modal-open {
  overflow: hidden;
}

html[dir="rtl"] .language-trigger,
html[dir="rtl"] .language-option {
  text-align: right;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top h1 {
  margin: 0;
  font-size: clamp(31px, 6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.compliance {
  max-width: 570px;
  margin: 18px auto 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.updated {
  margin: 9px 0 0;
  color: #999;
  font-size: 12px;
  font-weight: 600;
}

.gnb {
  position: sticky;
  top: 10px;
  z-index: 50;
  display: flex;
  gap: 4px;
  margin: 18px 0;
  padding: 7px;
  border-radius: 999px;
  background: var(--black);
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.13);
}

.gnb a {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: 160ms ease;
}

.gnb a:hover,
.gnb a.on {
  background: #fff;
  color: var(--red);
}

.box {
  margin: 18px 0;
  padding: 36px 28px 40px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.035);
  scroll-margin-top: 82px;
}

.box > h1 {
  margin: 0;
  padding: 0 0 22px;
  border-bottom: 1px solid #222;
  font-size: clamp(23px, 4.8vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-align: center;
  overflow-wrap: anywhere;
}

.section-desc {
  margin: 19px auto 0;
  max-width: 590px;
  color: #555;
  font-size: 15px;
  line-height: 1.62;
  text-align: center;
}

.photo {
  margin-top: 38px;
}

.photo h2 {
  margin: 0 0 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f1f1f1;
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.photo ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 10px;
}

.photo li {
  min-width: 0;
}

.photo li > img,
.guide-shot {
  width: 100%;
  border-radius: 10px;
}

.photo li > img {
  border: 1px solid #f3f3f3;
}

.guide-shot {
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
  line-height: 1.16;
}

.guide-shot > img {
  width: 100%;
  height: auto;
  border: 1px solid #f3f3f3;
  border-radius: inherit;
}

.photo h3 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  min-height: 46px;
  margin: 0;
  padding: 8px 5px 13px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.28;
  text-align: center;
  overflow-wrap: anywhere;
}

.status-icon {
  flex: 0 0 auto;
  width: 16px !important;
  height: 16px;
  margin-top: 0;
  border: 0 !important;
  border-radius: 0 !important;
}

.shot-overlay {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  font-family: Arial, "Noto Sans", "Noto Sans CJK KR",
    "Noto Sans CJK JP", "Noto Sans CJK SC", "Noto Sans Arabic",
    "Noto Sans Thai", system-ui, sans-serif;
  font-weight: 500;
  text-align: left;
}

html.lang-ko .shot-overlay {
  display: none;
}

.shot-private {
  left: 25%;
  top: 90.5%;
  width: 27%;
  height: 5.7%;
  padding: 0 2.2%;
  background: #000;
  color: #fff;
  font-size: clamp(7px, 1.25vw, 10px);
}

.shot-time {
  left: 0;
  top: 71.1%;
  width: 27%;
  height: 4.5%;
  padding: 0 2.5%;
  background: #fff;
  color: #aaa;
  font-size: clamp(7px, 1.15vw, 9px);
  white-space: nowrap;
}

.shot-post {
  left: 0;
  top: 85.5%;
  width: 100%;
  height: 14.5%;
  padding: 1.6% 2.6%;
  align-items: flex-start;
  background: #fff;
  color: #111;
  font-size: clamp(7px, 1.45vw, 11px);
  line-height: 1.25;
}

.shot-post--highlight {
  top: 86.1%;
  width: 72%;
  height: 12.2%;
  border: clamp(1px, 0.32vw, 3px) solid #f10b0b;
}

.shot-post--wide {
  width: 97%;
}

.shot-center {
  left: 0;
  top: 12.9%;
  width: 100%;
  height: 58.2%;
  padding: 4% 7%;
  justify-content: center;
  background: #000;
  color: #fff;
  font-size: clamp(9px, 2vw, 15px);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  white-space: pre-line;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .shot-post,
html[dir="rtl"] .shot-private,
html[dir="rtl"] .shot-time {
  text-align: right;
}

html[dir="rtl"] .status-icon {
  margin-left: 5px;
  margin-right: 0;
}

@media (max-width: 600px) {
  .wrap {
    width: 100%;
    padding: 0;
  }

  .top {
    padding: 24px 18px 28px;
    border-radius: 0;
  }

  
.language-picker {
    margin-bottom: 20px;
  }

  .language-trigger {
    width: min(300px, 96%);
    min-height: 56px;
    border-radius: 16px;
  }

  .language-modal {
    place-items: end center;
    padding: 0;
  }

  .language-modal__panel {
    width: 100%;
    max-height: 88vh;
    padding: 9px 12px 18px;
    border-radius: 24px 24px 0 0;
    transform: translateY(28px);
  }

  .language-modal.is-open .language-modal__panel {
    transform: translateY(0);
  }

  .language-modal__handle {
    display: block;
    width: 38px;
    height: 4px;
    margin: 1px auto 9px;
    border-radius: 99px;
    background: #d7d7d7;
  }

  .language-modal__header {
    padding: 0 2px 10px;
  }

  .language-modal__intro {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 15px;
  }

  .language-modal__globe {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    font-size: 24px;
  }

  .language-modal__intro h2 {
    font-size: 18px;
  }

  .language-modal__intro p {
    font-size: 11px;
  }

  .language-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .language-option {
    min-height: 52px;
    grid-template-columns: 42px minmax(0, 1fr) 22px;
    gap: 9px;
    padding: 6px 9px;
    border-radius: 13px;
  }

  .language-option__flag-frame {
    width: 42px;
    height: 34px;
  }

  .language-option__copy strong {
    font-size: 13px;
  }

  .top h1 {
    font-size: clamp(28px, 10vw, 39px);
  }

  .compliance {
    font-size: 13px;
  }

  .gnb {
    top: 0;
    margin: 0;
    padding: 6px;
    border-radius: 0;
  }

  .gnb a {
    min-height: 38px;
    padding: 6px 4px;
    border-radius: 8px;
    font-size: 11px;
  }

  .box {
    margin: 0;
    padding: 32px 10px 36px;
    border-top: 12px solid var(--bg);
    border-radius: 0;
    box-shadow: none;
    scroll-margin-top: 58px;
  }

  .box > h1 {
    padding: 0 8px 18px;
    font-size: 20px;
  }

  .section-desc {
    padding: 0 7px;
    font-size: 13px;
  }

  .photo {
    margin-top: 30px;
  }

  .photo h2 {
    margin-bottom: 7px;
    padding: 11px 12px;
    border-radius: 6px;
    font-size: 14px;
  }

  .photo ul {
    gap: 7px 5px;
  }

  .photo li > img,
  .guide-shot {
    border-radius: 6px;
  }

  .photo h3 {
    min-height: 48px;
    padding: 6px 3px 11px;
    font-size: 11px;
  }

  .status-icon {
    width: 13px !important;
    height: 13px;
  }

  .shot-post {
    font-size: clamp(7px, 2.5vw, 10px);
  }

  .shot-post--highlight {
    border-width: 2px;
  }

  .shot-center {
    font-size: clamp(8px, 3vw, 12px);
  }
}

@media (max-width: 380px) {
  .gnb a {
    font-size: 10px;
  }

  .photo h3 {
    font-size: 10px;
  }

  .shot-post {
    font-size: 7px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .language-trigger {
    animation: none;
  }

  .language-modal,
  .language-modal__panel,
  .language-option,
  .language-trigger {
    transition: none;
  }
}
