/* 로고와 골프공 배경: 이 파일을 변경하면 전체 페이지에 적용됩니다. */
.logo-container { position:relative; display:inline-block; animation:commonFloating 3s ease-in-out infinite; text-decoration:none; }
.common-golf-ball { position:relative; width:184px; height:184px; display:flex; align-items:center; justify-content:center; overflow:hidden; border-radius:50%; background-color:#f8fafc; background-image:radial-gradient(circle,#cbd5e1 22%,transparent 23%),radial-gradient(circle,#cbd5e1 22%,transparent 23%); background-size:12px 12px; background-position:0 0,6px 6px; box-shadow:inset -10px -10px 20px rgba(0,0,0,.15),inset 10px 10px 20px #fff,0 5px 15px rgba(0,0,0,.3); }
.common-golf-ball>img { position:relative; z-index:1; width:95%; height:95%; object-fit:contain; mix-blend-mode:multiply; }
.logo-shine { position:absolute; z-index:2; top:0; left:-100%; width:50%; height:100%; border-radius:50%; background:linear-gradient(to right,transparent,rgba(255,255,255,.4),transparent); transform:skewX(-25deg); animation:commonShine 4s infinite; pointer-events:none; }
@keyframes commonFloating { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-5px); } }
@keyframes commonShine { 0% { left:-100%; } 20%,100% { left:200%; } }

/* 전체 페이지 공통 좌측 메뉴 */
.common-menu-button { position:absolute; left:24px; top:24px; z-index:73; width:58px; height:58px; border:0; border-radius:13px; background:#ffffff12; color:#fff; font-size:32px; line-height:1; cursor:pointer; }
.drawer-dim { position:fixed; z-index:85; inset:0; background:#07101db3; opacity:0; visibility:hidden; transition:.25s; }
.drawer-dim.open { opacity:1; visibility:visible; }
.common-drawer { position:fixed; z-index:90; inset:0 auto 0 0; width:300px; background:#fff; transform:translateX(-102%); transition:.28s; box-shadow:8px 0 30px #0003; }
.common-drawer.open { transform:none; }
.common-drawer .drawer-head { height:115px; padding:20px; display:flex; align-items:center; gap:12px; background:#111c2f; color:#fff; }
.common-drawer .drawer-head img { width:56px; height:56px; border-radius:50%; object-fit:contain; background:#fff; }
.common-drawer .drawer-head>div { display:flex; flex-direction:column; }
.common-drawer .drawer-head small { margin-top:4px; color:#b9c2ce; font-size:10px; }
.common-drawer .drawer-head button { margin-left:auto; align-self:flex-start; border:0; background:none; color:#fff; font-size:28px; cursor:pointer; }
.common-drawer nav { padding:16px; }
.common-drawer nav a { display:flex; gap:13px; margin:4px 0; padding:15px 16px; border-radius:11px; color:#465267; font-weight:700; text-decoration:none; }
.common-drawer nav a:hover,.common-drawer nav a.active { background:#eaf7f0; color:#168a57; }
.common-footer { padding:34px 15px; color:#7f8997; font-size:12px; font-weight:700; text-align:center; }
@media(max-width:700px) {
    .common-golf-ball { width:150px; height:150px; }
    .common-menu-button { left:18px; top:18px; width:54px; height:54px; font-size:30px; }
    .common-drawer { width:min(84vw,300px); }
}
