/* ── 업종 탭: '아이콘 타일' 스타일 ─────────────────────────── */
.filter-tabs ul{
  display:grid; grid-template-columns: repeat(9, minmax(90px,1fr));
  gap:8px; margin:0; padding:0; list-style:none;
}
.filter-tabs a{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  height:64px; border-radius:var(--round-md);
  background:var(--tile-bg); color:var(--tile-fg); text-decoration:none;
  border:1px solid #1c1c1c; box-shadow: inset 0 -3px var(--c-accent-ylw);
  position:relative; font-weight:700;
}
.filter-tabs a:hover{ filter:brightness(1.08); }
.filter-tabs a.is-active{
  outline:2px solid var(--c-primary); outline-offset:-2px;
  box-shadow: inset 0 -4px var(--c-accent-ylw), 0 0 0 2px #fff;
}

/* 사이드바 (고정 너비) */
@media (min-width:768px){}
@media (max-width:1199.98px){
  .filter-tabs ul{ grid-template-columns: repeat(6, minmax(90px,1fr)); }
}
@media (max-width:767.98px){
  .filter-tabs ul{ grid-template-columns: repeat(3, minmax(90px,1fr)); }
  .home-section{ margin-bottom:1.75rem; }
}

.side-wing {
     /* 사이드바 너비 고정 */
     flex: 0 0 250px; /* flex 컨테이너 내에서 너비 유지 */
     position:sticky;
     top: 152px;
     align-self:flex-start;
}

/* 아이콘(FA4) – 항목 순서에 따라 바뀌게 */
.filter-tabs a::before {
    font-family: "FontAwesome"; /* Font Awesome 4 버전용 폰트 이름 */
    /* font-weight: 900; <-- 버전 4에서는 이 속성이 필요 없으므로 삭제합니다. */
    font-size: 18px;
    line-height: 1;
    /* 모든 지역 탭에 적용될 지도 핀 아이콘을 기본값으로 설정 */
    content: "\f041"; /* map-marker 아이콘 */
    display: block;
    margin-bottom: 6px;
    opacity: .95;
}

/* '전체보기' 탭만 다른 아이콘으로 덮어쓰기 합니다. */
.filter-tabs li:nth-child(1) a::before { content: "\f009"; } /* 전체보기 (th-large) */

/* 최신글 위젯 (공지사항) - 개선된 스타일 */
.latest-posts-widget {
    background-color: #e6e6e6; /* 어두운 배경색 */
    border-radius: 5px; /* 좀 더 둥글게 */
    padding: 20px;
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    color: #e0e0e0; /* 기본 텍스트 색상 밝게 조정 */
    border: 1px solid #adadad; /* 은은한 테두리 추가 */
     /* 그림자 효과 */
    transition: all 0.3s ease; /* 부드러운 효과를 위한 전환 */
}

.latest-posts-widget:hover {
    transform: translateY(-5px); /* 마우스 올리면 살짝 위로 이동 */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3c434f;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-image: linear-gradient(to right, transparent, rgba(100, 100, 100, 0.8), transparent) 1;
}

.more-btn {
    font-size: 18px;
    font-weight: 600; /* 폰트 두께 조정 */
    color: #ffffff; /* 타이틀 색상 강조 */
    margin: 0;
}

.widget-title {
    width: 100%;
    text-align: center;
    color: #d9d9d9; /* 더보기 버튼 색상 */
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    background-color: #8666f8;
     /* 더보기 버튼 테두리 */
    border: 1px solid #c5c5c5;
    padding: 4px 12px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.widget-title:hover {
    background-color: #4a5260;
    color: #ffffff;
    border-color: #4a5260;
}

.widget-body .wr-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-body .wr-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 4px; /* 여백 미세 조정 */
    font-size: 15px;
    border-bottom: 1px dashed #2c3440; /* 각 항목 구분선 */
}

.widget-body .wr-list li:last-child {
    border-bottom: none; /* 마지막 항목 구분선 제거 */
}

.widget-body .wr-list li a {
    color: #c0c0c0; /* 링크 색상 조정 */
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    transition: color 0.2s;
}

.widget-body .wr-list li a:hover {
    color: #ffffff;
}

/* 'N' 아이콘 스타일 */
.widget-body .wr-list .na-new {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
}

/* 날짜/시간 스타일 */
.widget-body .wr-list .wr-date {
    color: #e67e22; /* 주황색 */
    font-size: 14px;
    margin-left: 15px;
    white-space: nowrap;
}
