﻿:root {
  --h2-scale: 1;
  --h2-flyer-aspect: 1 / 1.4;
  --h2-blue: #99e0ff;
  --h2-notice: #ddf5ff;
  --h2-lost: #fdff80;
  --h2-found: #c8ff99;
  --h2-returned: #ffd99c;
  --h2-muted: #efeff4;
  --h2-line: #d8d9e5;
  --h2-ink: #050505;
  --h2-dark: #332e2b;
  --h2-navy: #4c5077;
  --h2-soft-text: #9c9eb1;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--h2-ink);
  overflow-x: hidden;
}

html {
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  font-family: Pretendard, "Malgun Gothic", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.h2-app {
  min-height: 100vh;
  background: #fff;
}

.h2-stage {
  position: relative;
  width: 1560px;
  min-height: 100vh;
  margin-left: calc((100vw - 1560px) / 2);
  background: #fff;
}

.h2-header {
  position: fixed;
  left: 50vw;
  top: 0;
  z-index: 100;
  width: 1560px;
  height: 106px;
  transform: translateX(-50%);
  background: #fff;
}

.h2-logo {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 116px;
  height: 66px;
}

.h2-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.h2-pill {
  position: absolute;
  top: 20px;
  width: 146px;
  height: 66px;
  padding: 8px 10px;
  border-radius: 16px;
  background: var(--h2-muted);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 900;
  text-align: center;
  word-break: keep-all;
  text-wrap: balance;
}

.h2-pill.active-lost {
  border: 3px solid var(--h2-blue);
  padding: 5px 7px;
  background: #fff;
}

.h2-pill.active-found {
  border: 3px solid var(--h2-found);
  padding: 5px 7px;
  background: #fff;
}

.h2-pill.active-returned {
  border: 3px solid var(--h2-returned);
  padding: 5px 7px;
  background: #fff;
}

.h2-lost-pill {
  left: 152px;
}

.h2-found-pill {
  left: 314px;
}

.h2-returned-pill {
  left: 476px;
}

.h2-account {
  position: absolute;
  right: 20px;
  top: 13px;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.h2-notification {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #20243a;
}

.h2-notification:hover,
.h2-notification:focus-visible {
  border-color: #aeb7cb;
  background: #f7f8fb;
  outline: 3px solid rgba(0, 30, 255, .12);
  outline-offset: 2px;
}

.h2-notification[aria-expanded="true"] {
  border-color: #7d88bd;
  background: #f1f3ff;
  color: #24306e;
}

.h2-notification-icon {
  width: 23px;
  height: 23px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.h2-notification-badge {
  position: absolute;
  right: -6px;
  top: -5px;
  min-width: 21px;
  height: 21px;
  border: 2px solid #fff;
  border-radius: 11px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  background: #ff3b30;
  color: #fff;
  font-size: 10px;
  line-height: 17px;
  font-weight: 900;
  box-sizing: border-box;
}

.h2-notification-panel {
  position: absolute;
  right: 0;
  top: 60px;
  z-index: 130;
  width: min(400px, calc(100vw - 40px));
  max-height: min(620px, calc(100vh - 88px));
  border: 1px solid #e1e4ed;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(28, 34, 57, .18), 0 3px 12px rgba(28, 34, 57, .08);
}

.h2-notification-panel[hidden] {
  display: none;
}

.h2-notification-panel-head {
  min-height: 66px;
  padding: 14px 18px;
  border-bottom: 1px solid #eceef4;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.h2-notification-panel-head strong {
  color: #15182a;
  font-size: 20px;
  line-height: 26px;
  font-weight: 900;
}

.h2-notification-panel-head span {
  color: #7a8097;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}

.h2-notification-list {
  max-height: min(466px, calc(100vh - 224px));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.h2-notification-item {
  position: relative;
  min-width: 0;
  padding: 14px 18px;
  border-bottom: 1px solid #eff0f5;
  display: grid;
  gap: 5px;
  color: #191c2e;
}

.h2-notification-item:hover,
.h2-notification-item:focus-visible {
  background: #f7f8fc;
  outline: 3px solid rgba(51, 64, 165, .2);
  outline-offset: -3px;
}

.h2-notification-item.is-unread {
  padding-left: 25px;
  background: #f5f7ff;
}

.h2-notification-item.is-unread::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 21px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3340a5;
}

.h2-notification-item-type {
  color: #3340a5;
  font-size: 11px;
  line-height: 16px;
  font-weight: 900;
}

.h2-notification-item > strong,
.h2-notification-item > p,
.h2-notification-item-meta {
  min-width: 0;
  overflow-wrap: anywhere;
}

.h2-notification-item > strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  line-height: 20px;
  font-weight: 900;
}

.h2-notification-item > p {
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #4f5570;
  font-size: 13px;
  line-height: 19px;
  font-weight: 700;
}

.h2-notification-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #858a9d;
  font-size: 11px;
  line-height: 17px;
}

.h2-notification-item-meta b,
.h2-notification-item-meta time {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font: inherit;
}

.h2-notification-item-meta b {
  color: #62687e;
  font-weight: 900;
}

.h2-notification-state {
  min-height: 148px;
  margin: 0;
  padding: 28px 18px;
  display: grid;
  place-items: center;
  color: #747a90;
  font-size: 13px;
  line-height: 21px;
  font-weight: 800;
  text-align: center;
}

.h2-notification-state.is-error {
  color: #c73a43;
}

.h2-notification-all {
  height: 50px;
  border-top: 1px solid #e7e9f0;
  display: grid;
  place-items: center;
  background: #fff;
  color: #3340a5;
  font-size: 13px;
  font-weight: 900;
}

.h2-notification-all:hover,
.h2-notification-all:focus-visible {
  background: #f3f5ff;
  outline: 3px solid rgba(51, 64, 165, .2);
  outline-offset: -3px;
}

.h2-login {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 72px;
  height: 33px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: var(--h2-blue);
  font-size: 15px;
  line-height: 15px;
  font-weight: 900;
}

.h2-user {
  position: static;
  width: 126px;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
}

.h2-user img {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 3px solid var(--h2-blue);
  border-radius: 50%;
  object-fit: cover;
}

.h2-avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 3px solid var(--h2-blue);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  color: #4f557e;
  font-size: 24px;
  line-height: 1;
}

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

.h2-user-name {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.h2-title {
  position: absolute;
  left: 0;
  top: 130px;
  width: 1560px;
  margin: 0;
  color: #000;
  text-align: center;
  font-family: inherit;
  font-size: 65px;
  line-height: 96px;
  font-weight: 700;
  letter-spacing: 0;
}

.h2-arrow-img {
  position: absolute;
  display: block;
  pointer-events: none;
}

.h2-arrow-large {
  width: 64px;
  height: 60px;
}

.h2-arrow-small {
  width: 31px;
  height: 30px;
}

.h2-card {
  position: absolute;
  overflow: hidden;
  color: #000;
}

.h2-report {
  width: 403px;
  height: 503px;
  padding: 25px;
  border-radius: 32px;
}

.h2-report.lost {
  background: var(--h2-lost);
}

.h2-report.found {
  background: var(--h2-found);
}

.h2-report strong {
  display: block;
  font-size: 30px;
  line-height: 37px;
  font-weight: 900;
}

.h2-report p {
  margin: 16px 0 0 3px;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
}

.h2-report span:not(.h2-arrow-img) {
  position: absolute;
  left: 25px;
  bottom: 15px;
  color: var(--h2-soft-text);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.h2-report .h2-arrow-large {
  right: 25px;
  bottom: 25px;
}

.h2-side {
  width: 193px;
  height: 193px;
  padding-top: 25px;
  border-radius: 32px;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: 900;
}

.h2-side.lost {
  background: var(--h2-lost);
}

.h2-side.found {
  background: var(--h2-found);
}

.h2-side .h2-arrow-small {
  left: 81px;
  bottom: 25px;
}

.h2-pet-card {
  position: absolute;
  width: 288px;
  height: 503px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--h2-muted);
  color: #000;
}

.h2-pet-card.list {
  width: 403px;
  height: 684px;
}

.h2-results .h2-pet-card.list {
  content-visibility: auto;
  contain-intrinsic-size: auto 684px;
}

.h2-location {
  position: relative;
  z-index: 1;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--h2-navy);
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
}

.h2-pet-card.list .h2-location {
  height: 60px;
  font-size: 21px;
}

.h2-pet-card img {
  position: relative;
  width: 100%;
  height: 403px;
  margin: 0;
  display: block;
  object-fit: cover;
}

.h2-pet-card.list img {
  width: 100%;
  height: 564px;
}

.h2-meta {
  position: relative;
  z-index: 1;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 14px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 900;
  white-space: nowrap;
  background: var(--h2-muted);
}

.h2-pet-card.list .h2-meta {
  font-size: 21px;
}

.h2-meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 몸무게 단위가 카드 끝에서 잘리지 않도록 마지막 값은 축소하지 않습니다. */
.h2-meta span:last-child {
  flex: 0 0 auto;
  overflow: visible;
  text-overflow: clip;
}

.h2-meta i {
  flex: 0 0 auto;
  width: 2px;
  height: 20px;
  background: var(--h2-navy);
}

.h2-found-photo {
  position: absolute;
  width: 288px;
  height: auto;
  aspect-ratio: var(--h2-flyer-aspect);
  border-radius: 32px;
  overflow: hidden;
  background: var(--h2-muted);
}

.h2-found-photo img {
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  object-fit: cover;
}

.h2-found-copy {
  position: absolute;
  width: 306px;
  height: 503px;
  padding: 25px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--h2-muted);
  color: #000;
}

.h2-found-copy strong {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
}

.h2-found-copy em {
  display: block;
  margin-bottom: 27px;
  font-size: 15px;
  line-height: 17px;
  font-style: normal;
  font-weight: 500;
}

.h2-found-copy p {
  margin: 0;
  height: 288px;
  overflow: hidden;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
}

.h2-mini-stats {
  position: absolute;
  left: 25px;
  bottom: 27px;
  display: flex;
  gap: 16px;
  color: var(--h2-soft-text);
  font-size: 13px;
  line-height: 20px;
  font-weight: 900;
}

.h2-notice {
  position: absolute;
  left: 160px;
  top: 1481px;
  width: 1240px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  background: var(--h2-notice);
}

.h2-notice img {
  width: 36px;
  height: 36px;
}

.h2-notice h2 {
  margin: 0 16px;
  font-family: inherit;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
}

.h2-notice p {
  margin: 0;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
}

.h2-notice nav {
  margin-left: auto;
  display: flex;
  gap: 16px;
  color: var(--h2-soft-text);
  font-size: 13px;
  line-height: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.h2-info {
  position: absolute;
  width: 612px;
  height: 240px;
  padding: 25px;
  border-radius: 32px;
  background: var(--h2-muted);
  color: #000;
}

.h2-info h2,
.h2-about h2 {
  margin: 0;
  font-size: 30px;
  line-height: 35px;
  font-weight: 900;
}

.h2-info p {
  position: absolute;
  left: 25px;
  bottom: 25px;
  margin: 0;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
}

.h2-info .h2-arrow-small {
  right: 25px;
  bottom: 31px;
  opacity: .35;
}

.h2-about {
  position: absolute;
  left: 160px;
  top: 1905px;
  width: 1240px;
  height: 240px;
  padding: 30px 25px 25px;
  border-radius: 32px;
  background: var(--h2-blue);
}

.h2-about a {
  position: absolute;
  right: 25px;
  top: 25px;
  color: var(--h2-soft-text);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
}

.h2-about p {
  position: absolute;
  left: 28px;
  bottom: 25px;
  width: 900px;
  margin: 0;
  font-size: 15px;
  line-height: 25px;
}
.h2-about-hero {
  position: absolute;
  left: 160px;
  top: 185px;
  width: 1240px;
  height: 430px;
  padding: 58px 64px;
  border-radius: 32px;
  background: var(--h2-blue);
  color: #000;
}

.h2-about-hero p {
  margin: 0 0 34px;
  color: #4f557e;
  font-size: 16px;
  line-height: 16px;
  font-weight: 900;
}

.h2-about-hero h1 {
  width: 850px;
  margin: 0;
  font-size: 52px;
  line-height: 62px;
  font-weight: 900;
}

.h2-about-hero span {
  position: absolute;
  left: 66px;
  bottom: 58px;
  width: 700px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
}

.h2-about-band {
  position: absolute;
  left: 160px;
  width: 1240px;
  border-radius: 32px;
  background: var(--h2-muted);
  color: #000;
}

.h2-about-band.first {
  top: 690px;
  min-height: 360px;
  padding: 42px 48px;
}

.h2-about-band.second {
  top: 1110px;
  min-height: 250px;
  padding: 42px 48px;
  background: #fff;
  border: 2px solid var(--h2-line);
}

.h2-about-band h2 {
  margin: 0 0 34px;
  font-size: 30px;
  line-height: 35px;
  font-weight: 900;
}

.h2-about-band.first > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.h2-about-band article {
  min-height: 170px;
  padding: 28px;
  border-radius: 20px;
  background: #fff;
}

.h2-about-band article strong {
  display: block;
  margin-bottom: 22px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 900;
}

.h2-about-band article p,
.h2-about-band.second p {
  margin: 0;
  font-size: 16px;
  line-height: 27px;
  font-weight: 600;
}

.h2-about-band.second p {
  width: 820px;
}

.h2-about-band nav {
  position: absolute;
  right: 48px;
  bottom: 42px;
  display: flex;
  gap: 12px;
}

.h2-about-band nav a {
  height: 40px;
  padding: 11px 18px 0;
  border-radius: 20px;
  background: var(--h2-blue);
  font-size: 14px;
  line-height: 16px;
  font-weight: 900;
}

.h2-static-hero {
  position: absolute;
  left: 160px;
  top: 185px;
  width: 1240px;
  height: 360px;
  padding: 52px 58px;
  border-radius: 32px;
  background: var(--h2-blue);
  color: #000;
}

.h2-static-hero.notice {
  background: var(--h2-notice);
}

.h2-static-hero.policy {
  background: var(--h2-muted);
}

.h2-static-hero.guide {
  background: var(--h2-lost);
}

.h2-static-hero p {
  margin: 0 0 30px;
  color: #4f557e;
  font-size: 16px;
  line-height: 16px;
  font-weight: 900;
}

.h2-static-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 58px;
  font-weight: 900;
}

.h2-static-hero span {
  position: absolute;
  left: 60px;
  bottom: 52px;
  width: 760px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
}

.h2-static-list,
.h2-guide-steps,
.h2-static-panel {
  position: absolute;
  left: 160px;
  width: 1240px;
  color: #000;
}

.h2-static-list,
.h2-guide-steps {
  top: 620px;
}

.h2-static-list h2,
.h2-guide-steps h2,
.h2-static-panel h2 {
  margin: 0 0 26px;
  font-size: 30px;
  line-height: 35px;
  font-weight: 900;
}

.h2-static-list article {
  height: 142px;
  margin-bottom: 14px;
  border: 2px solid var(--h2-line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 24px;
  padding: 0 30px;
  background: #fff;
}

.h2-static-list-copy {
  min-width: 0;
}

.h2-static-list time {
  color: #4f557e;
  font-size: 15px;
  font-weight: 900;
}

.h2-static-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 900;
}

.h2-static-list p,
.h2-guide-steps p,
.h2-static-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 27px;
  font-weight: 600;
}

.h2-static-list a,
.h2-static-panel a {
  height: 40px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--h2-blue);
  color: #000;
  font-size: 14px;
  font-weight: 900;
}

.h2-notice-badge {
  min-width: 72px;
  height: 34px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  justify-self: end;
  background: var(--h2-notice);
  color: #1c3456;
  font-size: 13px;
  line-height: 13px;
  font-weight: 900;
}

.h2-static-empty {
  min-height: 142px;
  border: 2px dashed var(--h2-line);
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #4f557e;
  font-size: 16px;
  font-weight: 700;
}

.h2-guide-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.h2-guide-steps h2 {
  grid-column: 1 / -1;
}

.h2-guide-steps article {
  min-height: 170px;
  border-radius: 22px;
  background: var(--h2-muted);
  padding: 28px 30px 26px 92px;
  position: relative;
}

.h2-guide-steps b {
  position: absolute;
  left: 28px;
  top: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--h2-blue);
  font-size: 20px;
  line-height: 20px;
}

.h2-guide-steps strong {
  display: block;
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 900;
}

.h2-static-panel {
  top: 1180px;
  min-height: 210px;
  padding: 38px 44px;
  border: 2px solid var(--h2-line);
  border-radius: 28px;
  background: #fff;
}

.h2-static-panel.guide {
  top: 1180px;
}

.h2-static-panel p {
  width: 730px;
}

.h2-static-panel nav {
  position: absolute;
  right: 44px;
  bottom: 38px;
  display: flex;
  gap: 12px;
}

.h2-static-panel nav a {
  min-width: 126px;
  padding: 0 18px;
}

.h2-policy-document {
  position: absolute;
  left: 160px;
  top: 620px;
  width: 1240px;
  min-height: 560px;
  padding: 48px 54px;
  border: 2px solid var(--h2-line);
  border-radius: 28px;
  background: #fff;
  color: #000;
}

.h2-policy-document h2 {
  margin: 0 0 34px;
  font-size: 30px;
  line-height: 36px;
  font-weight: 900;
}

.h2-policy-document p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 31px;
  font-weight: 600;
  white-space: normal;
}

.h2-stage.page-terms,
.h2-stage.page-privacy,
.h2-stage.page-minor-policy,
.h2-stage.page-copyright-policy {
  height: auto !important;
  min-height: 1681px;
  padding-top: 185px;
}

.page-terms > .h2-static-hero,
.page-privacy > .h2-static-hero,
.page-minor-policy > .h2-static-hero,
.page-copyright-policy > .h2-static-hero,
.page-terms > .h2-policy-document,
.page-privacy > .h2-policy-document,
.page-minor-policy > .h2-policy-document,
.page-copyright-policy > .h2-policy-document,
.page-terms > .h2-footer,
.page-privacy > .h2-footer,
.page-minor-policy > .h2-footer,
.page-copyright-policy > .h2-footer {
  position: relative;
  top: auto !important;
}

.page-terms > .h2-policy-document,
.page-privacy > .h2-policy-document,
.page-minor-policy > .h2-policy-document,
.page-copyright-policy > .h2-policy-document {
  margin-top: 75px;
}

.page-terms > .h2-footer,
.page-privacy > .h2-footer,
.page-minor-policy > .h2-footer,
.page-copyright-policy > .h2-footer {
  margin-top: 80px;
}

.h2-policy-document-meta {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #4f557e;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.h2-policy-document-meta a {
  min-width: 100px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--h2-muted);
  text-align: center;
}

.h2-policy-document h3 {
  margin: 52px 0 20px;
  padding-top: 30px;
  border-top: 1px solid var(--h2-line);
  font-size: 24px;
  line-height: 34px;
  font-weight: 900;
  word-break: keep-all;
}

.h2-policy-document ul,
.h2-policy-document ol {
  margin: -2px 0 28px;
  padding-left: 28px;
  display: grid;
  gap: 10px;
}

.h2-policy-document li {
  padding-left: 4px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
}

.h2-policy-document .h2-policy-date {
  margin-bottom: 10px;
  color: #4f557e;
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
}

.h2-policy-document .h2-policy-note {
  padding: 16px 18px;
  border-radius: 14px;
  background: #f6f8fb;
  color: #384152;
  font-size: 15px;
  line-height: 26px;
}
.h2-footer {
  position: absolute;
  left: calc((1560px - 100vw) / 2);
  width: 100vw;
  height: 320px;
  background: var(--h2-dark);
  color: #fff;
}

.h2-footer-inner {
  position: relative;
  width: 1560px;
  height: 320px;
  margin: 0 auto;
}

.h2-footer-logo {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 120px;
  height: 69px;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.h2-footer-logo strong {
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.2px;
  white-space: nowrap;
}

.h2-social {
  position: absolute;
  top: 27px;
  width: 60px;
  height: 60px;
  border-radius: 13px;
  display: block;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.h2-social img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.h2-social.kakao {
  left: 176px;
  background: #fbe300;
}

.h2-social.kakao span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 29px;
  border-radius: 50%;
  background: #2b211a;
  color: #fbe300;
  font-size: 9px;
  line-height: 29px;
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, -50%);
}

.h2-social.kakao span::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -4px;
  width: 10px;
  height: 8px;
  background: #2b211a;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.h2-social.insta {
  left: 246px;
  background: radial-gradient(circle at 30% 110%, #ffcc00 0 28%, transparent 48%), radial-gradient(circle at 12% 10%, #780cff 0 25%, transparent 45%), linear-gradient(135deg, #7638fa, #ff0069 58%, #ffd600);
}

.h2-insta-bg,
.h2-insta-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.h2-insta-mark {
  position: absolute;
  inset: 14px;
  border: 5px solid #fff;
  border-radius: 13px;
  box-sizing: border-box;
}

.h2-insta-mark::before,
.h2-insta-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #fff;
}

.h2-insta-mark::before {
  left: 7px;
  top: 7px;
  width: 12px;
  height: 12px;
}

.h2-insta-mark::after {
  right: 5px;
  top: 5px;
  width: 5px;
  height: 5px;
}

.h2-policy {
  position: absolute;
  left: 780px;
  top: 21px;
  display: grid;
  gap: 12px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 900;
}

.h2-policy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.h2-footer-copy {
  position: absolute;
  left: 20px;
  bottom: 36px;
  width: 715px;
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}

.h2-footer-action {
  position: absolute;
  bottom: 36px;
  width: 355px;
  height: 60px;
  padding: 20px 55px 0 17px;
  border-radius: 16px;
  background: #5f5f5f;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
}

.h2-footer-action.contact {
  left: 809px;
}

.h2-footer-action.donate {
  left: 1180px;
}

.h2-footer-action .h2-arrow-small {
  right: 16px;
  bottom: 18px;
  filter: invert(1);
}
.h2-board {
  position: absolute;
  top: 295px;
  height: 240px;
  border-radius: 32px;
  padding: 25px;
}

.h2-guide {
  left: 160px;
  width: 550px;
  background: #99e0ff;
}

.h2-write-wide {
  left: 788px;
  width: 612px;
  background: var(--h2-lost);
}

.h2-write-wide.found {
  background: var(--h2-found);
}

.h2-write-wide.returned {
  background: var(--h2-returned);
}

.h2-board h2 {
  margin: 0;
  font-size: 30px;
  line-height: 35px;
  font-weight: 900;
}

.h2-guide h2 {
  font-size: 30px;
  line-height: 35px;
}

.h2-guide-primary {
  display: block;
  margin-top: 23px;
  font-size: 17px;
  line-height: 24px;
  font-weight: 900;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.h2-guide-secondary {
  margin: 10px 0 0;
  max-width: 490px;
  font-size: 13px;
  line-height: 19px;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.h2-write-wide span:not(.h2-arrow-img) {
  position: absolute;
  left: 25px;
  bottom: 35px;
  color: var(--h2-soft-text);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.h2-write-wide .h2-arrow-large {
  right: 30px;
  bottom: 35px;
}

.h2-filterbar {
  position: absolute;
  left: 160px;
  top: 566px;
  height: 39px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.h2-filter-wrap {
  position: relative;
  flex: 0 0 auto;
  z-index: 35;
}

.h2-filter-wrap.open {
  z-index: 60;
}

.h2-filter {
  position: relative;
  height: 39px;
  min-width: 89px;
  max-width: 170px;
  padding: 0 42px 0 16px;
  border: 2px solid var(--h2-line);
  border-radius: 20px;
  background: #fff;
  color: #000;
  font-size: 15px;
  line-height: 15px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.h2-filter.is-selected {
  border-color: #9c9eb1;
}

.h2-filter.wide {
  min-width: 131px;
}

.h2-filter::after,
.h2-sort::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 12px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #9c9eb1;
  border-bottom: 3px solid #9c9eb1;
  transform: rotate(45deg);
}

.h2-search {
  width: 244px;
  height: 39px;
  border: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  background: #d8d9e5;
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

.h2-search input {
  width: 190px;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

.h2-search input::placeholder {
  color: #000;
  opacity: 1;
}

.h2-search i {
  position: relative;
  width: 15px;
  height: 15px;
  border: 3px solid #000;
  border-radius: 50%;
}

.h2-search i::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 10px;
  height: 3px;
  background: #000;
  transform: rotate(45deg);
}

.h2-sort-wrap {
  position: absolute;
  left: 1174px;
  top: 576px;
  z-index: 35;
}

.h2-sort-wrap.open {
  z-index: 60;
}

.h2-sort {
  position: relative;
  min-width: 106px;
  height: 24px;
  padding-right: 24px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  text-align: left;
}

.h2-sort::after {
  right: 0;
  top: 3px;
  border-color: #000;
}

.h2-dropdown {
  position: absolute;
  display: none;
  min-width: 100px;
  max-height: 242px;
  padding: 14px 13px;
  border: 2px solid #9c9eb1;
  border-radius: 17px;
  gap: 16px;
  overflow-y: auto;
  background: #fff;
  z-index: 20;
  font-size: 13px;
  line-height: 13px;
  font-weight: 900;
}

.h2-filter-wrap.open .h2-dropdown,
.h2-sort-wrap.open .h2-dropdown {
  display: grid;
}

.h2-dropdown button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  font: inherit;
  line-height: 13px;
  text-align: left;
  white-space: nowrap;
}

.h2-dropdown button.is-active {
  color: #21a8ff;
}

.h2-filter-menu {
  left: 0;
  top: 50px;
  min-width: 112px;
}

.h2-sort-menu {
  left: -28px;
  top: 32px;
  width: 124px;
  min-height: 136px;
}

.h2-empty-list {
  position: absolute;
  left: 160px;
  top: 636px;
  width: 1240px;
  height: 180px;
  border: 2px solid var(--h2-line);
  border-radius: 32px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--h2-soft-text);
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
}

.h2-list-pagination {
  position: absolute;
  left: 160px;
  width: 1240px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.h2-list-pagination button {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 2px solid var(--h2-line);
  border-radius: 21px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 900;
}

.h2-list-pagination button.is-active {
  border-color: var(--h2-blue);
  background: var(--h2-blue);
}

.h2-list-pagination button:disabled {
  opacity: .35;
}

.h2-list-pagination span {
  padding: 0 2px;
  font-weight: 900;
}

.h2-found-row-card {
  position: absolute;
  width: 610px;
  height: 326px;
  display: grid;
  grid-template-columns: 233px 307px 70px;
  color: #000;
}

.h2-results .h2-found-row-card {
  content-visibility: auto;
  contain-intrinsic-size: auto 326px;
}

.h2-found-row-card > a:first-child {
  width: 233px;
  height: auto;
  aspect-ratio: var(--h2-flyer-aspect);
  display: grid;
  place-items: center;
  border: 2px solid var(--h2-line);
  border-radius: 17px 0 0 17px;
  overflow: hidden;
  background: #fff;
}

.h2-found-row-card img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  background: var(--h2-muted);
}

.h2-found-list-copy {
  width: 307px;
  height: 326px;
  padding: 25px 22px;
  overflow: hidden;
  background: var(--h2-muted);
}

.h2-found-list-copy strong {
  display: block;
  margin-bottom: 17px;
  font-size: 22px;
  line-height: 22px;
  font-weight: 900;
}

.h2-found-list-copy em {
  display: block;
  margin-bottom: 29px;
  font-size: 16px;
  line-height: 17px;
  font-style: normal;
  font-weight: 500;
}

.h2-found-list-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
}

.h2-found-list-side {
  width: 70px;
  height: 326px;
  border: 2px solid var(--h2-line);
  border-radius: 0 17px 17px 0;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  color: var(--h2-soft-text);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.h2-found-list-side span,
.h2-found-list-side button {
  position: relative;
  width: 100%;
  min-height: 78px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 13px;
  font: inherit;
}

.h2-found-list-side button {
  cursor: pointer;
}

.h2-found-list-side button:hover,
.h2-found-list-side button:focus-visible {
  color: #4e9d13;
  outline: none;
}

.h2-found-list-side .h2-save-icon {
  position: relative;
  display: block;
  width: 35px;
  height: 43px;
  background: var(--h2-found);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 70%, 0 100%);
}

.h2-found-list-side .h2-save-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 27px;
  height: 35px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 70%, 0 100%);
}

.h2-found-list-side span:nth-child(2)::before {
  content: "";
  width: 45px;
  height: 36px;
  border-radius: 50%;
  background: var(--h2-found);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 78%, 96% 100%, 62% 84%, 0 84%);
}

.h2-found-list-side .h2-share-icon {
  width: 42px;
  height: 42px;
  border: 3px solid var(--h2-found);
  border-radius: 50%;
  background: #fff;
  clip-path: none;
  transform: none;
}

.h2-found-list-side .h2-share-icon::before,
.h2-found-list-side .h2-share-icon::after {
  content: none;
  display: none;
}
.h2-live-state,
.h2-detail-empty {
  position: absolute;
  width: 286px;
  height: 256px;
  border: 2px solid #d4d6e4;
  border-radius: 28px;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
  background: #fff;
  color: #4f557e;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  font-weight: 900;
}

.page-home .h2-live-state {
  width: 602px;
  height: 503px;
}

.h2-detail-empty {
  left: 475px;
  top: 260px;
  width: 610px;
  height: 180px;
}

.h2-found-more {
  position: absolute;
  left: 682px;
  top: 2545px;
  width: 196px;
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: var(--h2-blue);
  color: #000;
  font-size: 18px;
  font-weight: 900;
}

.h2-detail-photo {
  position: absolute;
  left: 186px;
  top: 160px;
  width: 560px;
  height: auto;
  aspect-ratio: var(--h2-flyer-aspect);
  border-radius: 32px 32px 0 0;
  object-fit: cover;
  object-position: center top;
  cursor: zoom-in;
  outline: none;
}

.h2-detail-photo:focus-visible {
  box-shadow: 0 0 0 5px rgba(33, 168, 255, .38);
}

.h2-detail-arrow {
  position: absolute;
  top: 526px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  display: grid;
  place-items: center;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  cursor: pointer;
  z-index: 4;
}

.h2-detail-arrow.prev {
  left: 184px;
}

.h2-detail-arrow.next {
  left: 695px;
}

.h2-detail-arrow:hover {
  background: transparent;
  color: #fff;
  opacity: .78;
}

@media (max-width: 1559px) {
  .h2-header {
    left: 0;
    transform: scale(var(--h2-scale));
    transform-origin: top left;
  }

  .h2-stage {
    margin-left: 0;
    transform: scale(var(--h2-scale));
    transform-origin: top left;
  }

  .h2-footer {
    left: 0;
    width: 1560px;
  }
}

.h2-detail-dots {
  position: absolute;
  left: 160px;
  top: 918px;
  width: 613px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 4;
}

.h2-detail-dots button {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(19, 28, 46, .2);
  border-radius: 50%;
  background: rgba(255,255,255,.78);
  box-shadow: 0 6px 16px rgba(15, 23, 42, .18);
  cursor: pointer;
}

.h2-detail-dots button.active {
  width: 36px;
  border-radius: 999px;
  border-color: #001eff;
  background: var(--h2-blue);
}

.h2-detail-head {
  position: absolute;
  left: 788px;
  top: 160px;
  width: 612px;
  height: 125px;
  padding: 24px 25px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  background: var(--h2-muted);
}

.h2-detail-head.found {
  background: var(--h2-found);
}

.h2-detail-head em {
  display: block;
  color: var(--h2-soft-text);
  font-size: 15px;
  line-height: 15px;
  font-style: normal;
  font-weight: 900;
}

.h2-detail-head strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 28px;
  font-weight: 900;
}

.h2-detail-head > div:nth-child(2) > strong { white-space:nowrap; }

.h2-detail-head span {
  display: block;
  margin-top: 9px;
  font-size: 16px;
  line-height: 17px;
  font-weight: 500;
}

.h2-detail-head .h2-terminal-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2f6843;
  font-weight: 800;
  white-space: nowrap;
}

.h2-detail-head .h2-terminal-date b {
  padding: 4px 8px;
  border-radius: 999px;
  background: #dff4e4;
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
}

.h2-detail-head .h2-terminal-date time {
  font: inherit;
}

.h2-detail-meta {
  position: absolute;
  left: 788px;
  top: 284px;
  width: 612px;
  height: 91px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--h2-blue);
  font-size: 29px;
  line-height: 29px;
  font-weight: 900;
}

.h2-detail-meta i {
  width: 3px;
  height: 36px;
  background: var(--h2-navy);
}

.h2-detail-info {
  position: absolute;
  left: 788px;
  top: 375px;
  width: 612px;
  min-height: 570px;
  padding: 52px 55px;
  border: 2px solid var(--h2-line);
  border-radius: 16px;
  background: #fff;
}

.h2-detail-info dl {
  margin: 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 21px;
}

.h2-detail-info dt {
  color: var(--h2-soft-text);
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  text-align: right;
  padding-right: 18px;
}

.h2-detail-info dd {
  margin: 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
}

.h2-detail-info dd.strong {
  font-weight: 900;
}

.h2-preserve-lines {
  white-space: pre-wrap;
  white-space: break-spaces;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.h2-detail-actions,
.h2-downloads {
  position: absolute;
  left: 160px;
  width: 613px;
  border: 2px solid var(--h2-line);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  background: #fff;
}

.h2-detail-actions {
  top: 1010px;
  height: 88px;
  grid-template-columns: repeat(3, 1fr);
}

.h2-downloads {
  top: 1110px;
  height: 88px;
  grid-template-columns: repeat(2, 1fr);
}

.h2-detail-actions button,
.h2-detail-actions a,
.h2-downloads button {
  border: 0;
  border-right: 2px solid var(--h2-line);
  background: transparent;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.h2-detail-actions :last-child,
.h2-downloads :last-child {
  border-right: 0;
}

.h2-found-detail-actions {
  position: absolute;
  left: 788px;
  width: 612px;
  height: 68px;
  border: 2px solid var(--h2-line);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
}

.h2-found-detail-actions button {
  border: 0;
  border-right: 2px solid var(--h2-line);
  background: transparent;
  color: var(--h2-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.h2-found-detail-actions button:last-child {
  border-right: 0;
}

.h2-found-detail-actions button:hover,
.h2-found-detail-actions button:focus-visible,
.h2-found-detail-actions button.is-saved {
  background: #f4fff0;
  color: #4e9d13;
  outline: none;
}

.h2-found-detail-actions i {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.h2-found-detail-actions .h2-save-icon {
  border-radius: 2px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 72%, 0 100%);
}

.h2-found-detail-actions .h2-share-icon {
  position: relative;
  border: 0;
}

.h2-found-detail-actions .h2-share-icon::before {
  content: "↗";
  position: absolute;
  inset: -3px 0 0;
  font-size: 24px;
  line-height: 20px;
}

.h2-downloads button.is-ready {
  background: #f7fbff;
  color: #001eff;
}

.h2-downloads button.is-missing {
  color: #667085;
}

.h2-downloads button[data-home2-download-representative] {
  padding: 12px 16px;
  gap: 5px;
  align-content: center;
}

.h2-downloads button[data-home2-download-representative] strong {
  font-size: 15px;
  font-weight: 900;
}

.h2-downloads button[data-home2-download-representative] span {
  font-size: 11px;
  line-height: 15px;
  font-weight: 600;
}

.h2-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.h2-modal.open {
  display: flex;
}

.h2-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 18, .48);
}

.h2-modal-card {
  position: relative;
  width: min(420px, calc(100vw - 40px));
  padding: 34px 32px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--h2-line);
  box-shadow: 0 24px 80px rgba(15, 23, 42, .22);
  display: grid;
  gap: 14px;
  text-align: left;
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
}

.h2-modal-card strong {
  font-size: 23px;
  line-height: 30px;
  font-weight: 900;
  color: var(--h2-navy);
}

.h2-modal-card p {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  color: #4b5563;
  white-space: pre-line;
}

.h2-modal-share-url {
  width:100%;
  height:46px;
  padding:0 14px;
  border:2px solid var(--h2-line);
  border-radius:10px;
  background:#f7fbff;
  color:var(--h2-navy);
  font-size:14px;
  font-weight:700;
}

.h2-modal-share-url:focus {
  border-color:var(--h2-blue);
  outline:none;
}

.h2-modal-x {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f4f6f8;
  color: var(--h2-navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.h2-modal-primary {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 25px;
  background: var(--h2-blue);
  color: #001eff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.h2-contact-modal .h2-modal-card {
  width: min(650px, calc(100vw - 32px));
  gap: 18px;
}

.h2-contact-modal-copy {
  display: grid;
  gap: 20px;
  color: #303746;
}

.h2-contact-modal-copy p {
  margin: 0;
  color: inherit;
  white-space: normal;
}

.h2-contact-modal-copy b {
  color: var(--h2-navy);
  font-weight: 900;
}

.h2-contact-tip {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #eef9ff;
  font-size: 15px;
  line-height: 23px;
}

.h2-image-modal .h2-modal-backdrop {
  background: rgba(5, 8, 14, .84);
}

.h2-image-modal-card {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 32px));
  height: min(900px, calc(100vh - 32px));
  display: grid;
  place-items: center;
}

.h2-image-modal-card > img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .48);
}

.h2-image-modal-card .h2-modal-x {
  right: 8px;
  top: 8px;
  z-index: 2;
}

.h2-owner-button {
  position: absolute;
  left: 475px;
  width: 610px;
  height: 58px;
  border: 0;
  border-radius: 29px;
  background: #c3cffd;
  color: #001eff;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.h2-owner-button.edit {
  background: var(--h2-blue);
  color: #001eff;
}

.h2-owner-button.delete {
  background: #7900d8;
  color: #fff;
}

.page-found-detail .h2-owner-button {
  left: 788px;
  width: 612px;
}

.h2-related,
.h2-message {
  position: absolute;
  left: 475px;
  width: 610px;
  text-align: center;
}

.h2-related {
  top: 1450px;
}

.h2-message {
  top: 2380px;
}

.h2-related h2,
.h2-message h2 {
  margin: 0;
  font-size: 26px;
  line-height: 26px;
  font-weight: 900;
}

.h2-related > p {
  margin: 16px 0 28px;
  font-size: 14px;
  font-weight: 900;
}

.h2-related-row {
  height: 66px;
  margin-bottom: 4px;
  border: 2px solid var(--h2-found);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 70px 1fr 82px 100px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  text-align: left;
  font-size: 13px;
}

.h2-related-row:nth-of-type(3) {
  background: #e4ffd2;
}

.h2-related-row strong,
.h2-related-row a {
  font-weight: 900;
}

.h2-related-row a {
  height: 29px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #c3cffd;
  color: #001eff;
}

.h2-owner-card {
  width: 610px;
  min-height: 315px;
  margin: 30px auto 17px;
  padding: 28px 38px;
  border: 2px solid var(--h2-blue);
  border-radius: 16px;
  text-align: center;
}

.h2-owner-card img,
.h2-owner-card .h2-avatar {
  width: 86px;
  height: 86px;
  border: 3px solid var(--h2-blue);
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  font-size: 42px;
}

.h2-owner-card strong {
  display: block;
  margin-top: 17px;
  font-size: 18px;
  font-weight: 900;
}

.h2-owner-card p {
  margin: 34px 0 28px;
  font-size: 16px;
  line-height: 27px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.h2-owner-card span {
  margin: 0 14px;
  color: var(--h2-soft-text);
  font-size: 14px;
  font-weight: 900;
}

.h2-login-note {
  height: 150px;
  margin: 64px 0 16px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: var(--h2-blue);
  font-size: 18px;
  font-weight: 900;
}

.h2-comment-box {
  width: 610px;
  height: 150px;
  border: 2px solid var(--h2-line);
  border-radius: 28px;
  padding: 24px;
  resize: none;
  color: #999;
  font-size: 14px;
}

.h2-empty-comment {
  margin-top: 64px;
  color: var(--h2-soft-text);
  font-size: 18px;
  font-weight: 900;
}

.h2-comment-submit {
  width: 160px;
  height: 48px;
  margin-top: 12px;
  border: 0;
  border-radius: 24px;
  background: var(--h2-blue);
  color: #000;
  font-size: 16px;
  font-weight: 900;
}

.h2-comment-list {
  width: 610px;
  margin: 24px auto 0;
  display: grid;
  gap: 14px;
}

.h2-comment-item {
  position: relative;
  width: 610px;
  min-height: 118px;
  border: 2px solid var(--h2-line);
  border-radius: 16px;
  padding: 22px 26px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  text-align: left;
}

.h2-comment-item > img,
.h2-comment-avatar {
  width: 64px;
  height: 64px;
  border: 3px solid var(--h2-blue);
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  object-fit: cover;
  font-size: 30px;
}

.h2-comment-copy {
  min-width: 0;
  padding-right: 44px;
}

.h2-comment-count {
  display: inline-block;
  margin-left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e9f8ff;
  color: #1477a7;
  font-size: 13px;
  line-height: 18px;
  font-weight: 900;
  vertical-align: middle;
}

.h2-comment-delete {
  position: absolute;
  right: 18px;
  top: 18px;
  border: 0;
  background: transparent;
  color: #7b7f98;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.h2-comment-delete:hover {
  color: #d92d20;
  text-decoration: underline;
}

.h2-comment-item strong {
  display: block;
  margin-top: 2px;
  font-size: 17px;
  font-weight: 900;
}

.h2-comment-item p {
  margin: 10px 0 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.h2-comment-item span {
  color: #7b7f98;
  font-size: 13px;
  font-weight: 700;
}

.h2-found-body {
  position: absolute;
  left: 788px;
  top: 315px;
  width: 612px;
  min-height: 420px;
  padding: 35px 42px;
  border: 2px solid var(--h2-line);
  border-radius: 16px;
}

.h2-avatar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.h2-avatar-row img,
.h2-avatar-row .h2-avatar {
  width: 72px;
  height: 72px;
  border: 3px solid var(--h2-blue);
  border-radius: 50%;
  object-fit: cover;
  font-size: 34px;
}

.h2-found-body dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  row-gap: 18px;
  margin: 0 0 36px;
}

.h2-found-body dt {
  color: var(--h2-soft-text);
  font-weight: 900;
}

.h2-found-body dd {
  margin: 0;
  font-weight: 900;
}

.h2-found-body p {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.h2-found-contact {
  position: absolute;
  left: 788px;
  top: 753px;
  width: 612px;
  min-height: 100px;
  padding: 28px 34px;
  border: 2px solid var(--h2-line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 20px;
}

.h2-found-contact b {
  color: var(--h2-soft-text);
}
.h2-form-title {
  position: absolute;
  left: 0;
  top: 162px;
  width: 1560px;
  margin: 0;
  text-align: center;
  font-size: 28px;
  line-height: 36px;
  font-weight: 900;
}

.h2-form-panel {
  position: absolute;
  left: 88px;
  top: 220px;
  width: 1369px;
  min-height: 580px;
  padding-top: 46px;
  border: 3px solid var(--h2-blue);
  border-radius: 28px;
  background: var(--h2-notice);
}

.h2-form-panel.white {
  top: 880px;
  min-height: 720px;
  border-color: var(--h2-line);
  background: #fff;
}

.h2-post-form.is-lost-expanded .h2-form-panel:not(.white) {
  min-height: 850px;
}

.h2-post-form.is-lost-expanded .h2-form-panel.white {
  top: 1130px;
  min-height: 1000px;
}

.h2-form-row {
  min-height: 56px;
  display: grid;
  grid-template-columns: 650px 1fr;
  gap: 22px;
  align-items: center;
}

.h2-form-row > div {
  overflow: visible;
}

.h2-form-row strong {
  justify-self: end;
  font-size: 16px;
  line-height: 16px;
  font-weight: 900;
}

.h2-form-row.choice {
  min-height: auto;
  margin: 8px 0 16px;
  align-items: start;
}

.h2-form-row.choice strong {
  padding-top: 10px;
}

.h2-form-row.upload {
  min-height: 118px;
  align-items: start;
  margin-top: 4px;
}

.h2-form-row.upload strong {
  padding-top: 31px;
}

.h2-form-row input,
.h2-form-row textarea {
  width: 350px;
  height: 42px;
  border: 2px solid #cfd1dc;
  border-radius: 4px;
  background: transparent;
  padding: 0 12px;
  color: #111;
  font-size: 15px;
}

.h2-form-row.privacy {
  min-height: 68px;
}

.h2-private-contact {
  width: 350px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--h2-soft-text);
  font-size: 13px;
  line-height: 18px;
}

.h2-private-contact b {
  color: #111;
  font-size: 16px;
}

.h2-form-row textarea {
  height: 108px;
  padding-top: 10px;
  resize: none;
}

.h2-select-pill,
.h2-file-pill,
.h2-region-pill {
  height: 39px;
  min-width: 88px;
  margin-right: 8px;
  border: 2px solid #cfd1dc;
  border-radius: 20px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 900;
}

.h2-file-pill input {
  display: none;
}

.h2-select-wrap {
  position: relative;
  display: inline-block;
  vertical-align: top;
  z-index: 35;
}

.h2-select-wrap.open {
  z-index: 80;
}

.h2-select-wrap.open .h2-dropdown {
  display: grid;
}

.h2-select-pill {
  padding: 0 34px 0 14px;
  position: relative;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.h2-select-pill.is-selected {
  border-color: #9c9eb1;
}

.h2-select-pill::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 12px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #9c9eb1;
  border-bottom: 3px solid #9c9eb1;
  transform: rotate(45deg);
}

.h2-form-menu {
  left: 0;
  top: 49px;
  min-width: 118px;
  max-height: 236px;
}

.h2-multi-pill {
  min-width: 212px;
}

.h2-multi-menu {
  min-width: 150px;
}

.h2-form-choice-grid {
  width: 620px;
  display: grid;
  grid-template-columns: repeat(5, minmax(96px, 1fr));
  gap: 10px 12px;
}

.h2-form-choice {
  position: relative;
  min-height: 36px;
  border: 2px solid #cfd1dc;
  border-radius: 4px;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 900;
  text-align: center;
}

.h2-form-choice:hover {
  border-color: #9c9eb1;
}

.h2-form-choice.is-active {
  border-color: #4f557e;
  background: var(--h2-notice);
  color: #4f557e;
}

.h2-color-swatch {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 1px solid #cfd1dc;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.h2-form-choice-hint {
  width: 620px;
  margin: 7px 0 0;
  color: var(--h2-soft-text);
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
}

.h2-file-pill {
  width: 110px;
}

.h2-file-input {
  display: none;
}

.h2-upload-zone {
  width: 456px;
}

.h2-upload-slots {
  display: flex;
  gap: 8px;
  margin-top: 0;
}

.h2-upload-slot {
  position: relative;
  width: 80px;
  height: 82px;
  border: 2px solid var(--h2-line);
  border-radius: 4px;
  background: var(--h2-muted);
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.h2-upload-slot:hover,
.h2-upload-slot:focus-visible,
.h2-upload-zone.is-dragover .h2-upload-slot {
  outline: 0;
  border-color: #4f557e;
  background: var(--h2-notice);
}

.h2-upload-slot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.h2-upload-icon {
  position: relative;
  width: 30px;
  height: 25px;
  border: 3px solid #9c9eb1;
  border-radius: 5px;
}

.h2-upload-icon::before {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9c9eb1;
}

.h2-upload-icon i {
  position: absolute;
  left: 4px;
  bottom: 4px;
  width: 18px;
  height: 12px;
  overflow: hidden;
}

.h2-upload-icon i::before,
.h2-upload-icon i::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #9c9eb1;
  transform: rotate(45deg);
}

.h2-upload-icon i::before {
  left: -2px;
}

.h2-upload-icon i::after {
  left: 9px;
  width: 13px;
  height: 13px;
}

.h2-upload-remove {
  position: absolute;
  right: 5px;
  bottom: 5px;
  height: 24px;
  border: 0;
  border-radius: 12px;
  background: rgba(5, 5, 5, 0.72);
  color: #fff;
  padding: 0 9px;
  opacity: 0;
  pointer-events: none;
  font-size: 11px;
  line-height: 24px;
  font-weight: 900;
  transition: opacity 0.15s ease;
}

.h2-upload-slot.has-preview:hover .h2-upload-remove,
.h2-upload-slot.has-preview:focus-within .h2-upload-remove {
  opacity: 1;
  pointer-events: auto;
}

.h2-form-submit {
  position: absolute;
  left: 520px;
  top: 1680px;
  width: 520px;
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: var(--h2-blue);
  font-size: 18px;
  font-weight: 900;
}

.h2-form-consents {
  position: absolute;
  left: 88px;
  top: 1640px;
  width: 1369px;
  min-height: 520px;
  padding: 34px 52px;
  border: 2px solid #d9dce8;
  border-radius: 28px;
  background: #fff;
  display: grid;
  gap: 12px;
}

.h2-post-form.is-lost-expanded .h2-form-consents {
  top: 2170px;
}

.h2-form-consents header {
  margin-bottom: 6px;
}

.h2-form-consents h2,
.h2-form-consents p {
  margin: 0;
}

.h2-form-consents h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 900;
}

.h2-form-consents header p {
  margin-top: 4px;
  color: var(--h2-soft-text);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}

.h2-form-consents > label {
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid #e0e2ea;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
}

.h2-form-consents input {
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: #369bd1;
}

.h2-form-consents label b {
  color: #b3263b;
  font-size: 12px;
}

.h2-form-consents a {
  color: #4f557e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.h2-form-consents .h2-form-consent-note {
  padding: 0 14px;
  color: #6c7185;
  font-size: 12px;
  line-height: 19px;
  font-weight: 700;
}

.h2-form-minor-guardian {
  display: none !important;
  border-color: #f2c9a9 !important;
  background: #fff8ef;
}

.h2-form-consents:has(input[name="minorApplicant"]:checked) .h2-form-minor-guardian {
  display: flex !important;
}

.has-legal-consents .h2-form-submit {
  top: 2220px;
}

.h2-post-form.is-lost-expanded .h2-form-submit {
  top: 2750px;
}

.has-legal-consents .h2-form-status {
  top: 2290px;
}

.h2-post-form.is-lost-expanded .h2-form-status {
  top: 2820px;
}

.h2-form-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}

.h2-form-status {
  position: absolute;
  left: 500px;
  top: 1750px;
  width: 560px;
  margin: 0;
  color: #4f557e;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 900;
}
.h2-auth-graphic {
  position: absolute;
  left: 132px;
  top: 153px;
  width: 610px;
  height: 762px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--h2-muted);
}

.h2-auth-graphic h2 {
  position: absolute;
  left: 0;
  top: 88px;
  width: 100%;
  margin: 0;
  text-align: center;
  font-family: inherit;
  font-size: 42px;
  line-height: 42px;
  font-weight: 700;
}

.h2-face {
  position: absolute;
  left: -52px;
  right: -52px;
  bottom: 0;
  height: 528px;
  background: var(--h2-blue);
  border-radius: 50% 50% 0 0 / 18% 18% 0 0;
}

.h2-face::before {
  content: "";
  position: absolute;
  left: 294px;
  top: -10px;
  width: 90px;
  height: 70px;
  border-radius: 0 0 50px 50px;
  background: var(--h2-muted);
}

.h2-face i {
  position: absolute;
  top: 146px;
  width: 80px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
}

.h2-face i:first-child {
  left: 174px;
}

.h2-face i:nth-child(2) {
  right: 174px;
}

.h2-face b {
  position: absolute;
  left: 293px;
  top: 257px;
  width: 98px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
}

.h2-auth-graphic p {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
}

.h2-auth-graphic a {
  margin-left: 14px;
  text-decoration: underline;
}

.h2-auth-panel {
  position: absolute;
  left: 842px;
  top: 238px;
  width: 462px;
  color: #000;
}

.h2-auth-panel.choice {
  top: 234px;
}

.h2-auth-panel.signup {
  top: 154px;
  width: 520px;
}

.h2-auth-panel h1 {
  margin: 0 0 50px;
  text-align: center;
  font-family: inherit;
  font-size: 42px;
  line-height: 42px;
  font-weight: 700;
}

.h2-auth-field {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 900;
}

.h2-auth-field input {
  width: 292px;
  height: 50px;
  border: 2px solid #9c9eb1;
  border-radius: 6px;
}

.h2-keep-login {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 20px;
  font-size: 15px;
  font-weight: 700;
}

.h2-keep-login input {
  width: 20px;
  height: 20px;
}

.h2-auth-primary {
  width: 462px;
  height: 80px;
  border: 0;
  border-radius: 14px;
  background: var(--h2-blue);
  font-size: 26px;
  font-weight: 900;
}

.h2-auth-primary:disabled,
.h2-phone-send:disabled,
.h2-code-row button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.h2-phone-login-btn {
  width: 462px;
  height: 44px;
  margin-top: 12px;
  border: 2px solid var(--h2-blue);
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 900;
}

.h2-code-row {
  display: none;
  grid-template-columns: 1fr 118px;
  gap: 10px;
  width: 462px;
  margin-top: 12px;
}

.h2-code-row.open {
  display: grid;
}

.h2-code-row.signup {
  width: 370px;
  margin: -6px 0 12px 160px;
}

.h2-code-row input {
  min-width: 0;
  height: 44px;
  border: 1px solid #999;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 800;
}

.h2-code-row button {
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--h2-blue);
  color: #000;
  font-size: 14px;
  font-weight: 900;
}

.h2-auth-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #4f557e;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  text-align: center;
  word-break: keep-all;
}

.h2-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.h2-social-title {
  margin: 40px 0 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.h2-social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.h2-social-buttons button {
  width: 100px;
  height: 100px;
  border: 0;
  border-radius: 50%;
  color: #000;
  font-size: 18px;
  font-weight: 900;
}

.h2-social-buttons button:first-child,
.h2-choice-btn.green {
  background: #a2efbd;
}

.h2-social-buttons button:nth-child(2),
.h2-choice-btn.yellow {
  background: #fbff68;
}

.h2-social-buttons button:nth-child(3),
.h2-choice-btn.gray {
  background: var(--h2-muted);
}

.h2-auth-switch {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 900;
}

.h2-auth-switch a {
  width: 113px;
  height: 50px;
  border-radius: 25px;
  display: grid;
  place-items: center;
  background: var(--h2-blue);
}

.h2-choice-btn {
  width: 462px;
  height: 80px;
  margin-bottom: 20px;
  border: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--h2-blue);
  color: #000;
  font-size: 18px;
  font-weight: 900;
}

.h2-choice-line {
  width: 462px;
  height: 3px;
  margin: 40px 0;
  background: var(--h2-line);
}

.h2-signup-row {
  display: grid;
  grid-template-columns: 150px 270px 24px;
  align-items: start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 900;
}

.h2-signup-profile-photo {
  display:grid;
  grid-template-columns:150px 70px 1fr;
  align-items:center;
  gap:10px;
  margin:-28px 0 14px;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}

.h2-signup-profile-photo img {
  width:64px;
  height:64px;
  border:1px solid #999;
  border-radius:50%;
  object-fit:cover;
}

.h2-signup-preview {
  width:64px;
  height:64px;
  border:1px solid #999;
  font-size:32px;
}

.h2-signup-profile-photo input {
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}

.h2-signup-profile-photo em {
  width:92px;
  height:38px;
  border-radius:19px;
  display:grid;
  place-items:center;
  background:var(--h2-blue);
  font-size:14px;
  font-style:normal;
}

.h2-signup-row.is-phone {
  grid-template-columns: 150px 176px 24px 84px;
}

.h2-signup-row input {
  width: 270px;
  height: 46px;
  border: 1px solid #999;
}

.h2-signup-row.is-phone input {
  width: 176px;
}

.h2-signup-row small {
  grid-column: 2 / 4;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  text-decoration: underline;
}

.h2-check {
  width: 20px;
  height: 20px;
  border: 1px solid #777;
  border-radius: 50%;
}

.h2-check.is-verified {
  border-color: #4f557e;
  background: var(--h2-blue);
  position: relative;
}

.h2-check.is-verified::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.h2-phone-send {
  width: 84px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--h2-blue);
  color: #000;
  font-size: 13px;
  font-weight: 900;
}

.h2-region-set {
  display: grid;
  grid-template-columns: 150px 112px 112px;
  gap: 14px 16px;
  align-items: center;
  margin: 28px 0;
  font-size: 17px;
  font-weight: 900;
}

.h2-region-pill {
  width: 112px;
  background: #fff;
}

.h2-region-set .h2-select-wrap,
.h2-region-set .h2-region-pill {
  width: 112px;
}

.h2-region-set .h2-form-menu {
  min-width: 112px;
  max-height: 186px;
}

.h2-region-set .h2-dropdown button {
  font-size: 13px;
  line-height: 14px;
}

.h2-agree-copy {
  margin: 24px 0;
  text-align: center;
  font-size: 15px;
  line-height: 22px;
  font-weight: 900;
}

.h2-terms {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  font-size: 15px;
}

.h2-terms input {
  width: 18px;
  height: 18px;
}

.h2-signup-submit {
  width: 520px;
  height: 64px;
  margin-top: 14px;
  border-radius: 12px;
  font-size: 22px;
}

.h2-mypage .h2-auth-primary {
  margin-top: 24px;
}

.h2-profile-card {
  width: 462px;
  min-height: 170px;
  border: 2px solid var(--h2-line);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 84px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px 18px;
  align-items: center;
  padding: 24px;
  box-sizing: border-box;
}

.h2-profile-card img {
  grid-row: 1 / 3;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
}

.h2-profile-card strong {
  align-self: end;
  font-size: 24px;
  line-height: 28px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.h2-profile-card span {
  align-self: start;
  color: #4f557e;
  font-size: 15px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.h2-mypage-shell {
  position: absolute;
  left: 160px;
  top: 148px;
  width: 1240px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  color: var(--h2-ink);
}

.h2-my-hero {
  grid-column: 1 / -1;
  min-height: 224px;
  border: 1px solid #8ed8f8;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 34px 38px;
  background: linear-gradient(135deg, #e5f8ff 0%, #a6e6ff 62%, #b9f2dc 125%);
  box-shadow: 0 18px 44px rgba(33, 96, 132, .11);
}

.h2-my-avatar {
  width: 112px;
  height: 112px;
  border: 4px solid #fff;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 26px rgba(31, 90, 122, .14);
  font-size: 52px;
}

.h2-my-hero-copy {
  min-width: 0;
}

.h2-my-hero-copy > p,
.h2-my-panel-head > div > span,
.h2-my-library-head > div > span {
  margin: 0 0 9px;
  color: #274f64;
  letter-spacing: .1em;
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
}

.h2-my-hero-copy h1 {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 39px;
  line-height: 48px;
  font-weight: 900;
}

.h2-my-hero-copy h1 span {
  margin-left: 7px;
  font-size: 26px;
  font-weight: 800;
}

.h2-my-provider-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 14px;
}

.h2-my-provider-badges b,
.h2-my-provider-badges em {
  min-height: 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  background: rgba(255, 255, 255, .78);
  color: #25394a;
  font-size: 12px;
  line-height: 28px;
  font-style: normal;
  font-weight: 900;
}

.h2-my-provider-badges em {
  border: 1px solid rgba(39, 79, 100, .18);
  background: transparent;
}

.h2-my-hero nav {
  display: grid;
  gap: 9px;
  justify-items: stretch;
}

.h2-my-hero nav button {
  min-width: 128px;
  height: 46px;
  border: 0;
  border-radius: 23px;
  padding: 0 20px;
  background: #fff;
  color: #001eff;
  box-shadow: 0 6px 18px rgba(33, 96, 132, .08);
  font-size: 14px;
  font-weight: 900;
}

.h2-my-hero nav .h2-my-logout {
  border: 1px solid rgba(53, 59, 87, .18);
  background: rgba(255, 255, 255, .42);
  color: #353b57;
  box-shadow: none;
}

.h2-my-hero nav button:hover,
.h2-my-hero nav button:focus-visible {
  background: #001eff;
  color: #fff;
  outline: 3px solid rgba(0, 30, 255, .18);
  outline-offset: 2px;
}

.h2-my-hero nav button:disabled,
.h2-my-form-actions button:disabled,
.h2-my-unsave:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

.h2-my-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.h2-my-stats a {
  min-height: 128px;
  border: 1px solid var(--h2-line);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-content: center;
  padding: 20px 22px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.h2-my-stats a:hover,
.h2-my-stats a:focus-visible {
  border-color: #74d5ff;
  box-shadow: 0 10px 28px rgba(38, 92, 126, .1);
  outline: 3px solid rgba(0, 30, 255, .1);
  outline-offset: 1px;
  transform: translateY(-2px);
}

.h2-my-stats a > span {
  color: #5b617c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 900;
}

.h2-my-stats strong {
  grid-row: span 2;
  align-self: center;
  color: #001eff;
  font-size: 34px;
  line-height: 38px;
  font-weight: 900;
}

.h2-my-stats em {
  color: #9397aa;
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
  font-weight: 800;
}

.h2-my-stat-loading {
  color: #a7abbd;
}

.h2-my-panel {
  min-height: 360px;
  border: 1px solid var(--h2-line);
  border-radius: 22px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(40, 47, 86, .055);
}

.h2-my-profile-panel {
  grid-column: span 4;
}

.h2-my-library-panel {
  grid-column: span 8;
}

.h2-my-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 21px;
}

.h2-my-panel-head h2,
.h2-my-library-head h2 {
  margin: 0;
  font-size: 25px;
  line-height: 32px;
  font-weight: 900;
}

.h2-my-account-list {
  margin: 0;
}

.h2-my-account-row {
  min-height: 58px;
  border-bottom: 1px solid #eceef5;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.h2-my-account-row:last-child {
  border-bottom: 0;
}

.h2-my-account-row dt {
  color: #858a9f;
  font-size: 13px;
  font-weight: 900;
}

.h2-my-account-row dd {
  min-width: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.h2-my-account-row dd > span {
  min-width: 0;
  overflow: hidden;
  color: #24283b;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.h2-my-account-badge {
  flex: 0 0 auto;
  min-height: 24px;
  border-radius: 12px;
  padding: 0 8px;
  background: #f2f3f8;
  color: #777d93;
  font-size: 10px;
  line-height: 24px;
  font-style: normal;
  font-weight: 900;
}

.h2-my-account-badge.is-verified {
  background: #e7f8ef;
  color: #167246;
}

.h2-my-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.h2-my-primary,
.h2-my-request {
  min-height: 42px;
  border-radius: 21px;
  display: inline-grid;
  place-items: center;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.h2-my-primary {
  background: var(--h2-blue);
  color: #001eff;
}

.h2-my-request {
  background: #f1f2f7;
  color: #4b5067;
}

.h2-my-write-shortcuts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--h2-line);
}

.h2-my-write-shortcuts a {
  min-height: 82px;
  border-radius: 14px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 13px 14px;
  background: #fffed9;
}

.h2-my-write-shortcuts a + a {
  background: #edffe0;
}

.h2-my-write-shortcuts strong {
  font-size: 14px;
  line-height: 19px;
  font-weight: 900;
}

.h2-my-write-shortcuts span {
  color: #73778a;
  font-size: 11px;
  line-height: 16px;
  font-weight: 800;
}

.h2-my-write-shortcuts a:hover,
.h2-my-write-shortcuts a:focus-visible {
  outline: 3px solid rgba(0, 30, 255, .14);
  outline-offset: 1px;
}

.h2-my-profile-form {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.h2-my-profile-form label:not(.h2-my-photo-picker) {
  display: grid;
  gap: 7px;
}

.h2-my-profile-form label:not(.h2-my-photo-picker) > span {
  color: #727891;
  font-size: 12px;
  font-weight: 900;
}

.h2-my-profile-form input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--h2-line);
  border-radius: 12px;
  padding: 0 13px;
  color: #24283b;
  font-weight: 800;
  outline: 0;
}

.h2-my-profile-form input:focus {
  border-color: #74d5ff;
  box-shadow: 0 0 0 3px rgba(116, 213, 255, .22);
}

.h2-my-profile-form input:disabled {
  background: #f5f6fa;
  color: #74798d;
}

.h2-my-profile-form small {
  color: #9296a8;
  font-size: 10px;
  line-height: 15px;
  font-weight: 700;
}

.h2-my-photo-picker {
  grid-row: span 4;
  display: grid;
  place-items: center;
  gap: 7px;
  cursor: pointer;
  text-align: center;
}

.h2-my-photo-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.h2-my-photo-picker > span {
  color: #001eff;
  font-size: 12px;
  font-weight: 900;
}

.h2-my-edit-avatar {
  width: 86px;
  height: 86px;
  border: 3px solid #edf0f8;
  font-size: 42px;
}

.h2-my-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 8px;
}

.h2-my-form-actions button {
  min-width: 0;
  height: 44px;
  border: 0;
  border-radius: 22px;
  background: var(--h2-blue);
  color: #001eff;
  font-size: 12px;
  font-weight: 900;
}

.h2-my-form-actions button + button {
  background: #f0f2f7;
  color: #4d5269;
}

.h2-my-status {
  grid-column: 1 / -1;
  min-height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin: 16px 0 0;
  padding: 9px 12px;
  background: #eaf9f1;
  color: #167246;
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
}

.h2-my-status.is-progress {
  background: #edf6ff;
  color: #2458a6;
}

.h2-my-status.is-error {
  background: #fff1f1;
  color: #a52a2a;
}

.h2-my-library-head {
  min-height: 68px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.h2-my-library-head p {
  margin: 5px 0 0;
  color: #74798e;
  font-size: 13px;
  line-height: 19px;
  font-weight: 700;
}

.h2-my-library-head > strong {
  flex: 0 0 auto;
  color: #001eff;
  font-size: 36px;
  line-height: 42px;
  font-weight: 900;
}

.h2-my-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--h2-line);
}

.h2-my-tabs a {
  min-height: 48px;
  border-bottom: 3px solid transparent;
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  color: #727891;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
}

.h2-my-tabs a.active {
  border-bottom-color: #001eff;
  color: #001eff;
}

.h2-my-tabs a:focus-visible {
  border-radius: 9px 9px 0 0;
  outline: 3px solid rgba(0, 30, 255, .15);
  outline-offset: -2px;
}

.h2-my-tabs a > span {
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  background: #edf0ff;
  color: #001eff;
  box-sizing: border-box;
  font-size: 10px;
  line-height: 22px;
}

.h2-my-tabpanel {
  min-height: 230px;
}

.h2-my-post-list,
.h2-my-notification-list {
  display: grid;
  gap: 10px;
}

.h2-my-post-row,
.h2-my-notification-item {
  position: relative;
  margin: 0;
}

.h2-my-post {
  min-height: 94px;
  border: 1px solid var(--h2-line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 68px;
  gap: 14px;
  align-items: center;
  padding: 10px 14px 10px 10px;
  background: #fff;
  transition: border-color .18s ease, background .18s ease;
}

.h2-my-post:hover,
.h2-my-post:focus-visible {
  border-color: #74d5ff;
  background: #f9fdff;
  outline: 3px solid rgba(0, 30, 255, .09);
  outline-offset: 1px;
}

.h2-my-post img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--h2-muted);
}

.h2-my-post-copy {
  min-width: 0;
}

.h2-my-post b,
.h2-my-post em {
  display: block;
  overflow: hidden;
  color: #7b7f98;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  line-height: 17px;
  font-style: normal;
  font-weight: 800;
}

.h2-my-post b {
  color: #001eff;
}

.h2-my-post strong {
  display: block;
  margin: 4px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  line-height: 21px;
  font-weight: 900;
}

.h2-my-post > i,
.h2-my-notification-link > i {
  justify-self: end;
  color: #001eff;
  font-size: 11px;
  line-height: 16px;
  font-style: normal;
  font-weight: 900;
}

.h2-my-post-row:has(.h2-my-unsave) .h2-my-post {
  padding-right: 108px;
}

.h2-my-unsave {
  position: absolute;
  right: 13px;
  top: 50%;
  z-index: 2;
  min-width: 76px;
  height: 36px;
  border: 0;
  border-radius: 18px;
  background: #edf0ff;
  color: #001eff;
  font-size: 11px;
  font-weight: 900;
  transform: translateY(-50%);
}

.h2-my-unsave:hover,
.h2-my-unsave:focus-visible {
  background: #001eff;
  color: #fff;
  outline: 3px solid rgba(0, 30, 255, .15);
}

.h2-my-list-state {
  min-height: 230px;
  border: 1px dashed #d3d6e3;
  border-radius: 16px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  margin: 0;
  padding: 28px;
  background: #f8f9fc;
  color: #727891;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
}

.h2-my-list-empty strong {
  color: #454a62;
  font-size: 15px;
}

.h2-my-list-empty span {
  max-width: 360px;
}

.h2-my-list-empty a {
  min-height: 40px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-top: 3px;
  padding: 0 16px;
  background: var(--h2-blue);
  color: #001eff;
  font-size: 12px;
  font-weight: 900;
}

.h2-my-list-error {
  border-style: solid;
  border-color: #ffd0d0;
  background: #fff4f4;
  color: #a52a2a;
}

.h2-my-state-dot {
  width: 28px;
  height: 28px;
  border: 3px solid #dce0ec;
  border-top-color: #001eff;
  border-radius: 50%;
  animation: h2-my-spin .8s linear infinite;
}

.h2-my-list-state.is-loading::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 3px solid #dce0ec;
  border-top-color: #001eff;
  border-radius: 50%;
  animation: h2-my-spin .8s linear infinite;
}

@keyframes h2-my-spin {
  to { transform: rotate(360deg); }
}

.h2-my-notification-link {
  min-height: 124px;
  border: 1px solid var(--h2-line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 62px;
  gap: 13px;
  align-items: center;
  padding: 14px 15px;
  background: #fff;
}

.h2-my-notification-item.is-unread .h2-my-notification-link {
  border-color: #9ddfff;
  background: #f4fbff;
  box-shadow: inset 4px 0 0 #001eff;
}

.h2-my-notification-link:hover,
.h2-my-notification-link:focus-visible {
  border-color: #74d5ff;
  outline: 3px solid rgba(0, 30, 255, .1);
  outline-offset: 1px;
}

.h2-my-notification-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ddf5ff;
  color: #24306e;
}

.h2-my-notification-icon .h2-notification-icon {
  width: 20px;
  height: 20px;
}

.h2-my-notification-copy {
  min-width: 0;
}

.h2-my-notification-copy b {
  display: block;
  color: #001eff;
  font-size: 11px;
  line-height: 17px;
  font-weight: 900;
}

.h2-my-notification-copy strong {
  display: block;
  margin: 3px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  line-height: 21px;
  font-weight: 900;
}

.h2-my-notification-copy p {
  display: -webkit-box;
  margin: 0 0 3px;
  overflow: hidden;
  color: #353b57;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.h2-my-notification-copy em {
  display: block;
  overflow: hidden;
  color: #7b7f98;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  line-height: 16px;
  font-style: normal;
  font-weight: 800;
}

.h2-my-auth-required {
  grid-column: 1 / -1;
  min-height: 430px;
  border: 1px solid #b8e8fb;
  border-radius: 28px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 42px;
  background: linear-gradient(145deg, #edfbff, #d9f4ff);
  text-align: center;
}

.h2-my-auth-required > span:not(.h2-my-state-dot) {
  color: #274f64;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
}

.h2-my-auth-required h1 {
  margin: 0;
  font-size: 31px;
  line-height: 39px;
  font-weight: 900;
}

.h2-my-auth-required p {
  max-width: 520px;
  margin: 0;
  color: #5b617c;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}

.h2-my-auth-required nav {
  display: flex;
  gap: 9px;
  margin-top: 10px;
}

.h2-my-auth-required nav a {
  min-width: 130px;
  height: 44px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #001eff;
  font-size: 13px;
  font-weight: 900;
}

.h2-my-auth-required nav .h2-my-login-primary {
  background: #001eff;
  color: #fff;
}
@media (max-width: 1024px) {
  html,
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .h2-app {
    min-width: 0;
  }

  .h2-header {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding: 10px 12px 12px;
    display: grid;
    grid-template-columns: 62px repeat(3, minmax(0, 1fr)) 82px;
    gap: 8px;
    align-items: center;
    transform: none !important;
    box-shadow: 0 1px 0 rgba(216, 217, 229, .9);
  }

  .h2-logo,
  .h2-pill,
  .h2-account,
  .h2-login,
  .h2-user {
    position: static;
    left: auto;
    right: auto;
    top: auto;
  }

  .h2-logo {
    width: 62px;
    height: 36px;
  }

  .h2-pill {
    width: 100%;
    height: 44px;
    padding: 6px 7px;
    border-radius: 13px;
    font-size: 12px;
    line-height: 15px;
  }

  .h2-pill.active-lost,
  .h2-pill.active-found,
  .h2-pill.active-returned {
    padding: 4px 5px;
  }

  .h2-login {
    width: 60px;
    height: 32px;
    justify-self: end;
    font-size: 13px;
  }

  .h2-account {
    position: relative;
    grid-column: 5;
    justify-self: end;
    width: 82px;
    height: 44px;
    gap: 4px;
  }

  .h2-notification {
    width: 44px;
    height: 44px;
  }

  .h2-notification-icon {
    width: 20px;
    height: 20px;
  }

  .h2-notification-badge {
    right: -5px;
    top: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: 9px;
    line-height: 14px;
  }

  .h2-notification-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 66px;
    width: auto;
    max-height: calc(100vh - 78px);
    max-height: calc(100dvh - 78px);
    border-radius: 16px;
    box-sizing: border-box;
  }

  .h2-notification-panel-head {
    min-height: 58px;
    padding: 12px 14px;
  }

  .h2-notification-panel-head strong {
    font-size: 18px;
    line-height: 24px;
  }

  .h2-notification-list {
    max-height: calc(100vh - 196px);
    max-height: calc(100dvh - 196px);
    scrollbar-gutter: auto;
  }

  .h2-notification-item {
    padding: 13px 14px;
  }

  .h2-notification-item.is-unread {
    padding-left: 22px;
  }

  .h2-notification-item.is-unread::before {
    left: 10px;
    top: 20px;
  }

  .h2-notification-item > strong {
    font-size: 14px;
    line-height: 19px;
  }

  .h2-notification-item-meta {
    gap: 7px;
  }

  .h2-notification-state {
    min-height: 132px;
  }

  .h2-notification-all {
    height: 46px;
  }

  .h2-user {
    justify-self: end;
    width: 32px;
    max-width: 32px;
    height: 38px;
    gap: 0;
    font-size: 13px;
  }

  .h2-user-name {
    display: none;
  }

  .h2-user img,
  .h2-user .h2-avatar {
    width: 32px;
    height: 32px;
    border-width: 2px;
    font-size: 18px;
  }

  .h2-stage {
    width: 100%;
    height: auto !important;
    min-height: 100vh;
    margin: 0 !important;
    padding: 22px 16px 0;
    display: grid;
    gap: 16px;
    transform: none !important;
  }

  .h2-title,
  .h2-card,
  .h2-pet-card,
  .h2-found-photo,
  .h2-found-copy,
  .h2-notice,
  .h2-info,
  .h2-about,
  .h2-about-hero,
  .h2-about-band,
  .h2-static-hero,
  .h2-static-list,
  .h2-guide-steps,
  .h2-static-panel,
  .h2-policy-document,
  .h2-board,
  .h2-filterbar,
  .h2-sort-wrap,
  .h2-empty-list,
  .h2-found-row-card,
  .h2-live-state,
  .h2-detail-empty,
  .h2-detail-photo,
  .h2-detail-dots,
  .h2-detail-head,
  .h2-detail-meta,
  .h2-detail-info,
  .h2-detail-actions,
  .h2-found-detail-actions,
  .h2-downloads,
  .h2-owner-button,
  .h2-related,
  .h2-message,
  .h2-found-body,
  .h2-found-contact,
  .h2-form-title,
  .h2-form-panel,
  .h2-form-submit,
  .h2-form-status,
  .h2-auth-graphic,
  .h2-auth-panel,
  .h2-mypage-shell,
  .h2-found-more,
  .h2-list-pagination {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100%;
    margin: 0;
    transform: none !important;
  }

  .h2-title {
    text-align: left;
    font-size: 34px;
    line-height: 41px;
    word-break: keep-all;
  }

  .h2-card,
  .h2-report,
  .h2-side,
  .h2-info,
  .h2-about,
  .h2-board,
  .h2-write-wide {
    position: relative !important;
    border-radius: 24px;
  }

  .h2-report {
    min-height: 420px;
    height: auto;
    padding: 22px;
  }

  .h2-report strong {
    font-size: 27px;
    line-height: 34px;
  }

  .h2-report p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 24px;
    word-break: keep-all;
  }

  .h2-side {
    height: 104px;
    min-height: 104px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .h2-side .h2-arrow-small,
  .h2-report .h2-arrow-large,
  .h2-write-wide .h2-arrow-large,
  .h2-info .h2-arrow-small,
  .h2-footer-action .h2-arrow-small {
    left: auto;
    right: 22px;
    bottom: 22px;
  }

  .h2-pet-card,
  .h2-pet-card.list {
    height: auto;
    border-radius: 24px;
  }

  .h2-location,
  .h2-pet-card.list .h2-location {
    height: 44px;
    font-size: 18px;
    line-height: 18px;
  }

  .h2-pet-card img,
  .h2-pet-card.list img {
    width: 100%;
    height: auto;
    aspect-ratio: var(--h2-flyer-aspect);
    object-fit: cover;
  }

  .h2-meta,
  .h2-pet-card.list .h2-meta {
    height: 54px;
    gap: 8px;
    padding: 0 12px;
    font-size: 17px;
    line-height: 18px;
  }

  .h2-meta i {
    height: 18px;
  }

  .h2-found-photo {
    height: auto;
    aspect-ratio: var(--h2-flyer-aspect);
    border-radius: 24px;
  }

  .h2-found-copy {
    height: auto;
    min-height: 260px;
    padding: 22px;
    border-radius: 24px;
  }

  .h2-found-copy p {
    height: auto;
    max-height: none;
  }

  .h2-notice {
    min-height: 112px;
    height: auto;
    padding: 18px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px 12px;
    align-items: center;
  }

  .h2-notice h2 {
    margin: 0;
    font-size: 24px;
    line-height: 26px;
  }

  .h2-notice p,
  .h2-notice nav {
    grid-column: 1 / -1;
  }

  .h2-notice p {
    font-size: 14px;
    line-height: 21px;
  }

  .h2-notice nav {
    margin: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .h2-info,
  .h2-about {
    height: auto;
    min-height: 190px;
    padding: 24px 22px;
  }

  .h2-info p,
  .h2-about p,
  .h2-about a {
    position: static;
    width: auto;
  }

  .h2-info p,
  .h2-about p {
    margin-top: 42px;
    font-size: 15px;
    line-height: 25px;
    word-break: keep-all;
  }

  .h2-about a {
    display: inline-block;
    margin-top: 12px;
  }

  .h2-about-hero,
  .h2-about-band,
  .h2-static-hero,
  .h2-static-panel {
    height: auto;
    min-height: 0;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .h2-about-hero h1,
  .h2-static-hero h1 {
    width: auto;
    font-size: 32px;
    line-height: 40px;
    word-break: keep-all;
  }

  .h2-about-hero span,
  .h2-static-hero span {
    position: static;
    display: block;
    width: auto;
    margin-top: 32px;
    font-size: 16px;
    line-height: 27px;
    word-break: keep-all;
  }

  .h2-about-band.first > div,
  .h2-guide-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .h2-about-band article,
  .h2-guide-steps article {
    min-height: 0;
    padding: 24px 22px;
    border-radius: 18px;
  }

  .h2-about-band.second p,
  .h2-static-panel p,
  .h2-policy-document p {
    width: auto;
  }

  .h2-policy-document {
    min-height: 0;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .h2-policy-document h2 {
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 32px;
  }

  .h2-policy-document p {
    font-size: 15px;
    line-height: 27px;
  }

  .h2-about-band nav,
  .h2-static-panel nav {
    position: static;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .h2-static-list article {
    height: auto;
    min-height: 150px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .h2-static-list-copy {
    width: 100%;
  }

  .h2-static-list article > a {
    width: 100%;
  }

  .h2-board {
    height: auto;
    min-height: 210px;
    padding: 22px;
  }

  .h2-guide {
    background: #99e0ff;
  }

  .h2-guide-primary {
    margin-top: 18px;
  }

  .h2-guide-secondary {
    max-width: none;
  }

  .h2-write-wide span:not(.h2-arrow-img) {
    left: 22px;
    bottom: 24px;
  }

  .h2-filterbar {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
  }

  .h2-filter-wrap,
  .h2-sort-wrap,
  .h2-select-wrap {
    min-width: 0;
  }

  .h2-filter,
  .h2-filter.wide,
  .h2-sort,
  .h2-select-pill,
  .h2-region-pill {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .h2-filter-wrap {
    width: calc(50% - 4px);
  }

  .h2-search {
    width: 100%;
  }

  .h2-search input {
    width: 100%;
  }

  .h2-sort-wrap {
    justify-self: stretch;
    z-index: 45;
  }

  .h2-sort {
    height: 38px;
    padding: 0 34px 0 14px;
    border: 2px solid var(--h2-line);
    border-radius: 20px;
    background: #fff;
    font-size: 15px;
  }

  .h2-sort::after {
    right: 14px;
    top: 11px;
  }

  .h2-sort-menu {
    left: 0;
    top: 46px;
  }

  .h2-empty-list,
  .h2-detail-empty,
  .h2-live-state {
    min-height: 160px;
    height: auto;
    padding: 24px;
    border-radius: 22px;
  }

  .h2-results {
    display: grid;
    gap: 18px;
  }

  .h2-results .h2-pet-card.list {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }

  .h2-results .h2-found-row-card {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }

  .h2-found-row-card {
    height: auto;
    display: grid;
    grid-template-columns: minmax(126px, 39%) 1fr;
    border-radius: 20px;
    overflow: hidden;
  }

  .h2-found-row-card > a:first-child {
    width: 100%;
    border-radius: 20px 0 0 0;
  }

  .h2-found-list-copy {
    width: 100%;
    height: auto;
    min-height: 180px;
    padding: 18px;
  }

  .h2-found-list-copy strong {
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 21px;
  }

  .h2-found-list-copy em {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 19px;
  }

  .h2-found-list-copy p {
    font-size: 14px;
    line-height: 22px;
  }

  .h2-found-list-side {
    grid-column: 1 / -1;
    width: 100%;
    height: 58px;
    border-radius: 0 0 20px 20px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    font-size: 12px;
  }

  .h2-found-list-side span {
    min-height: 0;
    flex-direction: row;
  }

  .h2-found-list-side i,
  .h2-found-list-side span:nth-child(2)::before,
  .h2-found-list-side span:nth-child(3)::before {
    width: 22px;
    height: 22px;
  }

  .h2-found-list-side i::after {
    left: 3px;
    top: 3px;
    width: 16px;
    height: 16px;
  }

  .h2-found-more {
    height: 52px;
    border: 0;
    border-radius: 26px;
    background: var(--h2-blue);
    font-size: 16px;
    font-weight: 900;
  }

  .h2-list-pagination {
    min-height: 48px;
    padding: 4px 0;
    gap: 5px;
    overflow-x: auto;
  }

  .h2-list-pagination button {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
  }

  .h2-detail-photo {
    height: auto;
    aspect-ratio: var(--h2-flyer-aspect);
    border-radius: 24px;
    object-fit: cover;
  }

  .h2-detail-arrow {
    display: none;
  }

  .h2-detail-dots {
    min-height: 24px;
  }

  .h2-detail-head {
    height: auto;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .h2-detail-head strong {
    font-size: 24px;
    line-height: 27px;
    white-space: normal !important;
  }

  .h2-detail-meta {
    height: auto;
    min-height: 68px;
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 10px;
    border-radius: 16px;
    font-size: 20px;
    line-height: 22px;
  }

  .h2-detail-meta i {
    height: 20px;
    width: 2px;
  }

  .h2-detail-info,
  .h2-found-body,
  .h2-found-contact {
    min-height: 0 !important;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .h2-detail-info dl,
  .h2-found-body dl,
  .h2-found-contact {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .h2-detail-info dt {
    text-align: left;
    padding-right: 0;
  }

  .h2-detail-actions,
  .h2-found-detail-actions,
  .h2-downloads {
    height: auto;
    grid-template-columns: 1fr;
  }

  .h2-detail-actions button,
  .h2-detail-actions a,
  .h2-found-detail-actions button,
  .h2-downloads button {
    min-height: 56px;
    border-right: 0;
    border-bottom: 2px solid var(--h2-line);
  }

  .h2-detail-actions :last-child,
  .h2-found-detail-actions :last-child,
  .h2-downloads :last-child {
    border-bottom: 0;
  }

  .h2-owner-button {
    height: 54px;
    border: 0;
    border-radius: 27px;
  }

  .h2-owner-button + .h2-owner-button {
    margin-top: 12px;
  }

  .h2-related,
  .h2-message {
    text-align: left;
  }

  .h2-related-row {
    height: auto;
    min-height: 76px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .h2-owner-card,
  .h2-comment-box,
  .h2-comment-list,
  .h2-comment-item {
    width: 100%;
  }

  .h2-owner-card {
    padding: 24px 18px;
  }

  .h2-owner-card span {
    display: block;
    margin: 10px 0 0;
  }

  .h2-comment-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .h2-comment-item > img {
    width: 52px;
    height: 52px;
  }

  .h2-form-title {
    text-align: left;
    font-size: 25px;
    line-height: 32px;
  }

  .h2-form-consents {
    position: static;
    width: auto;
    min-height: 0;
    margin: 18px 16px 0;
    padding: 22px 16px;
    border-radius: 20px;
    gap: 10px;
  }

  .h2-form-consents > label {
    padding: 12px;
    word-break: keep-all;
  }

  .h2-form-consents .h2-form-consent-note {
    padding: 0 4px;
  }

  .h2-form-panel {
    min-height: 0;
    padding: 22px 18px;
    border-width: 2px;
    border-radius: 22px;
  }

  .h2-form-row,
  .h2-form-row.choice,
  .h2-form-row.upload {
    min-height: 0;
    margin: 0 0 18px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .h2-form-row strong,
  .h2-form-row.choice strong,
  .h2-form-row.upload strong {
    justify-self: start;
    padding-top: 0;
  }

  .h2-form-row input,
  .h2-form-row textarea {
    width: 100%;
    font-size: 16px;
  }

  .h2-select-wrap {
    width: 100%;
    margin-bottom: 8px;
  }

  .h2-select-pill,
  .h2-file-pill,
  .h2-region-pill {
    margin-right: 0;
  }

  .h2-form-choice-grid,
  .h2-form-choice-hint,
  .h2-upload-zone {
    width: 100%;
  }

  .h2-form-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .h2-upload-slots {
    flex-wrap: wrap;
  }

  .h2-upload-slot {
    width: calc((100% - 16px) / 3);
    height: auto;
    aspect-ratio: 1;
  }

  .h2-form-submit,
  .h2-auth-primary,
  .h2-phone-login-btn,
  .h2-choice-btn,
  .h2-signup-submit {
    width: 100%;
  }

  .h2-form-submit {
    height: 54px;
    border: 0;
    border-radius: 27px;
  }

  .h2-auth-graphic {
    height: 250px;
    border-radius: 24px;
  }

  .h2-auth-graphic h2 {
    top: 34px;
    font-size: 28px;
    line-height: 32px;
  }

  .h2-face {
    left: -30px;
    right: -30px;
    height: 150px;
  }

  .h2-face::before,
  .h2-face i,
  .h2-face b {
    display: none;
  }

  .h2-auth-graphic p {
    bottom: 20px;
    padding: 0 18px;
    line-height: 22px;
  }

  .h2-auth-panel h1 {
    margin-bottom: 28px;
    font-size: 34px;
    line-height: 38px;
  }

  .h2-auth-field,
  .h2-signup-row,
  .h2-signup-row.is-phone,
  .h2-signup-profile-photo,
  .h2-region-set {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .h2-auth-field input,
  .h2-signup-row input,
  .h2-signup-row.is-phone input {
    width: 100%;
    height: 48px;
  }

  .h2-code-row,
  .h2-code-row.signup {
    width: 100%;
    margin: 10px 0 12px;
  }

  .h2-social-buttons {
    gap: 10px;
  }

  .h2-social-buttons button {
    width: 88px;
    height: 88px;
    font-size: 15px;
  }

  .h2-auth-switch {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
    font-size: 16px;
  }

  .h2-choice-line {
    width: 100%;
  }

  .h2-signup-profile-photo {
    margin: 0 0 14px;
  }

  .h2-signup-profile-photo img,
  .h2-signup-preview {
    width: 72px;
    height: 72px;
  }

  .h2-signup-row,
  .h2-signup-row.is-phone,
  .h2-signup-profile-photo {
    display: grid;
    grid-template-columns: 1fr !important;
    align-items: stretch;
  }

  .h2-signup-row .h2-check {
    display: none;
  }

  .h2-signup-row small {
    grid-column: auto;
    line-height: 21px;
  }

  .h2-phone-send {
    width: 100%;
  }

  .h2-region-set .h2-select-wrap,
  .h2-region-set .h2-region-pill {
    width: 100%;
  }

  .h2-profile-card {
    width: 100%;
    grid-template-columns: 72px 1fr;
  }

  .h2-footer {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: calc(100% + 32px) !important;
    height: auto !important;
    margin: 24px -16px 0;
  }

  .h2-footer-inner {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 24px 16px 28px;
    display: grid;
    grid-template-columns: 72px 52px 52px 1fr;
    gap: 14px 10px;
    align-items: center;
  }

  .h2-footer-logo,
  .h2-social,
  .h2-policy,
  .h2-footer-copy,
  .h2-footer-action {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .h2-footer-logo {
    width: 72px;
    height: 38px;
  }

  .h2-footer-logo strong {
    font-size: 17px;
    letter-spacing: -0.8px;
  }

  .h2-social {
    position: relative;
    width: 46px;
    height: 46px;
  }

  .h2-social.kakao,
  .h2-social.insta {
    left: auto;
    top: auto;
  }

  .h2-policy,
  .h2-footer-copy,
  .h2-footer-action {
    grid-column: 1 / -1;
  }

  .h2-footer-copy {
    width: auto;
    font-size: 12px;
    line-height: 19px;
  }

  .h2-footer-action {
    width: 100%;
    height: 54px;
    padding: 18px 52px 0 16px;
    border-radius: 14px;
  }
}

@media (max-width: 520px) {
  .h2-header {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 6px;
  }

  .h2-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .h2-lost-pill,
  .h2-found-pill,
  .h2-returned-pill {
    grid-row: 2;
    padding-right: 5px;
    padding-left: 5px;
    font-size: clamp(10px, 3vw, 12px);
    letter-spacing: -.25px;
  }

  .h2-lost-pill {
    grid-column: 1;
  }

  .h2-found-pill {
    grid-column: 2;
  }

  .h2-returned-pill {
    grid-column: 3;
  }

  .h2-login,
  .h2-account {
    grid-column: 3;
    grid-row: 1;
  }

  .h2-notification-panel {
    top: 122px;
    max-height: calc(100vh - 134px);
    max-height: calc(100dvh - 134px);
  }

  .h2-notification-list {
    max-height: calc(100vh - 252px);
    max-height: calc(100dvh - 252px);
  }
}

@media (max-width: 1024px) {
  .h2-stage.page-terms,
  .h2-stage.page-privacy,
  .h2-stage.page-minor-policy,
  .h2-stage.page-copyright-policy {
    min-height: 100vh;
    padding: 22px 16px 0;
  }

  .page-terms > .h2-policy-document,
  .page-privacy > .h2-policy-document,
  .page-minor-policy > .h2-policy-document,
  .page-copyright-policy > .h2-policy-document {
    margin-top: 0;
  }

  .page-terms > .h2-footer,
  .page-privacy > .h2-footer,
  .page-minor-policy > .h2-footer,
  .page-copyright-policy > .h2-footer {
    margin-top: 24px;
  }

  .h2-policy-document-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .h2-policy-document h3 {
    margin-top: 38px;
    padding-top: 24px;
    font-size: 21px;
    line-height: 30px;
  }

  .h2-policy-document li {
    font-size: 15px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .h2-mypage-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .h2-my-hero {
    min-height: 0;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 15px;
    padding: 23px 18px;
    border-radius: 22px;
  }

  .h2-my-avatar {
    width: 72px;
    height: 72px;
    font-size: 36px;
  }

  .h2-my-hero-copy h1 {
    font-size: 27px;
    line-height: 34px;
  }

  .h2-my-hero-copy h1 span {
    display: block;
    margin: 1px 0 0;
    font-size: 17px;
    line-height: 23px;
  }

  .h2-my-provider-badges {
    gap: 5px;
    margin-top: 10px;
  }

  .h2-my-provider-badges b,
  .h2-my-provider-badges em {
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 24px;
  }

  .h2-my-hero nav {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .h2-my-hero nav button {
    width: 100%;
    min-width: 0;
    height: 42px;
  }

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

  .h2-my-stats a {
    min-height: 104px;
    gap: 4px 8px;
    padding: 16px 14px;
    border-radius: 15px;
  }

  .h2-my-stats strong {
    font-size: 27px;
    line-height: 31px;
  }

  .h2-my-stats a > span {
    font-size: 12px;
    line-height: 17px;
  }

  .h2-my-stats em {
    font-size: 10px;
    line-height: 15px;
  }

  .h2-my-profile-panel,
  .h2-my-library-panel {
    grid-column: 1;
  }

  .h2-my-panel {
    min-height: 0;
    padding: 21px 17px;
    border-radius: 19px;
  }

  .h2-my-panel-head h2,
  .h2-my-library-head h2 {
    font-size: 23px;
    line-height: 29px;
  }

  .h2-my-account-row {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
  }

  .h2-my-account-row dd > span {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .h2-my-account-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .h2-my-primary,
  .h2-my-request {
    width: 100%;
  }

  .h2-my-write-shortcuts {
    grid-template-columns: 1fr;
  }

  .h2-my-write-shortcuts a {
    min-height: 72px;
  }

  .h2-my-profile-form {
    grid-template-columns: 1fr;
  }

  .h2-my-photo-picker {
    grid-row: auto;
    justify-items: start;
    place-items: start;
    text-align: left;
  }

  .h2-my-form-actions {
    grid-template-columns: 1fr 1fr;
  }

  .h2-my-status {
    grid-column: 1;
  }

  .h2-my-library-head {
    min-height: 0;
    margin-bottom: 14px;
  }

  .h2-my-library-head > strong {
    font-size: 30px;
    line-height: 36px;
  }

  .h2-my-library-head p {
    max-width: 220px;
    font-size: 12px;
  }

  .h2-my-tabs {
    width: calc(100% + 34px);
    margin-left: -17px;
    padding: 0 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .h2-my-tabs::-webkit-scrollbar {
    display: none;
  }

  .h2-my-tabs a {
    flex: 1 0 auto;
    min-height: 46px;
    padding: 0 10px;
    font-size: 13px;
  }

  .h2-my-post {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .h2-my-post img {
    width: 60px;
    height: 60px;
  }

  .h2-my-post > i {
    grid-column: 2;
    justify-self: start;
  }

  .h2-my-post-row:has(.h2-my-unsave) .h2-my-post {
    padding-right: 88px;
  }

  .h2-my-unsave {
    right: 8px;
    min-width: 68px;
    height: 34px;
    font-size: 10px;
  }

  .h2-my-list-state {
    min-height: 190px;
    padding: 22px 15px;
  }

  .h2-my-notification-link {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .h2-my-notification-icon {
    width: 36px;
    height: 36px;
  }

  .h2-my-notification-icon .h2-notification-icon {
    width: 18px;
    height: 18px;
  }

  .h2-my-notification-link > i {
    grid-column: 2;
    justify-self: start;
  }

  .h2-my-auth-required {
    min-height: 390px;
    padding: 32px 20px;
    border-radius: 22px;
  }

  .h2-my-auth-required h1 {
    font-size: 26px;
    line-height: 34px;
  }

  .h2-my-auth-required nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .h2-my-auth-required nav a {
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .h2-my-hero {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 20px 15px;
  }

  .h2-my-avatar {
    width: 62px;
    height: 62px;
    font-size: 32px;
  }

  .h2-my-hero-copy h1 {
    font-size: 23px;
    line-height: 29px;
  }

  .h2-my-hero-copy h1 span {
    font-size: 15px;
    line-height: 20px;
  }

  .h2-my-stats a {
    min-height: 98px;
    padding: 14px 11px;
  }

  .h2-my-stats strong {
    font-size: 24px;
  }

  .h2-my-panel {
    padding: 19px 14px;
  }

  .h2-my-tabs {
    width: calc(100% + 28px);
    margin-left: -14px;
  }

  .h2-my-account-row {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .h2-my-account-badge {
    display: none;
  }

  .h2-my-post-row:has(.h2-my-unsave) .h2-my-post {
    padding-right: 78px;
  }

  .h2-my-unsave {
    min-width: 60px;
  }
}

/* Mobile and tablet product layout polish. */
@media (max-width: 1024px) {
  html {
    scroll-padding-top: 86px;
  }

  body,
  .h2-app {
    background: #f5f7fb;
  }

  button,
  a,
  input,
  textarea {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  button:focus-visible,
  a:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
    outline: 3px solid rgba(38, 156, 214, .28);
    outline-offset: 2px;
  }

  .h2-header {
    padding: 8px 12px 10px;
    border-bottom: 1px solid rgba(213, 218, 230, .92);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 28px rgba(35, 46, 75, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .h2-logo {
    width: 58px;
    height: 44px;
    padding: 3px 0;
  }

  .h2-pill {
    min-height: 44px;
    height: 44px;
    border: 1px solid #e1e4eb;
    border-radius: 14px;
    background: #f2f4f7;
    font-size: 11px;
    line-height: 14px;
  }

  .h2-pill.active-lost,
  .h2-pill.active-found,
  .h2-pill.active-returned {
    border-width: 2px;
    padding: 5px 6px;
    box-shadow: 0 4px 12px rgba(31, 43, 68, .07);
  }

  .h2-login {
    width: 70px;
    min-height: 44px;
    height: 44px;
    border: 1px solid #d9deea;
    border-radius: 14px;
    background: #fff;
    font-size: 13px;
    box-shadow: 0 3px 10px rgba(31, 43, 68, .06);
  }

  .h2-account {
    height: 44px;
  }

  .h2-user {
    width: 38px;
    max-width: 38px;
    height: 44px;
  }

  .h2-user img,
  .h2-user .h2-avatar {
    width: 36px;
    height: 36px;
  }

  .h2-notification-panel {
    top: 62px;
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(25, 35, 61, .22);
  }

  .h2-stage {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 14px;
    padding: 20px 14px 0;
    background: transparent;
  }

  .h2-stage > *,
  .h2-stage form,
  .h2-stage form > *,
  .h2-results,
  .h2-results > *,
  .h2-mypage-shell,
  .h2-mypage-shell > * {
    min-width: 0;
  }

  .h2-title {
    font-size: clamp(28px, 6vw, 38px);
    line-height: 1.14;
    letter-spacing: -.045em;
  }

  .page-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home > .h2-title,
  .page-home > .h2-report,
  .page-home > .h2-side,
  .page-home > .h2-live-state,
  .page-home > .h2-notice,
  .page-home > .h2-info,
  .page-home > .h2-about,
  .page-home > .h2-footer {
    grid-column: 1 / -1;
  }

  .page-home > .h2-pet-card,
  .page-home > .h2-found-photo,
  .page-home > .h2-found-copy {
    grid-column: auto;
  }

  .page-home .h2-report {
    min-height: 206px;
    padding: 20px;
    border: 1px solid rgba(205, 210, 221, .58);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(32, 43, 70, .08);
  }

  .page-home .h2-report strong {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: -.025em;
  }

  .page-home .h2-report p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 21px;
  }

  .page-home .h2-report span:not(.h2-arrow-img) {
    left: 20px;
    bottom: 18px;
    color: #555d73;
    text-decoration: none;
  }

  .page-home .h2-report .h2-arrow-large {
    right: 18px;
    bottom: 16px;
    width: 48px;
    height: 45px;
  }

  .page-home .h2-side {
    min-height: 54px;
    height: 54px;
    padding: 0 54px 0 18px;
    border: 1px solid rgba(205, 210, 221, .6);
    border-radius: 16px;
    font-size: 14px;
    line-height: 18px;
    box-shadow: 0 6px 18px rgba(32, 43, 70, .06);
  }

  .page-home .h2-side br {
    display: none;
  }

  .page-home .h2-side .h2-arrow-small {
    right: 16px;
    bottom: 12px;
    width: 25px;
    height: 24px;
  }

  .page-home .h2-pet-card,
  .page-home .h2-found-photo,
  .page-home .h2-found-copy {
    border: 1px solid #e1e4ec;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(31, 43, 68, .08);
  }

  .page-home .h2-pet-card .h2-location {
    height: 36px;
    padding: 0 6px;
    font-size: 13px;
    line-height: 16px;
  }

  .page-home .h2-pet-card img {
    aspect-ratio: var(--h2-flyer-aspect);
  }

  .page-home .h2-pet-card .h2-meta {
    height: 44px;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px auto;
    gap: 4px;
    padding: 0 7px;
    font-size: 11px;
    line-height: 14px;
  }

  .page-home .h2-pet-card .h2-meta i {
    width: 1px;
    height: 15px;
  }

  .page-home .h2-found-photo {
    min-height: 0;
  }

  .page-home .h2-found-copy {
    position: relative !important;
    height: 100%;
    min-height: 0;
    padding: 14px;
  }

  .page-home .h2-found-copy strong {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 20px;
  }

  .page-home .h2-found-copy em {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 17px;
  }

  .page-home .h2-found-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    font-size: 12px;
    line-height: 19px;
  }

  .page-home .h2-mini-stats {
    left: 14px;
    bottom: 12px;
    gap: 9px;
    font-size: 10px;
    line-height: 14px;
  }

  .page-home .h2-notice,
  .page-home .h2-info,
  .page-home .h2-about {
    border: 1px solid rgba(210, 215, 227, .72);
    box-shadow: 0 7px 22px rgba(31, 43, 68, .06);
  }

  .page-home .h2-notice {
    min-height: 100px;
    padding: 16px;
  }

  .page-home .h2-info,
  .page-home .h2-about {
    min-height: 164px;
    padding: 20px;
    border-radius: 20px;
  }

  .page-home .h2-info p,
  .page-home .h2-about p {
    margin-top: 26px;
    font-size: 14px;
    line-height: 23px;
  }

  .page-lost-list > .h2-guide,
  .page-returned-list > .h2-guide,
  .page-found-list > .h2-guide {
    order: 90;
    min-height: 0;
    padding: 18px;
    border: 1px solid rgba(205, 210, 221, .65);
    border-radius: 18px;
    background: #e6f7ff;
  }

  .page-lost-list > .h2-footer,
  .page-returned-list > .h2-footer,
  .page-found-list > .h2-footer {
    order: 100;
  }

  .h2-guide h2 {
    max-width: none;
    font-size: 21px;
    line-height: 27px;
  }

  .h2-guide-primary {
    margin-top: 12px;
    font-size: 15px;
    line-height: 22px;
  }

  .h2-guide-secondary {
    margin-top: 8px;
    font-size: 13px;
    line-height: 20px;
  }

  .page-lost-list > .h2-write-wide,
  .page-returned-list > .h2-write-wide,
  .page-found-list > .h2-write-wide {
    min-height: 132px;
    padding: 18px;
    border: 1px solid rgba(205, 210, 221, .6);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(31, 43, 68, .07);
  }

  .h2-board h2 {
    max-width: 82%;
    font-size: 24px;
    line-height: 30px;
    word-break: keep-all;
  }

  .h2-write-wide span:not(.h2-arrow-img) {
    left: 18px;
    bottom: 18px;
    color: #535b70;
    text-decoration: none;
  }

  .h2-write-wide .h2-arrow-large {
    right: 18px;
    bottom: 16px;
    width: 46px;
    height: 43px;
  }

  .h2-filterbar {
    padding: 12px;
    border: 1px solid #e0e4ed;
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(31, 43, 68, .05);
  }

  .h2-filter-wrap {
    width: 100%;
  }

  .h2-filter,
  .h2-filter.wide,
  .h2-search {
    min-height: 44px;
    height: 44px;
    border-width: 1px;
    border-radius: 12px;
  }

  .h2-filter {
    padding-left: 13px;
    font-size: 14px;
  }

  .h2-search {
    grid-column: 1 / -1;
    background: #f0f2f6;
  }

  .h2-dropdown {
    gap: 0;
    padding: 7px;
    border-width: 1px;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(27, 37, 62, .16);
  }

  .h2-dropdown button {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 9px;
    display: flex;
    align-items: center;
  }

  .h2-dropdown button:hover,
  .h2-dropdown button:focus-visible,
  .h2-dropdown button.is-active {
    background: #eef8ff;
  }

  .h2-sort-wrap {
    position: relative !important;
    min-height: 44px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .h2-sort {
    width: auto;
    min-width: 126px;
    min-height: 44px;
    height: 44px;
    border-width: 1px;
    border-radius: 12px;
  }

  .h2-sort-menu {
    left: auto;
    right: 0;
    top: 50px;
  }

  .h2-results {
    width: 100%;
    gap: 14px;
  }

  .h2-results .h2-pet-card.list,
  .h2-results .h2-found-row-card {
    content-visibility: auto;
  }

  .h2-results .h2-pet-card.list {
    contain-intrinsic-size: auto 580px;
    border: 1px solid #e0e4ed;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(31, 43, 68, .08);
  }

  .h2-pet-card.list .h2-location {
    height: 42px;
    padding: 0 8px;
    font-size: 15px;
    line-height: 18px;
  }

  .h2-pet-card.list .h2-meta {
    height: 48px;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px auto;
    gap: 6px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 16px;
  }

  .h2-pet-card.list .h2-meta i {
    width: 1px;
    height: 16px;
  }

  .h2-found-row-card {
    grid-template-columns: minmax(118px, 38%) minmax(0, 1fr);
    border: 1px solid #e0e4ed;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 43, 68, .08);
  }

  .h2-found-row-card > a:first-child {
    min-height: 210px;
    height: 100%;
    aspect-ratio: auto;
    border: 0;
    border-radius: 20px 0 0 0;
  }

  .h2-found-list-copy {
    min-height: 210px;
    padding: 16px;
    background: #f3f4f7;
  }

  .h2-found-list-copy strong {
    font-size: 18px;
  }

  .h2-found-list-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .h2-found-list-side {
    height: 54px;
    border-width: 1px 0 0;
    border-radius: 0 0 20px 20px;
  }

  .h2-list-pagination {
    min-height: 52px;
    padding: 4px 0;
    gap: 6px;
  }

  .h2-list-pagination button {
    min-width: 44px;
    height: 44px;
    border-width: 1px;
    border-radius: 14px;
  }

  .page-lost-detail,
  .page-found-detail,
  .page-lost-form,
  .page-found-form,
  .page-login,
  .page-signup-choice,
  .page-signup,
  .page-mypage,
  .page-about,
  .page-notice,
  .page-guide,
  .page-terms,
  .page-privacy,
  .page-minor-policy,
  .page-copyright-policy {
    background: transparent;
  }

  .h2-detail-photo,
  .h2-detail-head,
  .h2-detail-meta,
  .h2-detail-info,
  .h2-found-body,
  .h2-found-contact,
  .h2-owner-card,
  .h2-comment-box,
  .h2-comment-list,
  .h2-message {
    border-color: #e0e4ed;
    box-shadow: 0 8px 24px rgba(31, 43, 68, .07);
  }

  .h2-detail-photo {
    border: 1px solid #e0e4ed;
    border-radius: 20px;
  }

  .page-lost-detail > .h2-detail-photo,
  .page-found-detail > .h2-detail-photo,
  .page-lost-detail > .h2-detail-arrow,
  .page-found-detail > .h2-detail-arrow {
    grid-row: 1;
    grid-column: 1;
  }

  .h2-detail-arrow {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    display: grid;
    place-items: center;
    align-self: center;
    background: rgba(22, 28, 42, .58);
    color: #fff;
    box-shadow: 0 5px 16px rgba(16, 24, 42, .18);
  }

  .h2-detail-arrow.prev {
    justify-self: start;
    margin-left: max(10px, calc((100% - 560px) / 2 + 10px));
  }

  .h2-detail-arrow.next {
    justify-self: end;
    margin-right: max(10px, calc((100% - 560px) / 2 + 10px));
  }

  .h2-detail-dots {
    min-height: 44px;
    gap: 2px;
  }

  .h2-detail-dots button,
  .h2-detail-dots button.active {
    position: relative;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .h2-detail-dots button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c1c6d3;
    transform: translate(-50%, -50%);
  }

  .h2-detail-dots button.active::before {
    width: 24px;
    border-radius: 6px;
    background: #3c9fce;
  }

  .h2-detail-head {
    padding: 18px;
    border-radius: 18px;
    background: #fff;
  }

  .h2-detail-head strong {
    font-size: 23px;
    line-height: 29px;
  }

  .h2-detail-meta {
    min-height: 60px;
    padding: 12px 14px;
    border: 1px solid #e0e4ed;
    background: #fff;
    font-size: 17px;
    line-height: 21px;
  }

  .h2-detail-info,
  .h2-found-body,
  .h2-found-contact {
    padding: 20px 16px;
    border: 1px solid #e0e4ed;
    background: #fff;
  }

  .h2-detail-info dl,
  .h2-found-body dl {
    grid-template-columns: 92px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 12px;
  }

  .h2-detail-info dt,
  .h2-found-body dt,
  .h2-found-contact b {
    color: #71778c;
    font-size: 13px;
    line-height: 21px;
  }

  .h2-detail-info dd,
  .h2-found-body dd,
  .h2-found-contact strong {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
  }

  .h2-found-contact {
    grid-template-columns: 92px minmax(0, 1fr);
    row-gap: 12px;
  }

  .h2-detail-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #e0e4ed;
    border-radius: 16px;
    background: #fff;
  }

  .h2-downloads {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #e0e4ed;
    border-radius: 16px;
    background: #fff;
  }

  .h2-detail-actions button,
  .h2-detail-actions a,
  .h2-downloads button {
    min-width: 0;
    min-height: 54px;
    padding: 10px 7px;
    border-right: 1px solid #e0e4ed;
    border-bottom: 0;
    font-size: 13px;
    line-height: 18px;
    word-break: keep-all;
  }

  .h2-detail-actions :last-child,
  .h2-downloads :last-child {
    border-right: 0;
  }

  .h2-downloads button {
    min-height: 68px;
  }

  .h2-owner-button {
    min-height: 52px;
    height: 52px;
    box-shadow: 0 5px 15px rgba(31, 43, 68, .06);
  }

  .h2-owner-card {
    padding: 20px 16px;
    border: 1px solid #e0e4ed;
    border-radius: 18px;
    background: #fff;
  }

  .page-found-detail .h2-owner-card p {
    display: none;
  }

  .h2-comment-box,
  .h2-comment-list,
  .h2-comment-item {
    border-radius: 16px;
  }

  .h2-comment-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
  }

  .h2-comment-item > img {
    width: 44px;
    height: 44px;
  }

  .h2-form-title {
    padding: 0 4px;
    font-size: 25px;
    line-height: 32px;
    word-break: keep-all;
  }

  form[data-home2-post-form] {
    width: 100%;
    min-width: 0;
    display: grid;
    gap: 14px;
  }

  .h2-form-panel {
    padding: 18px 16px;
    border: 1px solid #dfe4ee;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(31, 43, 68, .07);
  }

  .h2-form-panel:not(.white) {
    border-top: 5px solid var(--h2-blue);
    background: #fafdff;
  }

  .h2-form-row,
  .h2-form-row.choice,
  .h2-form-row.upload {
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px solid #edf0f5;
    gap: 9px;
  }

  .h2-form-row:last-child {
    border-bottom: 0;
  }

  .h2-form-row > div {
    min-width: 0;
  }

  .h2-form-row > div:has(> .h2-select-wrap) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
    gap: 8px;
  }

  .h2-form-row strong,
  .h2-form-row.choice strong,
  .h2-form-row.upload strong {
    color: #3f465b;
    font-size: 14px;
    line-height: 20px;
  }

  .h2-form-row input,
  .h2-form-row textarea {
    min-width: 0;
    min-height: 50px;
    border-width: 1px;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
  }

  .h2-form-row textarea {
    min-height: 122px;
  }

  .h2-select-wrap,
  .h2-select-pill,
  .h2-file-pill,
  .h2-region-pill {
    width: 100%;
    margin: 0;
  }

  .h2-select-pill,
  .h2-file-pill,
  .h2-region-pill {
    min-height: 46px;
    height: 46px;
    border-width: 1px;
    border-radius: 12px;
  }

  .h2-form-menu {
    top: 52px;
    width: max-content;
    min-width: 100%;
  }

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

  .h2-form-choice {
    min-height: 44px;
    border-width: 1px;
    border-radius: 11px;
  }

  .h2-upload-zone,
  .h2-form-choice-grid,
  .h2-form-choice-hint,
  .h2-private-contact {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .h2-private-contact {
    padding: 13px;
    border-radius: 12px;
    background: #f2f7fb;
  }

  .h2-upload-slot {
    border-width: 1px;
    border-radius: 12px;
  }

  .h2-upload-slot.has-preview .h2-upload-remove {
    opacity: 1;
    pointer-events: auto;
  }

  .h2-form-consents {
    width: 100%;
    margin: 0;
    padding: 18px 15px;
    border: 1px solid #dfe4ee;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 43, 68, .06);
  }

  .h2-form-consents > label {
    min-height: 48px;
    padding: 12px;
    border-radius: 12px;
  }

  .h2-form-consents input,
  .h2-terms input,
  .h2-signup-age input {
    width: 20px;
    height: 20px;
  }

  .h2-form-consents a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .h2-form-submit {
    min-height: 56px;
    height: 56px;
    margin-top: 2px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(52, 154, 205, .2);
  }

  .h2-form-status {
    min-height: 24px;
    padding: 0 8px;
    line-height: 22px;
  }

  .page-login .h2-auth-graphic,
  .page-signup-choice .h2-auth-graphic,
  .page-signup .h2-auth-graphic {
    display: none;
  }

  .h2-auth-panel:not(.signup) {
    max-width: 560px;
    justify-self: center;
    padding: 24px 20px;
    border: 1px solid #dfe4ee;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(31, 43, 68, .09);
  }

  .h2-auth-panel:not(.signup) h1 {
    margin: 0 0 24px;
    text-align: left;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -.04em;
  }

  .h2-auth-field {
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .h2-auth-field input {
    min-height: 50px;
    padding: 0 13px;
    border: 1px solid #bfc5d3;
    border-radius: 12px;
    font-size: 16px;
  }

  .h2-keep-login {
    min-height: 44px;
    margin: 0 0 12px;
  }

  .h2-auth-primary,
  .h2-phone-login-btn,
  .h2-choice-btn {
    min-height: 54px;
    height: 54px;
    border-radius: 14px;
    font-size: 16px;
  }

  .h2-code-row input,
  .h2-code-row button {
    min-height: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .h2-social-title {
    margin: 28px 0 12px;
    color: #73798d;
  }

  .h2-social-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .h2-social-buttons button {
    width: 100%;
    height: 52px;
    border: 1px solid rgba(180, 186, 201, .55);
    border-radius: 14px;
    font-size: 14px;
  }

  .h2-auth-switch {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #eceff4;
    gap: 10px;
    align-items: center;
    flex-direction: row;
    font-size: 14px;
  }

  .h2-auth-switch a {
    width: auto;
    min-width: 88px;
    min-height: 44px;
    height: 44px;
    padding: 0 15px;
  }

  .h2-choice-btn {
    margin-bottom: 10px;
  }

  .h2-choice-line {
    height: 1px;
    margin: 20px 0;
    background: #e2e5ed;
  }

  .h2-mypage-shell,
  .h2-mypage-shell > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .h2-my-hero,
  .h2-my-panel,
  .h2-my-stats a,
  .h2-my-auth-required {
    border-color: #e0e4ed;
    box-shadow: 0 8px 24px rgba(31, 43, 68, .07);
  }

  .h2-my-tabs a,
  .h2-my-hero nav button,
  .h2-my-primary,
  .h2-my-request,
  .h2-my-unsave {
    min-height: 44px;
  }

  .h2-about-band.first {
    padding: 20px;
  }

  .h2-about-band.second {
    padding: 24px 20px;
  }

  .h2-about-band article,
  .h2-guide-steps article,
  .h2-static-list article,
  .h2-static-panel,
  .h2-policy-document {
    border: 1px solid #e0e4ed;
    box-shadow: 0 8px 24px rgba(31, 43, 68, .06);
  }

  .h2-guide-steps article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .h2-guide-steps b {
    position: static;
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .h2-guide-steps article strong,
  .h2-guide-steps article p {
    grid-column: 2;
  }

  .h2-guide-steps > h2 {
    grid-column: 1 / -1;
  }

  .h2-static-hero {
    padding: 24px 20px;
    border: 1px solid #e0e4ed;
    box-shadow: 0 8px 24px rgba(31, 43, 68, .06);
  }

  .h2-static-hero h1,
  .h2-about-hero h1 {
    font-size: 29px;
    line-height: 36px;
  }

  .h2-static-list article {
    min-height: 0;
    padding: 17px;
    border-radius: 16px;
    background: #fff;
  }

  .page-notice .h2-static-list article {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px 12px;
    align-items: start;
  }

  .page-notice .h2-static-list time {
    grid-column: 1;
    grid-row: 1;
  }

  .page-notice .h2-notice-badge {
    grid-column: 2;
    grid-row: 1;
    min-width: 58px;
    height: 30px;
  }

  .page-notice .h2-static-list-copy {
    grid-column: 1 / -1;
  }

  .h2-static-panel nav a,
  .h2-static-list a {
    min-height: 44px;
  }

  .h2-policy-document {
    padding: 22px 18px;
    border-radius: 18px;
    background: #fff;
  }

  .h2-policy-document h3 {
    margin-top: 28px;
    padding-top: 18px;
    font-size: 20px;
    line-height: 28px;
  }

  .h2-policy-document p,
  .h2-policy-document li {
    font-size: 15px;
    line-height: 25px;
  }

  .h2-header.route-terms,
  .h2-header.route-privacy,
  .h2-header.route-minor-policy,
  .h2-header.route-copyright-policy {
    position: relative;
  }

  .h2-footer {
    width: calc(100% + 28px) !important;
    margin: 22px -14px 0;
  }

  .h2-footer-inner {
    padding: 24px 16px 30px;
  }

  .h2-policy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    font-size: 12px;
    line-height: 18px;
  }

  .h2-policy a {
    min-height: 44px;
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .h2-footer-logo {
    min-height: 44px;
  }

  .h2-footer-copy {
    color: #d9dce5;
  }

  .h2-footer-action {
    min-height: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    padding: 0 52px 0 16px;
    border-radius: 14px;
  }
}

@media (min-width: 521px) and (max-width: 1024px) {
  .h2-stage {
    padding-right: 24px;
    padding-left: 24px;
    gap: 18px;
  }

  .page-lost-list .h2-results,
  .page-returned-list .h2-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-lost-detail > .h2-detail-photo,
  .page-found-detail > .h2-detail-photo {
    width: 100% !important;
    max-width: 560px;
    justify-self: center;
  }

  .page-lost-detail > .h2-detail-dots,
  .page-lost-detail > .h2-detail-head,
  .page-lost-detail > .h2-detail-meta,
  .page-lost-detail > .h2-detail-info,
  .page-lost-detail > .h2-detail-actions,
  .page-lost-detail > .h2-downloads,
  .page-lost-detail > .h2-owner-button,
  .page-lost-detail > .h2-message,
  .page-found-detail > .h2-detail-dots,
  .page-found-detail > .h2-detail-head,
  .page-found-detail > .h2-detail-meta,
  .page-found-detail > .h2-found-body,
  .page-found-detail > .h2-found-contact,
  .page-found-detail > .h2-found-detail-actions,
  .page-found-detail > .h2-detail-actions,
  .page-found-detail > .h2-downloads,
  .page-found-detail > .h2-owner-button,
  .page-found-detail > .h2-message {
    width: 100% !important;
    max-width: 820px;
    justify-self: center;
  }

  .page-home .h2-report {
    min-height: 236px;
  }

  .h2-auth-panel:not(.signup),
  .h2-auth-panel.signup {
    max-width: 620px;
    justify-self: center;
  }

  .h2-form-panel,
  .h2-form-consents {
    padding-right: 24px;
    padding-left: 24px;
  }

  .h2-upload-slots {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .h2-upload-slot {
    width: 100%;
  }

  .h2-form-choice-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .h2-stage.page-login,
  .h2-stage.page-signup-choice {
    min-height: calc(100dvh - 68px);
  }

  .h2-static-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .page-notice .h2-static-list article:only-of-type {
    grid-column: 1 / -1;
  }

  .h2-static-list > h2,
  .h2-static-list > .h2-static-empty {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 118px;
  }

  .h2-header {
    gap: 7px 6px;
    padding: 8px 10px 9px;
  }

  .h2-logo {
    width: 56px;
    height: 44px;
  }

  .h2-lost-pill,
  .h2-found-pill,
  .h2-returned-pill {
    min-height: 44px;
    height: 44px;
    padding-right: 4px;
    padding-left: 4px;
    font-size: clamp(10px, 2.85vw, 11px);
    line-height: 13px;
  }

  .h2-login {
    justify-self: end;
  }

  .h2-notification-panel {
    left: 10px;
    right: 10px;
    top: 112px;
    max-height: calc(100dvh - 122px);
  }

  .h2-notification-list {
    max-height: calc(100dvh - 240px);
  }

  .h2-stage {
    padding: 18px 12px 0;
    gap: 12px;
  }

  .h2-stage.page-login,
  .h2-stage.page-signup-choice {
    min-height: calc(100dvh - 114px);
  }

  .h2-title {
    font-size: 28px;
    line-height: 34px;
  }

  .page-home .h2-report {
    min-height: 194px;
  }

  .page-home .h2-report strong {
    font-size: 24px;
    line-height: 29px;
  }

  .h2-filterbar {
    padding: 10px;
  }

  .h2-board h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .h2-auth-panel:not(.signup) {
    padding: 22px 17px;
  }

  .h2-auth-switch {
    align-items: flex-start;
    flex-direction: column;
  }

  .h2-auth-switch a {
    width: 100%;
  }

  .h2-detail-info dl,
  .h2-found-body dl,
  .h2-found-contact {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .h2-policy {
    grid-template-columns: 1fr;
  }

  .h2-footer {
    width: calc(100% + 24px) !important;
    margin-right: -12px;
    margin-left: -12px;
  }
}

@media (max-width: 360px) {
  .page-home {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-home > .h2-pet-card,
  .page-home > .h2-found-photo,
  .page-home > .h2-found-copy {
    grid-column: 1;
  }

  .h2-detail-actions,
  .h2-found-detail-actions,
  .h2-downloads {
    grid-template-columns: 1fr;
  }

  .h2-detail-actions button,
  .h2-detail-actions a,
  .h2-downloads button {
    border-right: 0;
    border-bottom: 1px solid #e0e4ed;
  }

  .h2-detail-actions :last-child,
  .h2-downloads :last-child {
    border-bottom: 0;
  }
}
