/* ===== 퀵메뉴 바 ===== */
.quick-menu-bar { background: #1a3055; padding: 0; }
.qmb-inner { display: flex; align-items: stretch; max-width: 1200px; margin: 0 auto; }
.qmb-label { background: #152843; padding: 22px 36px; display: flex; flex-direction: column; justify-content: center; min-width: 160px; flex-shrink: 0; }
.qmb-sub { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; margin-bottom: 6px; font-style: italic; }
.qmb-title { font-size: 17px; font-weight: 800; color: #fff; line-height: 1.4; }
.qmb-items { display: flex; flex: 1; }
.qmb-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; flex: 1; padding: 20px 10px; color: #fff; text-decoration: none; border-left: 1px solid rgba(255,255,255,0.1); transition: background 0.2s; }
.qmb-item:hover { background: rgba(255,255,255,0.1); }
.qmb-icon { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; background: transparent; }
.qmb-item:hover .qmb-icon { transform: scale(1.08); }
.qmb-icon img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; display: block; }
.qmb-item span { font-size: 14px; font-weight: 600; }
@media (max-width: 767px) {
  /* 퀵메뉴 모바일: 한줄 타이틀 + 3x2 그리드 */
  .quick-menu-bar { display: block; }
  .qmb-inner { flex-direction: column; }
  .qmb-label { padding: 10px 18px; min-width: unset; flex-direction: row; align-items: center; gap: 10px; }
  .qmb-sub { margin-bottom: 0; font-size: 11px; }
  .qmb-title { font-size: 14px; white-space: nowrap; }
  .qmb-items { display: grid; grid-template-columns: repeat(3, 1fr); flex: unset; border-top: 1px solid rgba(255,255,255,0.1); }
  .qmb-item { padding: 12px 8px; min-width: unset; border-left: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1); gap: 6px; }
  .qmb-item:nth-child(-n+3) { border-top: none; }
  .qmb-item:nth-child(3n+1) { border-left: none; }
  .qmb-icon { width: 54px; height: 54px; }
  .qmb-icon img { width: 54px; height: 54px; }
  .qmb-item span { font-size: 12px; }
}

/* ===== 메인 히어로 (동영상) ===== */
.hero { position: relative; height: 100dvh; min-height: 520px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #111; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

/* ===== 이미지 슬라이더 ===== */
.hero-slider { position: relative; overflow: hidden; width: 100%; line-height: 0; }
.slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.slide { min-width: 100%; }
.slide img { width: 100%; height: auto; display: block; object-fit: cover; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.7); border: none; border-radius: 50%; width: 44px; height: 44px; font-size: 18px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.slider-btn:hover { background: rgba(255,255,255,0.95); }
.slider-prev { left: 16px; }
.slider-next { right: 72px; }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s; }
.dot.active { background: #fff; }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 24px; max-width: 800px; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); border-radius: 24px; padding: 6px 18px; font-size: 13px; font-weight: 600; margin-bottom: 22px; letter-spacing: 0.04em; backdrop-filter: blur(6px); }
.hero-title { font-size: clamp(28px, 5vw, 56px); font-weight: 900; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-title em { color: #74c69d; font-style: normal; }
.hero-desc { font-size: clamp(15px, 2vw, 18px); opacity: 0.9; margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 36px; font-size: 16px; font-weight: 700; transition: all 0.2s; }
.hero-btn-primary { background: var(--accent); color: var(--white); }
.hero-btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.hero-btn-outline { background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.6); color: var(--white); backdrop-filter: blur(6px); }
.hero-btn-outline:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 12px; animation: bounce 2s infinite; }
.hero-scroll-dot { width: 6px; height: 6px; background: rgba(255,255,255,0.7); border-radius: 50%; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* ===== 통계 바 ===== */
.stat-bar { background: var(--accent); color: var(--white); padding: 20px 0; }
.stat-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 8px 16px; border-right: 1px solid rgba(255,255,255,0.25); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(22px, 3vw, 30px); font-weight: 900; }
.stat-label { font-size: 13px; opacity: 0.88; margin-top: 2px; }

/* ===== 치료 카드 섹션 ===== */
.treat-section { padding: 80px 0; }
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.treat-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; }
.treat-card img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s; }
.treat-card:hover img { transform: scale(1.05); }
.treat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,30,60,0.1) 0%, rgba(13,30,60,0.65) 60%); padding: 20px; color: var(--white); display: flex; flex-direction: column; justify-content: flex-end; }
.treat-card-sub { font-size: 11px; opacity: 0.82; margin-bottom: 6px; line-height: 1.4; }
.treat-card-title { font-size: 19px; font-weight: 800; margin-bottom: 12px; }
.treat-card-btn { display: inline-block; border: 1px solid rgba(255,255,255,0.7); border-radius: 20px; padding: 5px 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.03em; align-self: flex-start; transition: background 0.2s; }
.treat-card:hover .treat-card-btn { background: rgba(255,255,255,0.2); }
.section-divider { width: 40px; height: 2px; background: #aaa; margin: 12px auto 40px; }

/* ===== 장비 슬라이더 (홈) ===== */
.equip-slide-section { padding: 80px 0; background: var(--paper); }
.equip-slider-wrap { position: relative; }
.equip-slider-viewport { overflow: hidden; }
.equip-slider-track { display: flex; gap: 20px; align-items: stretch; will-change: transform; }
.equip-slide-card { min-width: 340px; flex-shrink: 0; text-decoration: none; display: flex; flex-direction: column; background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #e8ecf0; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.equip-img-wrap { background: #f5f7fa; height: 240px; overflow: hidden; }
.equip-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.equip-card-body { padding: 14px 16px 18px; text-align: center; }
.equip-card-model { font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 4px; }
.equip-card-name { font-size: 15px; font-weight: 800; color: var(--primary); line-height: 1.4; }

/* ===== 질환안내 ===== */
.disease-section { padding: 80px 0; background: var(--paper); }
.disease-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 44px; }
.disease-btn { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 14px; text-align: center; font-size: 14px; font-weight: 600; color: var(--ink); transition: all 0.2s; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.disease-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 16px var(--shadow-md); }
.disease-btn .icon { font-size: 24px; }

/* ===== 병원소개 3컬럼 ===== */
.clinic-intro-section { padding: 70px 0 80px; background: #f4f6f8; }
.ci-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; border: 1px solid #c8d0dc; overflow: hidden; margin-top: 32px; }
.ci-col { display: flex; flex-direction: column; }

/* 공지사항 */
.ci-notice { padding: 28px 26px 32px; background: #fff; }
.ci-col-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ci-col-header h3 { font-size: 17px; font-weight: 800; color: #1a2e4a; margin: 0; }
.ci-more-btn { font-size: 12px; color: #555; text-decoration: none; border: 1px solid #bbb; padding: 3px 10px; display: inline-flex; align-items: center; gap: 4px; transition: all 0.2s; }
.ci-more-btn:hover { border-color: var(--accent); color: var(--accent); }
.ci-sub { font-size: 12.5px; color: #777; line-height: 1.6; margin-bottom: 14px; }
.ci-hr { border: none; border-top: 1px solid #d8dde6; margin: 0 0 14px; }
.ci-notice-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.ci-notice-list li { border-bottom: 1px solid #edf0f4; padding: 9px 0; }
.ci-notice-list li:last-child { border-bottom: none; }
.ci-notice-list a { font-size: 13.5px; color: #333; text-decoration: none; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.2s; }
.ci-notice-list a:hover { color: var(--accent); }

/* 병원 둘러보기 */
.ci-tour { background-size: cover; background-position: center; position: relative; min-height: 340px; border-left: 1px solid #c8d0dc; border-right: 1px solid #c8d0dc; }
.ci-tour-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(80,180,140,0.88) 0%, rgba(20,80,180,0.88) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; padding: 32px 24px; text-align: center; }
.ci-hexagon { width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; position: relative; }
.ci-hexagon::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); border: 2px solid rgba(255,255,255,0.6); }
.ci-hexagon img { width: 54px; height: 54px; object-fit: contain; filter: brightness(0) invert(1); position: relative; z-index: 1; }
.ci-tour-text { font-size: 14.5px; color: #fff; line-height: 1.75; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.ci-tour-btn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.85); padding: 8px 22px; font-size: 13px; font-weight: 700; color: #fff; text-decoration: none; background: rgba(255,255,255,0.1); transition: background 0.2s; }
.ci-tour-btn:hover { background: rgba(255,255,255,0.25); }

/* 의료진소개 */
.ci-doctor-col { background: #fff; display: flex; flex-direction: column; }
.ci-doctor-img { overflow: hidden; flex: 1; min-height: 220px; }
.ci-doctor-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.ci-doctor-info { padding: 22px 26px 28px; border-top: 1px solid #e0e4ea; }

@media (max-width: 900px) {
  .ci-grid { grid-template-columns: 1fr; }
  .ci-tour { min-height: 280px; border-left: none; border-right: none; border-top: 1px solid #c8d0dc; border-bottom: 1px solid #c8d0dc; }
  .ci-doctor-col { border-top: 1px solid #c8d0dc; }
}

/* ===== 의료진 소개 ===== */
.doctor-section { padding: 80px 0; }
.doctor-layout { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.doctor-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px var(--shadow-md); }
.doctor-photo img { width: 100%; height: 480px; object-fit: cover; }
.doctor-info .badge { display: inline-block; background: var(--accent-soft); color: var(--accent-deep); border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.doctor-info h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; color: var(--primary); margin-bottom: 6px; }
.doctor-info .title-en { font-size: 14px; color: var(--ink-mute); margin-bottom: 22px; font-style: italic; }
.doctor-info p { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 24px; }
.doctor-career { display: flex; flex-direction: column; gap: 10px; }
.career-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.career-item::before { content: '▪'; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.doctor-image-section { text-align: center; }
.doctor-image-section img { width: 100%; max-width: 600px; border-radius: var(--radius-lg); margin: 0 auto; }

/* ===== 장비 슬라이더 ===== */
.equip-section { padding: 80px 0; background: var(--accent-soft); }
.equip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.equip-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 20px var(--shadow); }
.equip-card img { width: 100%; height: 180px; object-fit: cover; }
.equip-card-body { padding: 18px; }
.equip-card-body h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.equip-card-body p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* ===== FAQ 섹션 ===== */
.faq-section { padding: 80px 0; }

/* ===== 오시는길 미리보기 ===== */
.location-section { padding: 60px 0; background: #f8f9fb; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}
/* 왼쪽: 흰색 CONTACT 패널 */
.location-info {
  background: #fff;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #eef0f4;
}
.location-contact-title {
  font-size: 11px;
  font-weight: 700;
  color: #34a8eb;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.location-contact-subtitle {
  font-size: 22px;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  line-height: 1.3;
}
.location-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.location-item:last-child { margin-bottom: 0; }
.location-item .loc-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #eef7fd;
  border: 1px solid #c8e6f8;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.location-item .loc-icon svg {
  width: 16px; height: 16px;
  stroke: #34a8eb; fill: none;
  stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.location-item .loc-body { flex: 1; }
.location-item .loc-label {
  font-size: 13px;
  font-weight: 700;
  color: #34a8eb;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.location-item .loc-val {
  font-size: 15px;
  color: #444;
  line-height: 1.85;
}
.location-item .loc-val .time-row {
  display: flex;
  gap: 16px;
}
.location-item .loc-val .time-row span:first-child {
  color: #999;
  min-width: 58px;
}
.location-item .loc-notice {
  font-size: 14px;
  color: #e44;
  margin-top: 8px;
  line-height: 1.7;
}
.location-item .loc-tel {
  font-size: 26px;
  font-weight: 900;
  color: #1a3055;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.2s;
}
.location-item .loc-tel:hover { color: #34a8eb; }
.location-divider {
  height: 1px;
  background: #f0f2f5;
  margin: 2px 0 24px;
}
/* 오른쪽: 지도 */
.location-map { overflow: hidden; }
.location-map iframe {
  width: 100%; height: 100%;
  min-height: 440px;
  border: none; display: block;
}
@media (max-width: 900px) {
  .location-section { padding: 40px 16px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-info { padding: 40px 28px; border-right: none; border-bottom: 1px solid #eef0f4; }
  .location-map iframe { min-height: 280px; }
  .location-contact-subtitle { font-size: 18px; margin-bottom: 28px; }
}

/* ===== 병원소식 프리뷰 ===== */
.news-section { padding: 80px 0; background: var(--paper); }
.news-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.news-preview-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; transition: box-shadow 0.2s; cursor: pointer; }
.news-preview-card:hover { box-shadow: 0 8px 32px var(--shadow-md); }
.news-preview-cat { font-size: 12px; font-weight: 600; color: var(--accent); margin-bottom: 8px; }
.news-preview-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.news-preview-date { font-size: 12px; color: var(--ink-mute); }
.view-all-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 36px; font-size: 14px; font-weight: 600; color: var(--accent); border: 1px solid var(--accent); border-radius: 24px; padding: 10px 24px; transition: all 0.2s; }
.view-all-btn:hover { background: var(--accent); color: var(--white); }

/* ===== 반응형 (홈) ===== */
@media (max-width: 1024px) {
  .treat-grid { grid-template-columns: repeat(2, 1fr); }
  .disease-grid { grid-template-columns: repeat(3, 1fr); }
  .doctor-layout { grid-template-columns: 1fr; }
  .doctor-photo img { height: 320px; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .news-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.25); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.25); }
}
@media (max-width: 767px) {
  /* === 섹션 패딩 압축 === */
  .treat-section { padding: 48px 0; }
  .equip-slide-section { padding: 48px 0; }
  .clinic-intro-section { padding: 48px 0 52px; }
  .faq-section { padding: 48px 0; }
  .location-section { padding: 40px 16px; }

  /* === 치료 카드: 2열 === */
  .treat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px; }
  .treat-card img { height: 140px; }
  .treat-card-title { font-size: 14px; margin-bottom: 8px; }
  .treat-card-sub { font-size: 10px; }
  .treat-card-btn { font-size: 11px; padding: 4px 12px; }

  /* === 장비 슬라이더 === */
  .equip-slide-card { min-width: 160px; max-width: 160px; }
  .equip-img-wrap { height: 120px; }
  .equip-card-name { font-size: 12px; }
  .equip-slider-viewport { touch-action: pan-y; }

  /* === 질환 버튼 === */
  .disease-grid { grid-template-columns: repeat(2, 1fr); }

  /* === 병원소개 3컬럼 → 1컬럼 === */
  .ci-grid { grid-template-columns: 1fr; }
  .ci-tour { min-height: 220px; border-left: none; border-right: none; border-top: 1px solid #c8d0dc; }
  .ci-doctor-col { border-top: 1px solid #c8d0dc; }

  /* === 뉴스 === */
  .news-preview-grid { grid-template-columns: 1fr; }
  .news-preview-title { font-size: 14px; }

  /* === stat === */
  .stat-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 12px; }

  /* === 히어로 === */
  .hero { height: 56vw; min-height: 260px; max-height: 380px; }
  .slider-next { right: 16px; }
  .hero-title { font-size: 22px; }
  .hero-sub { font-size: 13px; padding: 0 16px; }
  .hero-badges { flex-wrap: wrap; gap: 6px; padding: 0 16px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; }
  .hero-btns { gap: 10px; }
  .hero-btn { font-size: 14px; padding: 11px 20px; }

  /* === 의사 레이아웃 === */
  .doctor-layout { grid-template-columns: 1fr; gap: 24px; }
  .doctor-photo img { height: 220px; object-fit: cover; border-radius: 12px; }

  /* === location === */
  .location-grid { grid-template-columns: 1fr !important; }
  .location-map iframe { min-height: 240px !important; }
  .location-info { padding: 32px 20px !important; }
  .location-contact-subtitle { font-size: 18px !important; margin-bottom: 24px !important; }
  .location-item .loc-tel { font-size: 22px !important; }
  .location-item { margin-bottom: 20px; }
  .location-divider { margin: 0 0 20px; }
}

/* 장비 슬라이더 이전/다음 버튼 */
.equip-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid #dde3ea;
  box-shadow: 0 2px 10px rgba(0,0,0,0.14);
  font-size: 16px;
  color: #1a3055;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, background 0.2s;
  line-height: 1;
}
.equip-nav-btn:hover { background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,0.2); }
.equip-prev { left: -16px; }
.equip-next { right: -16px; }
@media (max-width: 767px) {
  .equip-prev { left: 4px; }
  .equip-next { right: 4px; }
}

