/* 전체 링크 색상 */
a {
  color: #005A9C;
  text-decoration: none;
}
a:hover {
  color: #1d5b9e;
  text-decoration: underline;
}

/* 버튼 스타일 */
button,
.wp-block-button__link {
  background-color: #005A9C;
  color: #fff;
  border-radius: 5px;
  padding: 8px 16px;
  transition: background 0.3s;
}
button:hover,
.wp-block-button__link:hover {
  background-color: #1d5b9e;
}

/* 헤더 영역 */
.site-header {
  background-color: #1d5b9e;
}
.main-title a {
  color: #fff;
}
.main-title a:hover {
  color: #fff;
}

/* 사이드바 위젯 제목 스타일 */
.widget-title,
.sidebar .widget-title {
  border-left: 4px solid #005A9C;
  padding-left: 8px;
  font-weight: bold;
  color: #1d5b9e;
}

/* ===== 다저스 스타일 미니멀 검색창 v2 ===== */
.dodgers-search-clean {
  display: flex;
  border: 2px solid #1d5b9e;
  border-radius: 30px;
  background-color: #f7f8f9;
  overflow: hidden;
  max-width: 100%;
}

.dodgers-search-clean input[type="search"] {
  flex: 1;
  border: none;
  padding: 10px 18px;
  font-size: 15px;
  background-color: #f7f8f9;
  color: #333;
  outline: none;
}

.dodgers-search-clean button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #f7f8f9;
  padding: 0 18px;
  cursor: pointer;
  min-width: 50px;
}

.dodgers-search-clean button svg {
  display: block;
}

/* 카드/본문 배경 */
.inside-article,
.widget {
  background-color: #F5F5F5;
  padding: 16px;
  border-radius: 8px;
}

/* 포인트 강조 (예: 좋아요 아이콘 등) */
.highlight-red {
  color: #EF3E42;
}

/* 단일 글 대표 이미지 숨기기 */
.single .inside-article > .featured-image,
.single .inside-article > figure.post-image {
  display: none;
}

/* === Footer Bar 배경 제거 === */
.footer-bar-active .footer-bar .widget {
	background: none !important;
}

/* === 기본 GeneratePress 카피라이터 문구 숨기기 === */
.copyright-bar {
  display: none;
}

/* 메뉴 기본 텍스트 스타일 */
.main-navigation a {
  color: #ffffff;
  background-color: transparent;
}

/* 마우스 오버 시 */
.main-navigation a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* 현재 활성화된 메뉴 항목 */
.main-navigation .current-menu-item > a {
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  color: #ffffff;
}

/* 모바일 ul 1단 색상 */
/*.main-navigation ul li {
	background-color: #fff;
}*/
/* 모바일 ul 하위 색상 */
/*.main-navigation ul ul li {
	background-color: #f0f0f0;
}*/
/* GeneratePress Site CSS */ /* Top Menu */
.menu-bar-items {
	flex-direction: row-reverse;
}
/* Header alignment */
@media(min-width: 669px) {
	.inside-navigation .navigation-branding {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
	.nav-align-right .inside-navigation {
		justify-content: space-between;
	}
}
/* Search results page header style */
.search-results .page-header .page-title {
	font-size: 36px;
	text-transform: uppercase;
	border-bottom: 2px solid var(--contrast);
}
/* Default theme button */
button,
.form-submit .submit {
	padding-top: 16px;
	padding-bottom: 16px;
}
/* Sidebar */
.sidebar {
	margin-top: 40px;
	margin-left: 0;
}
@media(min-width: 768px) {
	.sidebar {
		margin-left: 40px;
		margin-top: 0;
	}
}
/* Single post - Sticky Related Posts sidebar */
@media(min-width: 769px) {
	.is-sticky {
			position: sticky;
			top: 112px;
	}
}
/* Search modal */
.gp-modal__container {
	overflow-y: auto;
}
.gp-search-modal .gp-modal__overlay {
    padding-top: 15vh;
}
/* Tag cloud */
.wp-block-tag-cloud {
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
}
.wp-block-tag-cloud a {
	border-radius: 3px;
	padding: 4px 10px;
}
.site-footer .wp-block-tag-cloud a {
	background-color: var(--contrast);
	color: var(--base);
}
.sidebar .wp-block-tag-cloud a {
	background-color: var(--base);
	color: var(--contrast);
	border: 1px solid var(--contrast);
}
.wp-block-tag-cloud a:hover {
	background-color: var(--base);
	color: var(--contrast);
}
.sidebar a:hover {
	background-color: var(--contrast);
	color: var(--base);
} /* End GeneratePress Site CSS */