/* 비발디파크 투숙객 안내 — 소노호텔앤리조트 공식 홈페이지의 디자인 언어를 기본 스타일로.
   (2026-09-23 공식홈에서 계산된 스타일을 읽어 옮긴 값)
   서체 Noto Sans KR + Lato(영문 제목) · 본문 #333 · 제목 #453f38 · 보조 #666/#999
   강조 골드브라운 #866d4b · 토프 #95826e · 링크 #9e8d7b · 짙은 버튼 #554e46
   회색 띠 #e4e1e0 · 모서리 4px(버튼·카드) / 30px(알약 태그) · 사진이 이끄는 첫 화면.
   공식 로고·워드마크·사진은 쓰지 않는다 — 사진은 Higgsfield로 만든 분위기 이미지(img/). */

:root {
  --bg: #ffffff;
  --band: #e4e1e0;
  --band-2: #f3f1ef;
  --paper: #ffffff;
  --ink: #333333;
  --head: #453f38;
  --sub: #666666;
  --mute: #6b6560;      /* 공식홈 #999는 흰 바탕 2.85:1 — 작은 글자 기준(4.5:1) 미달이라 어둡게. 흰 5.6:1 · 띠 5.1:1 */
  --line: #e4e1e0;
  --line-2: #d3cdc6;
  --gold: #866d4b;
  --taupe: #95826e;
  --link: #7a6a58;      /* 공식홈 #9e8d7b는 3.21:1 → 5.21:1 */
  --dark: #554e46;
  --on-dark: #ffffff;
  --tint: rgba(173, 146, 118, .1);
  --hl: rgba(173, 146, 118, .14);
  --shadow: 0 2px 4px rgba(0, 0, 0, .04), 0 10px 30px -12px rgba(69, 63, 56, .28);
  --kr: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --en: 'Lato', 'Noto Sans KR', sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --col: 680px;
  --bar-h: 58px;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #1a1816; --band: #24211e; --band-2: #201d1b; --paper: #221f1c;
    --ink: #e6e0d9; --head: #f3eee8; --sub: #b8aea4; --mute: #8e857b;
    --line: #34302b; --line-2: #45403a; --gold: #c9a97f; --taupe: #b09a82; --link: #b3a08b;
    --dark: #c9a97f; --on-dark: #1a1816; --tint: rgba(201, 169, 127, .1); --hl: rgba(201, 169, 127, .14);
    --shadow: 0 2px 4px rgba(0, 0, 0, .3), 0 12px 30px -12px rgba(0, 0, 0, .7);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #1a1816; --band: #24211e; --band-2: #201d1b; --paper: #221f1c;
  --ink: #e6e0d9; --head: #f3eee8; --sub: #b8aea4; --mute: #8e857b;
  --line: #34302b; --line-2: #45403a; --gold: #c9a97f; --taupe: #b09a82; --link: #b3a08b;
  --dark: #c9a97f; --on-dark: #1a1816; --tint: rgba(201, 169, 127, .1); --hl: rgba(201, 169, 127, .14);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--bar-h) + 8px); }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 16px/1.65 var(--kr); letter-spacing: -.03em;
  -webkit-font-smoothing: antialiased; word-break: keep-all; overflow-wrap: anywhere;
}
body.locked { overflow: hidden; }
button, input { font: inherit; color: inherit; letter-spacing: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.defs { position: absolute; }
.ic { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ic.sm { width: 16px; height: 16px; stroke-width: 1.8; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.en { font-family: var(--en); letter-spacing: 0; }

/* ───────── 상단 막대 — 첫 화면 사진 위에선 투명·흰 글자, 내려가면 흰 바탕 ───────── */
.bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: calc(var(--bar-h) + env(safe-area-inset-top)); padding: env(safe-area-inset-top) max(12px, calc((100vw - var(--col)) / 2 + 8px)) 0;
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: saturate(1.3) blur(12px); -webkit-backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid var(--line); color: var(--head);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s;
}
body.over-hero .bar { background: transparent; border-bottom-color: transparent; color: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
.bar-l { display: flex; align-items: center; }
.bar-back { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 4px; margin-left: -8px; }
.brand { grid-column: 2; display: flex; align-items: center; gap: 8px; }
.brand-mark { width: 26px; height: 26px; color: currentColor; }
body:not(.over-hero) .brand-mark { color: var(--gold); }
.brand-txt { font: 700 15px/1 var(--kr); letter-spacing: -.04em; }
.brand-txt i { font-style: normal; font-weight: 400; margin-left: 3px; opacity: .8; }
.bar-r { grid-column: 3; justify-self: end; }
.bar-call { display: inline-flex; align-items: center; gap: 6px; height: 38px; padding: 0 13px 0 10px;
  border: 1px solid currentColor; border-radius: 30px; font-size: 13px; font-weight: 500; opacity: .9; transition: background .15s; }
.bar-call .ic { width: 16px; height: 16px; }
body:not(.over-hero) .bar-call { border-color: var(--line-2); color: var(--sub); }
.bar-call:hover { opacity: 1; }

/* ───────── 첫 화면 사진 ───────── */
.hero { position: relative; min-height: min(74vh, 640px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: #3a342d; }
.hero-media { position: absolute; inset: 0; background: url('img/hero.jpg') center 40% / cover no-repeat; transform: scale(1.04); transition: transform 1.6s var(--ease); }
.hero.in .hero-media { transform: none; }
.hero::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 12, .45) 0%, rgba(20, 16, 12, 0) 26%, rgba(20, 16, 12, .05) 48%, rgba(20, 16, 12, .62) 100%); }
.hero-in { position: relative; z-index: 1; width: 100%; max-width: var(--col); margin: 0 auto; padding: 0 22px 84px; }
.pill { display: inline-flex; align-items: center; height: 30px; padding: 0 14px; border-radius: 30px; background: #fff; color: #333;
  font-size: 13px; font-weight: 500; letter-spacing: -.02em; }
.hero-title { margin: 14px 0 10px; font: 700 clamp(30px, 8.6vw, 44px)/1.28 var(--kr); letter-spacing: -.05em; text-shadow: 0 2px 18px rgba(0, 0, 0, .18); }
.hero-date { margin: 0; font-size: 14px; opacity: .92; }
.hero-date .en { font-weight: 700; letter-spacing: .08em; margin-right: 8px; }

/* ───────── 본문 틀 ───────── */
.view { max-width: var(--col); margin: 0 auto; padding: 0 20px; }
#home .view { position: relative; z-index: 2; }

.ask { position: relative; display: flex; align-items: center; height: 60px; margin-top: -30px; padding: 0 6px 0 18px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow); transition: border-color .15s; }
.ask:focus-within { border-color: var(--gold); }
.ask-ic { color: var(--gold); width: 20px; height: 20px; }
.ask input { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; background: none; padding: 0 12px; font-size: 16px; color: var(--ink); }
.ask input::placeholder, .dock input::placeholder { color: var(--mute); }
input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
.ask-go, .dock-go { width: 46px; height: 46px; border-radius: 4px; display: grid; place-items: center; background: var(--dark); color: var(--on-dark); transition: filter .15s; }
.ask-go:hover, .dock-go:hover { filter: brightness(1.12); }
.ask-go .ic, .dock-go .ic { width: 19px; height: 19px; stroke-width: 2; }

.suggest { position: absolute; left: -1px; right: -1px; top: calc(100% + 6px); z-index: 30; margin: 0; padding: 6px; list-style: none;
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow); }
.suggest.up { top: auto; bottom: calc(100% + 8px); }
.suggest li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 11px 12px; border-radius: 4px; cursor: pointer; }
.suggest li:hover, .suggest li.on { background: var(--tint); }
.sg-t { color: var(--ink); }
.sg-c { font-size: 12px; color: var(--gold); white-space: nowrap; }

.quick { margin: 16px 0 34px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { height: 38px; padding: 0 15px; border-radius: 30px; border: 1px solid var(--line-2); background: var(--paper);
  font-size: 14px; color: var(--sub); transition: border-color .15s, color .15s; }
.chip::before { content: '#'; color: var(--link); margin-right: 2px; }
.chip:hover { border-color: var(--gold); color: var(--gold); }

.facts { display: grid; grid-template-columns: 1fr 1fr 1.35fr; background: var(--band-2); border-radius: 4px; margin-bottom: 18px; }
.facts > * { padding: 16px 0 16px 16px; display: flex; flex-direction: column; gap: 2px; }
.facts > * + * { border-left: 1px solid var(--line); }
.facts span { font-size: 12.5px; color: var(--mute); }
.facts b { font: 700 19px/1.25 var(--en); letter-spacing: 0; color: var(--head); }
.facts a b { color: var(--gold); }

.notice { margin: 0 0 8px; }
.notice-b { width: 100%; display: flex; align-items: center; gap: 12px; padding: 15px 16px; text-align: left;
  border: 1px solid var(--line); border-radius: 4px; background: var(--paper); color: var(--head); }
.notice-b b { flex: 1; font-weight: 500; font-size: 15px; }
.notice-k { height: 24px; display: inline-flex; align-items: center; padding: 0 10px; border-radius: 30px; background: var(--gold); color: var(--on-dark); font-size: 12px; white-space: nowrap; }

/* 공식홈의 섹션 머리 — 영문 제목(Lato) + 한국어 설명 + READ MORE */
.sec { padding: 40px 0 8px; }
.sec-hd { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.sec-en { margin: 0; font: 500 22px/1.2 var(--en); letter-spacing: 0; color: var(--head); }
.sec-ko { margin: 6px 0 0; font-size: 15px; color: var(--sub); }
.sec-more { font: 400 12px/1 var(--en); letter-spacing: .02em; color: var(--link); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; padding-bottom: 4px; }

/* 분야 카드 — 사진 + 골드 분류 + 굵은 제목 */
.cat-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 14px; }
.cat { width: 100%; display: flex; flex-direction: column; text-align: left; }
.cat-img { position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: 4px; overflow: hidden; background: var(--band); }
.cat-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.cat:hover .cat-img img { transform: scale(1.04); }
.cat-img.plain { display: grid; place-items: center; color: var(--gold); background: var(--band-2); }
.cat-img.plain .ic { width: 38px; height: 38px; stroke-width: 1.3; }
.cat-n { position: absolute; right: 8px; bottom: 8px; min-width: 26px; height: 22px; padding: 0 8px; border-radius: 30px;
  background: rgba(255, 255, 255, .92); color: #333; font: 700 11.5px/22px var(--en); text-align: center; }
.cat-k { margin: 12px 0 2px; font-size: 13px; color: var(--gold); }
.cat-t { font-size: 17px; font-weight: 700; color: var(--head); line-height: 1.4; }
.cat-d { margin-top: 2px; font-size: 13.5px; color: var(--sub); }

.band { background: var(--band); margin-top: 44px; }
.band .view { padding-top: 40px; padding-bottom: 44px; }
.band .sec { padding: 0; }
.faq-list { list-style: none; margin: 0; padding: 0; background: var(--paper); border-radius: 4px; }
.faq-list li + li { border-top: 1px solid var(--line); }

.foot { padding: 30px 0 calc(40px + env(safe-area-inset-bottom)); font-size: 13px; line-height: 1.7; color: var(--mute); }
.foot p { margin: 0 0 8px; }
.foot-brand { font: 700 14px/1 var(--kr); color: var(--taupe); margin-bottom: 14px !important; }

/* ───────── 링크 행 ───────── */
.links { display: flex; flex-direction: column; }
.lrow { width: 100%; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 12px; align-items: center;
  padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); transition: background .15s; }
.lrow-t { font-weight: 500; font-size: 15.5px; color: var(--head); }
.lrow-a { grid-row: 2; font-size: 13.5px; color: var(--mute); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lrow-c { grid-row: 1 / 3; grid-column: 2; color: var(--line-2); }
.lrow:hover { background: var(--tint); }
.lrow:hover .lrow-c { color: var(--gold); }
.lrow.plain { border-bottom: 0; }
.links .lrow { padding-left: 2px; padding-right: 2px; }
.also .lrow:last-child { border-bottom: 0; }

/* ───────── 안내 기록 ───────── */
#thread { padding-top: calc(var(--bar-h) + env(safe-area-inset-top) + 8px); padding-bottom: calc(120px + env(safe-area-inset-bottom)); min-height: 80vh; }
.qa { padding: 26px 0 34px; border-bottom: 8px solid var(--band-2); margin: 0 -20px; padding-left: 20px; padding-right: 20px;
  opacity: 0; transform: translateY(6px); transition: opacity .22s var(--ease), transform .22s var(--ease); }
.qa.in { opacity: 1; transform: none; }
.qa:last-child { border-bottom: 0; }
.q { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--sub); }
.q-l { font: 700 11px/1 var(--en); letter-spacing: .12em; color: var(--link); flex: none; }
.q-t { font-size: 15px; }

.ans-img { position: relative; aspect-ratio: 16 / 7; border-radius: 4px; overflow: hidden; margin-bottom: 18px; background: var(--band); }
.ans-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ans-img .pill { position: absolute; left: 12px; bottom: 12px; height: 26px; font-size: 12px; }
.kicker { margin: 0 0 6px; font-size: 14px; color: var(--gold); }
.ans-t { margin: 0 0 10px; font: 700 23px/1.4 var(--kr); letter-spacing: -.045em; color: var(--head); }
.lead { margin: 0 0 20px; font-size: 16px; line-height: 1.75; color: var(--ink); }
.ans > :last-child { margin-bottom: 0; }

.kv { margin: 0 0 20px; border-top: 2px solid var(--head); }
.kv-r { display: grid; grid-template-columns: minmax(0, 11em) 1fr; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.kv dt { color: var(--sub); font-size: 14px; }
.kv dd { margin: 0; font-weight: 500; font-size: 14.5px; color: var(--head); font-variant-numeric: tabular-nums; text-align: right; }
.kv-r.on { background: var(--hl); margin: 0 -10px; padding-left: 10px; padding-right: 10px; }
.kv-r.on dt { color: var(--gold); font-weight: 500; }
.kv.meta { border-top: 1px solid var(--line-2); }
.kv.meta dd { font-weight: 400; text-align: left; }
.kv.meta .kv-r { grid-template-columns: 5.5em 1fr; }

.season-h { display: flex; align-items: center; gap: 8px; margin: 0 0 10px; font-size: 14px; font-weight: 500; color: var(--head); }
.season-h.sub { margin-top: 16px; color: var(--sub); }
.tag { height: 22px; display: inline-flex; align-items: center; padding: 0 9px; font-size: 11.5px; border-radius: 30px; background: var(--gold); color: var(--on-dark); }
.tag.soft { background: var(--tint); color: var(--gold); }
.more { margin: -8px 0 20px; }
.more summary { cursor: pointer; font: 400 12.5px/1 var(--en); letter-spacing: .02em; color: var(--link); text-decoration: underline; text-underline-offset: 3px; padding: 14px 0; list-style: none; }
.more summary::-webkit-details-marker { display: none; }

/* 버스 시간표 — 지난 차는 흐리게, 다음 차를 강조 */
.times { margin: 0 0 20px; }
.times-h { margin: 0 0 8px; font-size: 14px; font-weight: 500; color: var(--head); display: flex; align-items: center; gap: 8px; }
.times-l { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 16px; padding: 0; list-style: none; }
.times-l li { height: 30px; padding: 0 11px; display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 30px;
  font: 400 13.5px/1 var(--en); letter-spacing: 0; color: var(--ink); }
.times-l li.past { color: var(--mute); border-color: var(--line); opacity: .7; }
.times-l li.next { background: var(--dark); border-color: var(--dark); color: var(--on-dark); font-weight: 700; }

.notes { margin: 0 0 20px; padding: 0; list-style: none; }
.notes li { position: relative; padding-left: 14px; margin: 0 0 7px; font-size: 14.5px; line-height: 1.7; color: var(--sub); }
.notes li::before { content: ''; position: absolute; left: 2px; top: .8em; width: 3px; height: 3px; border-radius: 50%; background: var(--taupe); }

.calls { display: flex; flex-direction: column; gap: 8px; margin: 0 0 20px; }
.call { display: flex; align-items: center; gap: 10px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 4px; background: var(--paper); transition: border-color .15s; }
.call .ic { color: var(--gold); }
.call-n { flex: 1; font-size: 14px; color: var(--sub); }
.call b { font: 700 15px/1 var(--en); letter-spacing: 0; color: var(--head); }
.call:hover { border-color: var(--gold); }
.xlink { display: flex; align-items: center; justify-content: center; gap: 8px; height: 48px; margin: 0 0 20px; border-radius: 4px;
  background: var(--dark); color: var(--on-dark); font-size: 15px; font-weight: 500; }
.xlink .ic { width: 17px; height: 17px; }

.src { margin: 6px 0 0; font-size: 12.5px; color: var(--mute); }
.also { margin-top: 26px; }
.also-h { margin: 0 0 4px; font: 500 15px/1.4 var(--en); letter-spacing: 0; color: var(--head); }
.ans.none .links { margin-top: 8px; }
.ans .chips { margin-top: 4px; }

/* ───────── 하단 입력 ───────── */
.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 25;
  padding: 10px max(16px, calc((100vw - var(--col)) / 2 + 20px)) calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--bg) 72%, transparent); }
.dock > .suggest { left: max(16px, calc((100vw - var(--col)) / 2 + 20px)); right: max(16px, calc((100vw - var(--col)) / 2 + 20px)); }
.dock-in { display: flex; align-items: center; height: 56px; padding: 0 5px 0 16px; background: var(--paper);
  border: 1px solid var(--line-2); border-radius: 4px; box-shadow: var(--shadow); transition: border-color .15s; }
.dock-in:focus-within { border-color: var(--gold); }
.dock input { flex: 1; min-width: 0; border: 0; outline: 0; background: none; font-size: 16px; height: 100%; color: var(--ink); }

/* ───────── 시트 ───────── */
.scrim { position: fixed; inset: 0; z-index: 40; background: rgba(30, 26, 22, .45); opacity: 0; transition: opacity .22s var(--ease); }
.scrim.in { opacity: 1; }
.sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 41; max-height: 86vh; display: flex; flex-direction: column;
  background: var(--paper); border-radius: 12px 12px 0 0; box-shadow: var(--shadow);
  transform: translateY(100%); transition: transform .28s var(--ease); padding-bottom: env(safe-area-inset-bottom); }
.sheet.in { transform: none; }
.sheet.drag { transition: none; }
.sheet-grip { cursor: grab; touch-action: none; }
.sheet-h { touch-action: none; }
.sheet-grip { width: 36px; height: 4px; border-radius: 4px; background: var(--line-2); margin: 10px auto 0; }
.sheet-h { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 16px 20px 12px; border-bottom: 1px solid var(--line); }
.sheet-k { margin: 0 0 4px; font: 400 12px/1 var(--en); letter-spacing: .14em; text-transform: uppercase; color: var(--link); }
.sheet-h h2 { margin: 0; font: 700 21px/1.35 var(--kr); letter-spacing: -.045em; color: var(--head); }
.sheet-x { width: 44px; height: 44px; border-radius: 4px; display: grid; place-items: center; color: var(--sub); margin: -4px -8px 0 0; }
.sheet-b { overflow-y: auto; overscroll-behavior: contain; padding: 4px 20px 24px; }
.sheet-note { margin: 14px 0 12px; font-size: 14px; color: var(--sub); }

@media (min-width: 720px) {
  .cat-grid { grid-template-columns: 1fr 1fr 1fr; }
  .sheet { left: 50%; right: auto; bottom: auto; top: 50%; width: min(560px, calc(100vw - 48px)); max-height: 78vh;
    border-radius: 4px; transform: translate(-50%, -46%); opacity: 0; transition: transform .24s var(--ease), opacity .2s var(--ease); }
  .sheet.in { transform: translate(-50%, -50%); opacity: 1; }
  .sheet-grip { display: none; }
  .qa { margin: 0; padding-left: 0; padding-right: 0; border-bottom-width: 1px; border-bottom-color: var(--line); }
}
@media (max-width: 360px) {
  .view { padding: 0 16px; }
  .facts b { font-size: 16px; }
  .kv-r { grid-template-columns: minmax(0, 9em) 1fr; }
  .cat-grid { gap: 18px 10px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-property: opacity, background-color, color, border-color !important; transition-duration: .15s !important; }
  .cat:hover .cat-img img { transform: none; }
  .qa { opacity: 1; transform: none; }
  .hero-media { transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .bar { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .scrim { background: rgba(30, 26, 22, .7); }
}
@media (prefers-contrast: more) {
  :root { --line: #b9b1a8; --line-2: #8f877e; --sub: #4d4843; --mute: #4d4843; }
}
@media (prefers-reduced-motion: reduce) and (max-width: 719px) {
  .sheet, .sheet.in { transform: none; }
  .sheet { opacity: 0; } .sheet.in { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) and (min-width: 720px) {
  .sheet, .sheet.in { transform: translate(-50%, -50%); }
}
