/* premium/creators.php */

/* real_log_list.php 느낌 상단 (태그, 검색) */
.cr_list_page { background: #fff; }
.cr_container { max-width: 1200px; margin: 0 auto; padding: 0 20px 100px; }
.cr_hero_sub {
    width: 100%;
    height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}
.cr_hero_sub h2 { font-size: 40px; font-weight: 800; color: #000; margin-bottom: 10px; }
.cr_hero_sub p { font-size: 16px; font-weight: 500; color: #666; margin-bottom: 40px; }
.cr_category_nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.cr_category_btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    background: #fff;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.cr_category_btn:hover { background: #f9f9f9; color: #333; border-color: #bbb; }
.cr_category_btn.active { background: #F5F2FF; color: #7800FF; border-color: #7800FF; }
.cr_list_top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.cr_total_count { font-size: 15px; color: #333; font-weight: 600; }
.cr_search_wrap { position: relative; width: 300px; border-bottom: 1px solid #000; }
.cr_search_wrap input { width: 100%; border: none; outline: none; padding: 8px 30px 8px 0; font-size: 16px; background: transparent; }
.cr_search_wrap button { position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 16px; }

/* secondGrid / secondBox (내용 영역) */
.secondGrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-top: 0; }
.secondBox { width: 100%; padding: 16px 16px 26px 16px; background: #F8F8F8; display: flex; flex-direction: column; align-items: center; }
.secondTop { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.secondGrade { padding: 0 12px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 600; border-radius: 15px; }
.premiumGrade { background: #EDD8FF; color: #7800FF; }
.bestGrade { background: #E5EAFB; color: #4C57EB; }
.newGrade { background: #E0F6E8; color: #00873F; }
.secondProfile { width: 126px; height: 126px; border-radius: 50%; overflow: hidden; margin-top: 4px; }
.secondProfile > img { width: 100%; height: 100%; object-fit: cover; }
.secondInfo { margin-top: 14px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.secondInfo > h1 { font-size: 22px; font-weight: 700; color: #000; text-align: center; }
.secondInfo > p { margin-top: 12px; font-size: 16px; font-weight: 400; color: #000; word-break: keep-all; text-align: center; }
.eduInfo { margin-top: 14px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.eduInfo > a { display: flex; align-items: center; justify-content: center; background: #000; color: #fff; padding: 0 8px; height: 26px; border-radius: 13px; font-size: 12px; }
.eduCount { font-size: 16px; font-weight: 400; color: #000; margin-top: 22px; }
.eduCount > span { color: #7800ff; font-weight: 600; }
.secondLink { width: 100%; height: 44px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 16px; font-weight: 700; color: #fff; border-radius: 8px; background: #303030; margin-top: 24px; cursor: pointer; text-decoration: none; }
.secondLink:hover { background: #7800FF; }
.cr_paging { margin-top: 60px; text-align: center; }
.cr_paging a, .cr_paging span { display: inline-flex; align-items: center; justify-content: center; min-width: 32px; height: 32px; border-radius: 4px; font-size: 14px; margin: 0 2px; text-decoration: none; }
.cr_paging a { color: #666; background: #f5f5f5; }
.cr_paging span.current { background: #000; color: #fff; font-weight: 700; }
