/* =========================================================
   워드프레스 코어 호환 스타일 (필수 클래스 보정)
   ========================================================= */

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0; padding: 0; margin: -1px;
}
.screen-reader-text:focus {
  position: static !important;
  width: auto; height: auto;
  clip: auto; margin: 0;
  padding: 8px 14px;
  background: var(--color-gold-400);
  color: #1c1305;
  z-index: 100000;
  border-radius: var(--radius-sm);
}

.alignleft { float: left; margin: 4px 20px 12px 0; }
.alignright { float: right; margin: 4px 0 12px 20px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--color-text-faint); font-size: 0.85rem; margin-top: 6px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.gallery img { border-radius: var(--radius-sm); }
img { max-width: 100%; height: auto; }

/* 관리자바가 있을 때 sticky 헤더가 가리지 않도록 보정 */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* 워드프레스 기본 페이지네이션(전역 next/prev 링크) 보정 */
.pagination a.page-numbers,
.pagination span.page-numbers { text-decoration: none; }

/* 로그인/알림 관리자바용 링크 색상 보정 */
#wpadminbar { position: fixed; }

/* WP 검색결과 없음 안내 */
.bn-empty-state {
  padding: 40px 20px;
  text-align: center;
  color: var(--color-text-muted);
}
