/* ==================================================
   [1] 상단 링크 리스트 (공통)
   ================================================== */
.geo-top-links ul {
    list-style: none;
    padding-left: 0 !important;
    margin-left: 1.5em !important;
}

.geo-top-links .geo-hub a {
    font-size: 18px;
    font-weight: 700;
    color: #0b57d0;
}

.entry-content .geo-top-links li {
    margin-bottom: 6px !important;
    font-size: 15px !important;
}

/* ==================================================
   [2] 하단 링크 리스트 (선 제거 및 여백 중심)
   ================================================== */
.geo-bottom-links {
    display: block !important;
    /* 🔥 모든 구분선 및 테두리 제거 */
    border: none !important; 
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    
    background: #fafafa !important; /* 배경색만 유지 */
    border-radius: 8px !important;
    padding: 25px 22px !important;
    margin: 30px auto !important; 
    box-sizing: border-box !important;
    clear: both !important;
}

/* 내부 타이틀 및 링크 스타일 */
.geo-bottom-links h3 { font-size: 16px; margin: 10px 0 0 0; font-weight: 600; }
.geo-bottom-links h4 { font-size: 18px; font-weight: 600; margin: 14px 0 4px 6px; }
.geo-bottom-links p { font-size: 17px; margin-bottom: 5px; }
.geo-bottom-links ul { list-style: none; padding-left: 0; margin: 0 0 10px 0; border: none !important; }
.geo-bottom-links li { margin-bottom: 6px; padding-left: 14px; position: relative; font-size: 15px; border: none !important; }
.geo-bottom-links li::before { content: "•"; position: absolute; left: 0; color: #999; }
.geo-bottom-links a { color: #1a73e8; text-decoration: none; }

/* 아래링크 허브제목 강제 스타일 */
.entry-content .geo-bottom-links p a,
.entry-content .geo-bottom-links p a strong {
    color: #0b57d0 !important;
    font-size: 19px !important;
    font-weight: 700;
    border: none !important;
}





/* ==================================================
   MOBILE LINK LISTS (768px 이하 최적화)
   ================================================== */
@media screen and (max-width: 768px) {

    /* [1] 상단 링크 영역 (Top Links) */
    .geo-top-links {
        margin: 20px 5px !important;
        padding: 0 !important;
    }

    .geo-top-links ul {
        margin-left: 1.2em !important; /* 모바일에서 들여쓰기 최적화 */
    }

    .geo-top-links .geo-hub a {
        font-size: 17px !important; /* 모바일 제목 크기 조절 */
        line-height: 1.4;
    }

    .entry-content .geo-top-links li {
        margin-bottom: 10px !important; /* 터치 미스 방지를 위해 간격 넓힘 */
        font-size: 15px !important;
        line-height: 1.5;
    }


    /* [2] 하단 링크 박스 (Bottom Links - 선 제거 및 여백) */
    .geo-bottom-links {
        width: calc(100% - 3px) !important; /* 양옆 10px씩 여백 확보 */
        margin: 25px auto !important;
        padding: 22px 18px !important; /* 내부 여백 조절 */
        
        background: #fafafa !important; /* 연한 회색 배경 유지 */
        border: none !important;        /* 테두리 완벽 제거 */
        border-radius: 10px !important;
        box-shadow: none !important;
        box-sizing: border-box !important;
    }

    /* 하단 타이틀 및 텍스트 정렬 */
    .geo-bottom-links h3 {
        font-size: 15px !important;
        margin-top: 5px !important;
        color: #334155;
    }

    .geo-bottom-links h4 {
        font-size: 17px !important;
        margin: 15px 0 6px 0 !important;
        color: #1e293b;
    }

    /* 하단 허브 링크 (강조 텍스트) */
    .entry-content .geo-bottom-links p a,
    .entry-content .geo-bottom-links p a strong {
        font-size: 17px !important; /* 모바일 화면에 맞게 축소 */
        color: #0b57d0 !important;
        border: none !important;
    }

    /* 리스트 스타일 (불렛 포인트) */
    .geo-bottom-links ul {
        margin: 10px 0 !important;
    }

    .geo-bottom-links li {
        margin-bottom: 8px !important;
        padding-left: 15px !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* 가상 요소(유령선/구분선) 차단 */
    .geo-bottom-links::before, 
    .geo-bottom-links::after,
    .geo-bottom-links ul::before,
    .geo-bottom-links li::border {
        display: none !important;
        content: none !important;
        border: none !important;
    }
}



