.page-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 40px;
}

.category-box {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 26px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.category-title {
    font-size: 19px;
    font-weight: 700;
}

.more-btn {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.more-btn:hover { text-decoration: underline; }

.site-list {
    list-style: none;
}


.site-item:last-child { border-bottom: none; }

.rank {
    width: 36px;
    text-align: center;
    font-weight: 700;
}

.medal { font-size: 18px; }

.site-name a {
    color: #222;
    text-decoration: none;
}

.site-name a:hover { text-decoration: underline; }

/* 모달 */
.addr-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.addr-modal-content {
    background: #fff;
    width: 90%;
    max-width: 540px;
    border-radius: 14px;
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

.addr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.modal-close {
    cursor: pointer;
    font-size: 18px;
}
/* 컨테이너 */
.addr-container {
    max-width: 1400px;
    margin: 0 auto;        /* 🔥 위 여백 제거 */
    padding: 0 16px;
}


/* 신규 입점 문의 배너 */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.sponsor-item {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 18px 0px;
    font-weight: 700;
    text-decoration: none;
}

.sponsor-item:hover {
    background:#222;
	 color: #f6e84b;
}

/* 검색 */
.search-box {
    margin-bottom: 30px;
}

.search-box input {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* 카테고리 그리드 */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
    gap: 20px;
}

/* 카테고리 카드 */
.category-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 16px;
}

.category-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.site-item {
    display: flex;
    align-items: center;
    padding: 6px 0;
}

.rank {
    width: 28px;
    text-align: center;
}

.medal { font-size: 16px; }
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.category-title {
    font-weight: 700;
    font-size: 16px;
}

.category-more {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    color: #444;
    border: 1px solid #ccc;
    border-radius: 6px; /* 살짝 둥근 사각형 */
    background: #fff;
    cursor: pointer;
    line-height: 1.4;
    white-space: nowrap;
}

/* hover 효과 */
.category-more:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #000;
}



/* 카테고리 타이틀 아래 구분선 */
.category-divider {
    border-bottom: 2px solid #222;
    margin-bottom: 10px;
}

/* 더보기 테이블 영역 */
.rank-columns {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.rank-column {
    width: 240px;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}

