@charset "utf-8";

/* =========================================================
   LinkHub Theme
   1. 기본값 · 컨테이너 · 접근성
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    color: #222;
    background: #f5f6f8;
    font-family:
        Pretendard,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Noto Sans KR",
        Arial,
        sans-serif;
    font-size: 15px;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
}

body,
button,
input,
select,
textarea {
    font-family: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    margin: 0;
    color: inherit;
    font-size: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

.lh-container {
    width: min(100% - 32px, 1280px);
    margin-right: auto;
    margin-left: auto;
}

.lh-main {
    display: block;
    min-height: 500px;
}

.lh-section {
    margin-top: 28px;
}

.lh-section:first-child {
    margin-top: 0;
}

.lh-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.lh-skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 10000;
    padding: 10px 16px;
    color: #fff;
    background: #111;
    border-radius: 0 0 6px 6px;
}

.lh-skip-link:focus {
    top: 0;
}

/* =========================================================
   2. 상단 유틸리티 바
   ========================================================= */

.lh-utility {
    position: relative;
    z-index: 30;
    width: 100%;
    min-height: 38px;
    color: #d8dde7;
    background: #171a21;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lh-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 38px;
}

.lh-utility-left,
.lh-utility-right {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.lh-utility-right {
    justify-content: flex-end;
    margin-left: auto;
}

.lh-utility a,
.lh-utility button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    color: inherit;
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
    transition:
        color 0.18s ease,
        background-color 0.18s ease;
}

.lh-utility a:hover,
.lh-utility button:hover {
    color: #fff;
}

.lh-favorite {
    gap: 6px;
    padding: 0 8px;
    border-radius: 4px;
}

.lh-favorite:hover {
    background: rgba(255, 255, 255, 0.08);
}

.lh-utility-left > * + *,
.lh-utility-right > * + * {
    position: relative;
}

.lh-utility-left > * + *::before,
.lh-utility-right > * + *::before {
    position: absolute;
    top: 50%;
    left: -7px;
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-50%);
    content: "";
}

/* =========================================================
   3. 로고 · 날짜 · 시계 · 검색창
   ========================================================= */

.lh-main-header {
    position: relative;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid #e3e6eb;
}

.lh-main-header-inner {
    display: grid;
    grid-template-columns: 220px minmax(240px, 1fr) 430px;
    align-items: center;
    gap: 32px;
    min-height: 126px;
    padding-top: 22px;
    padding-bottom: 22px;
}

.lh-clock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.lh-date {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.lh-time {
    margin-top: 4px;
    color: #111827;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}

.lh-logo {
    min-width: 0;
    text-align: center;
}

.lh-logo a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.lh-logo-subtitle {
    display: block;
    margin-bottom: 4px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.lh-logo-text {
    display: block;
    max-width: 100%;
    color: #111827;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.04em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-search {
    display: flex;
    align-items: stretch;
    min-width: 0;
    height: 48px;
    border: 2px solid #2563eb;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.lh-search select {
    flex: 0 0 112px;
    width: 112px;
    padding: 0 30px 0 13px;
    color: #374151;
    background-color: #f8fafc;
    border: 0;
    border-right: 1px solid #dbe1e8;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.lh-search-input-wrap {
    display: flex;
    flex: 1 1 auto;
    align-items: stretch;
    min-width: 0;
}

.lh-search input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    padding: 0 14px;
    color: #111827;
    background: #fff;
    border: 0;
    outline: 0;
}

.lh-search input[type="search"]::placeholder {
    color: #9ca3af;
}

.lh-search button[type="submit"] {
    flex: 0 0 50px;
    width: 50px;
    color: #fff;
    background: #2563eb;
    font-size: 18px;
    transition: background-color 0.18s ease;
}

.lh-search button[type="submit"]:hover {
    background: #1d4ed8;
}

.lh-search select:focus,
.lh-search input[type="search"]:focus {
    outline: 0;
}

.lh-search:focus-within {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

/* =========================================================
   4. 가로 카테고리 메뉴
   ========================================================= */

.lh-navigation {
    position: relative;
    z-index: 15;
    width: 100%;
    color: #fff;
    background: #1f2937;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lh-navigation-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.lh-navigation-scroll::-webkit-scrollbar {
    height: 5px;
}

.lh-navigation-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
}

.lh-menu {
    display: flex;
    align-items: stretch;
    min-width: max-content;
}

.lh-menu > li {
    position: relative;
    flex: 0 0 auto;
}

.lh-menu > li + li::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-50%);
    content: "";
}

.lh-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    color: #e5e7eb;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    transition:
        color 0.18s ease,
        background-color 0.18s ease;
}

.lh-menu > li > a:hover,
.lh-menu > li > a:focus-visible {
    color: #fff;
    background: #2563eb;
}

.lh-menu > li > a:focus-visible {
    position: relative;
    z-index: 2;
    outline: 3px solid #93c5fd;
    outline-offset: -3px;
}

/* =========================================================
   5. 배너 영역
   PC 4열 · 모바일 배치는 반응형 영역에서 처리
   ========================================================= */

.lh-banner-section {
    padding-top: 34px;
}

.lh-section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.lh-section-heading h2,
.lh-section-heading h3 {
    color: #111827;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.035em;
}

.lh-heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 15px;
    line-height: 1;
}

.lh-banner-grid {
    display: grid;
    grid-template-columns:
        repeat(var(--lh-banner-columns-pc, 2), minmax(0, 1fr));
    gap: 1px;
}

.lh-banner-grid > * {
    min-width: 0;
}

.lh-banner-grid a {
    position: relative;
    display: block;
    aspect-ratio: 6 / 1;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe3e8;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.lh-banner-grid a:hover {
    border-color: #93b4ef;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.11);
    transform: translateY(-2px);
}

.lh-banner-grid picture {
    display: block;
    width: 100%;
    height: 100%;
}

.lh-banner-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #e5e7eb;
}

.lh-banner-placeholder {
    display: flex;
    aspect-ratio: 6 / 1;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 18px;
    color: #475569;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f1f5f9 100%
        );
    border: 1px dashed #b8c1cc;
    border-radius: 0;
    text-align: center;
}

.lh-banner-placeholder span {
    display: block;
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.lh-banner-placeholder small {
    display: block;
    margin-top: 5px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.4;
}

/* =========================================================
   6. 실시간 주소 안내
   ========================================================= */

.lh-live-section {
    margin-top: 22px;
}

.lh-live-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 64px;
    padding: 12px 18px;
    color: #fff;
    background: #111827;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.lh-live-address {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.lh-live-address i {
    flex: 0 0 auto;
    color: #fbbf24;
    font-size: 18px;
}

.lh-live-address span {
    flex: 0 0 auto;
    color: #d1d5db;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.lh-live-address strong {
    min-width: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.025em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-engine-links {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.lh-engine-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    min-height: 34px;
    padding: 0 12px;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease;
}

.lh-engine-links a:hover {
    color: #fff;
    background: #2563eb;
    border-color: #2563eb;
}

/* =========================================================
   7. TOP10 랭킹 영역
   PC 5열 · 모바일 배치는 반응형 영역에서 처리
   ========================================================= */

.lh-rank-section {
    padding-top: 34px;
    padding-bottom: 42px;
}

.lh-rank-main-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
    text-align: center;
}

.lh-rank-main-title h2 {
    color: #111827;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.04em;
}

.lh-rank-main-title > span {
    color: #2563eb;
    font-size: 20px;
    line-height: 1;
}

.lh-rank-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.lh-rank-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.06);
}

.lh-rank-card-header {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 7px;
    min-height: 52px;
    padding: 10px 12px;
    color: #fff;
    background: #2563eb;
}

.lh-rank-card-title {
    min-width: 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.025em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-rank-category-icon,
.lh-rank-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lh-rank-category-icon {
    width: 26px;
    height: 26px;
    color: #2563eb;
    background: #fff;
    border-radius: 50%;
    font-size: 12px;
}

.lh-rank-more {
    color: #dbeafe;
    font-size: 14px;
}

.lh-rank-list {
    padding: 7px 12px 10px;
}

.lh-rank-list > li {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: center;
    gap: 7px;
    min-height: 38px;
    border-bottom: 1px solid #edf0f4;
}

.lh-rank-list > li:last-child {
    border-bottom: 0;
}

.lh-rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #64748b;
    background: #f1f5f9;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.lh-rank-1 {
    color: #fff;
    background: #ef4444;
}

.lh-rank-2 {
    color: #fff;
    background: #f59e0b;
}

.lh-rank-3 {
    color: #fff;
    background: #2563eb;
}


.lh-rank-site-name {
    min-width: 0;
    margin: 0;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-rank-list a {
    color: inherit;
}

.lh-rank-list > li:hover .lh-rank-site-name {
    color: #2563eb;
}

/* =========================================================
   8. 푸터 · 상단 이동 버튼
   ========================================================= */

.lh-footer {
    position: relative;
    padding: 34px 0 38px;
    color: #9ca3af;
    background: #111827;
    border-top: 1px solid #1f2937;
}

.lh-footer .lh-container {
    text-align: center;
}

.lh-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.lh-footer-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    color: #d1d5db;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.18s ease;
}

.lh-footer-links a:hover {
    color: #fff;
}

.lh-footer-links a + a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 12px;
    background: #374151;
    transform: translateY(-50%);
    content: "";
}

.lh-footer-description {
    margin-top: 16px;
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.7;
}

.lh-copyright {
    margin-top: 8px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.6;
}

.lh-top-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: #2563eb;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.3);
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease,
        background-color 0.18s ease;
}

.lh-top-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lh-top-button:hover {
    background: #1d4ed8;
}

.lh-top-button:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 3px;
}

/* =========================================================
   9-A. 태블릿 반응형
   화면 너비 1024px 이하
   ========================================================= */

@media (max-width: 1024px) {
    .lh-container {
        width: min(100% - 28px, 960px);
    }

    .lh-utility-inner {
        gap: 14px;
    }

    .lh-utility-left,
    .lh-utility-right {
        gap: 12px;
    }

    .lh-main-header-inner {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 20px 28px;
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .lh-clock {
        grid-column: 1;
        grid-row: 1;
    }

    .lh-logo {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }

    .lh-logo a {
        align-items: flex-end;
    }

    .lh-logo-text {
        font-size: 30px;
    }

    .lh-search {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
    }

    .lh-menu > li > a {
        min-height: 48px;
        padding-right: 18px;
        padding-left: 18px;
        font-size: 14px;
    }

    .lh-banner-grid {
        grid-template-columns:
            repeat(var(--lh-banner-columns-pc, 2), minmax(0, 1fr));
        gap: 1px;
    }

    .lh-live-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .lh-engine-links {
        width: 100%;
    }

    .lh-engine-links a {
        flex: 1 1 0;
        min-width: 0;
    }

    .lh-rank-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }
}

/* =========================================================
   9-B. 모바일 반응형
   화면 너비 768px 이하
   ========================================================= */

@media (max-width: 768px) {
    .lh-container {
        width: min(100% - 20px, 720px);
    }

    .lh-utility {
        min-height: 36px;
    }

    .lh-utility-inner {
        flex-wrap: wrap;
        gap: 0 10px;
        min-height: 36px;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .lh-utility-left,
    .lh-utility-right {
        gap: 10px;
    }

    .lh-utility a,
    .lh-utility button {
        min-height: 28px;
        font-size: 12px;
    }

    .lh-main-header-inner {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .lh-logo {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .lh-logo a {
        align-items: center;
    }

    .lh-logo-subtitle {
        font-size: 12px;
    }

    .lh-logo-text {
        font-size: 27px;
    }

    .lh-clock {
        order: 2;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .lh-date {
        font-size: 12px;
    }

    .lh-time {
        margin-top: 1px;
        font-size: 21px;
    }

    .lh-search {
        order: 3;
        width: 100%;
        height: 44px;
    }

    .lh-search select {
        flex-basis: 96px;
        width: 96px;
        padding-right: 24px;
        padding-left: 10px;
        font-size: 13px;
    }

    .lh-search input[type="search"] {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 14px;
    }

    .lh-search button[type="submit"] {
        flex-basis: 46px;
        width: 46px;
    }

    .lh-menu > li > a {
        min-height: 44px;
        padding-right: 15px;
        padding-left: 15px;
        font-size: 13px;
    }

    .lh-banner-section {
        padding-top: 24px;
    }

    .lh-section-heading {
        margin-bottom: 15px;
    }

    .lh-section-heading h2,
    .lh-section-heading h3 {
        font-size: 20px;
    }

    .lh-banner-grid {
        grid-template-columns:
            repeat(var(--lh-banner-columns-mobile, 2), minmax(0, 1fr));
        gap: 1px;
    }

    .lh-banner-placeholder {
        min-height: 0;
        padding: 4px 6px;
    }

    .lh-banner-placeholder small {
        display: none;
    }

    .lh-banner-placeholder span {
        font-size: 14px;
    }

    .lh-live-section {
        margin-top: 16px;
    }

    .lh-live-bar {
        gap: 11px;
        min-height: 0;
        padding: 14px;
    }

    .lh-live-address {
        flex-wrap: wrap;
        gap: 6px 8px;
        width: 100%;
    }

    .lh-live-address strong {
        flex-basis: 100%;
        width: 100%;
        padding-left: 26px;
        font-size: 15px;
    }

    .lh-engine-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .lh-engine-links a {
        min-height: 36px;
    }

    .lh-rank-section {
        padding-top: 26px;
        padding-bottom: 30px;
    }

    .lh-rank-main-title {
        gap: 8px;
        margin-bottom: 16px;
    }

    .lh-rank-main-title h2 {
        font-size: 21px;
    }

    .lh-rank-main-title > span {
        font-size: 16px;
    }

    .lh-rank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .lh-rank-card-header {
        grid-template-columns: 24px minmax(0, 1fr) 18px;
        min-height: 48px;
        padding: 8px 9px;
    }

    .lh-rank-card-title {
        font-size: 14px;
    }

    .lh-rank-list {
        padding: 6px 8px 8px;
    }

    .lh-rank-list > li {
        grid-template-columns: 23px minmax(0, 1fr);
        gap: 5px;
        min-height: 36px;
    }

    .lh-rank-site-name {
        font-size: 12px;
    }

    .lh-footer {
        padding-top: 28px;
        padding-bottom: 32px;
    }

    .lh-footer-links a {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 12px;
    }

    .lh-top-button {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
}

/* =========================================================
   그누보드 팝업레이어 호환 스타일
   ========================================================= */

#hd_pop {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 0;
    margin: 0 auto;
}

#hd_pop > h2,
.msg_sound_only,
.sound_only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.hd_pops {
    position: absolute;
    z-index: 1001;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.hd_pops img {
    max-width: 100%;
    height: auto;
}

.hd_pops_footer {
    position: relative;
    padding: 0;
    color: #fff;
    background: #111;
    text-align: left;
}

.hd_pops_footer button {
    padding: 10px;
    color: #fff;
    border: 0;
}

.hd_pops_reject {
    background: #111;
}

.hd_pops_close {
    position: absolute;
    top: 0;
    right: 0;
    background: #393939;
}

/* LINKHUB HEADER CENTER 2026 */
.lh-main-header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
}

.lh-logo {
    width: 100%;
    text-align: center;
}

.lh-logo a {
    align-items: center;
}

.lh-search {
    width: min(100%, 560px);
}

/* LINKHUB PORTAL LINKS 2026 */
.lh-portal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 18px;
    width: 100%;
}

.lh-portal-links a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.lh-portal-links a:hover,
.lh-portal-links a:focus-visible {
    color: #2563eb;
}

@media (max-width: 768px) {
    .lh-portal-links {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 14px;
        padding-bottom: 3px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .lh-portal-links a {
        flex: 0 0 auto;
        font-size: 13px;
    }
}

/* LINKHUB MOBILE MENU BASE 2026 */
.lh-navigation,
.lh-mobile-menu-toggle,
.lh-mobile-menu-header,
.lh-mobile-menu-overlay {
    display: none;
}

@media (max-width: 768px) {
    .lh-main-header-inner {
        position: relative;
    }

    .lh-mobile-menu-toggle {
        position: absolute;
        top: 18px;
        left: 0;
        z-index: 10;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
        color: #111827;
        background: transparent;
        border: 0;
        font-size: 25px;
    }
}

/* LINKHUB MOBILE SLIDE PANEL 2026 */
@media (max-width: 768px) {
    body.lh-menu-open {
        overflow: hidden;
    }

    .lh-navigation {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 1001;
        display: block;
        width: min(84vw, 320px);
        color: #fff;
        background: #1f2937;
        border: 0;
        box-shadow: 8px 0 24px rgba(0, 0, 0, 0.22);
        transform: translateX(-100%);
        transition: transform 0.25s ease;
    }

    .lh-navigation.is-open {
        transform: translateX(0);
    }

    .lh-mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 58px;
        padding: 0 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .lh-mobile-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        color: #fff;
        background: transparent;
        border: 0;
        font-size: 23px;
    }

    .lh-navigation-scroll {
        width: 100%;
        max-width: none;
        height: calc(100% - 58px);
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

/* LINKHUB MOBILE MENU LIST AND OVERLAY 2026 */
@media (max-width: 768px) {
    .lh-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        min-width: 0;
    }

    .lh-menu > li {
        width: 100%;
    }

    .lh-menu > li + li::before {
        display: none;
    }

    .lh-menu > li > a {
        justify-content: flex-start;
        width: 100%;
        min-height: 48px;
        padding: 0 18px;
        color: #e5e7eb;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        font-size: 15px;
    }

    .lh-mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        background: rgba(0, 0, 0, 0.48);
        border: 0;
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    body.lh-menu-open .lh-mobile-menu-overlay {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}

/* LINKHUB PORTAL DARK BAR 2026 */
.lh-portal-links {
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    background: #111827;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

.lh-portal-links a {
    justify-content: center;
    min-height: 40px;
    padding: 0 17px;
    color: #f8fafc;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease;
}

.lh-portal-links a:hover,
.lh-portal-links a:focus-visible {
    color: #fff;
    background: #2563eb;
    border-color: #2563eb;
}

@media (max-width: 768px) {
    .lh-portal-links {
        justify-content: flex-start;
        gap: 8px;
        padding: 10px;
        border-radius: 10px;
        scrollbar-width: none;
    }

    .lh-portal-links::-webkit-scrollbar {
        display: none;
    }

    .lh-portal-links a {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }
}

/* LINKHUB PORTAL ADDRESS LAYOUT 2026 */
.lh-portal-links {
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
}

.lh-portal-address {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    color: #e5e7eb;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.lh-portal-address i {
    color: #facc15;
    font-size: 18px;
}

.lh-portal-address strong {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.lh-portal-buttons {
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
    margin-left: auto;
}

@media (max-width: 768px) {
    .lh-portal-links {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        overflow: visible;
    }

    .lh-portal-address {
        justify-content: center;
        width: 100%;
        font-size: 13px;
    }

    .lh-portal-address strong {
        font-size: 14px;
    }

    .lh-portal-buttons {
        justify-content: flex-start;
        width: 100%;
        margin-left: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .lh-portal-buttons::-webkit-scrollbar {
        display: none;
    }
}

/* LINKHUB MOBILE HEADER COMPACT FIX 2026 */
@media (max-width: 768px) {
    .lh-main-header-inner {
        gap: 9px;
        padding-top: 16px;
        padding-bottom: 14px;
    }

    .lh-logo {
        order: 1;
    }

    .lh-search {
        order: 2;
    }

    .lh-portal-links {
        order: 3;
        align-items: stretch;
        flex-direction: column;
        gap: 5px;
        padding: 7px 8px;
        border-radius: 8px;
    }

    .lh-mobile-menu-toggle {
        top: 14px;
        left: 10px;
        z-index: 50;
        display: inline-flex;
        width: 38px;
        height: 38px;
        color: #fff;
        background: #111827;
        border-radius: 7px;
        font-size: 22px;
    }

    .lh-portal-address {
        justify-content: center;
        gap: 5px;
        min-height: 20px;
        font-size: 12px;
        line-height: 1;
    }

    .lh-portal-address i {
        font-size: 14px;
    }

    .lh-portal-address strong {
        font-size: 13px;
    }

    .lh-portal-buttons {
        gap: 5px;
    }

    .lh-portal-links a {
        min-height: 28px;
        padding: 0 9px;
        border-radius: 6px;
        font-size: 11px;
    }
}

/* LINKHUB MOBILE MENU 2 COLUMN GRID 2026 */
@media (max-width: 768px) {
    .lh-navigation-scroll {
        height: calc(100% - 58px);
        padding: 16px 12px 28px;
        background: #f3f4f6;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .lh-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .lh-menu > li {
        width: auto;
        min-width: 0;
    }

    .lh-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 58px;
        padding: 10px 8px;
        color: #111827;
        background: #fff;
        border: 1px solid #d7dce3;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.3;
        text-align: center;
        white-space: normal;
        word-break: keep-all;
    }

    .lh-menu > li > a:hover,
    .lh-menu > li > a:focus-visible {
        color: #fff;
        background: #2563eb;
        border-color: #2563eb;
    }
}

/* =========================================================
   게시판 페이지 내부 여백
   ========================================================= */
.lh-board-container {
    padding: 24px 32px 48px;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .lh-board-container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .lh-board-container {
        padding: 16px 0 32px;
    }
}

/* =========================================================
   게시글 보기·글쓰기 내부 여백
   ========================================================= */
.lh-board-container #bo_v,
.lh-board-container #bo_w {
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
    background: #fff;
}

@media (max-width: 768px) {
    .lh-board-container #bo_v,
    .lh-board-container #bo_w {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .lh-board-container #bo_v,
    .lh-board-container #bo_w {
        padding: 12px;
    }
}

/* =========================================================
   LinkHub 업체 목록 및 상세페이지
   ========================================================= */

/* 카테고리별 업체 로고 목록 */
.lh-company-grid-section {
    margin: 0 0 28px;
    padding: 22px;
    border: 1px solid #e3e6eb;
    background: #fff;
    box-sizing: border-box;
}

.lh-company-grid-title {
    margin: 0 0 18px;
    padding: 0 0 12px;
    border-bottom: 2px solid #222;
    color: #181818;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}

.lh-company-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.lh-company-grid-item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e5e9;
    background: #fff;
    color: #222;
    text-align: center;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.lh-company-grid-item:hover,
.lh-company-grid-item:focus {
    border-color: #888;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.09);
    color: #111;
    text-decoration: none;
    transform: translateY(-2px);
}

.lh-company-grid-logo {
    display: flex;
    height: 92px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-bottom: 1px solid #edf0f3;
    background: #f8f9fa;
    box-sizing: border-box;
}

.lh-company-grid-logo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.lh-company-grid-placeholder {
    color: #92979e;
    font-size: 13px;
}

.lh-company-grid-name {
    display: block;
    overflow: hidden;
    padding: 11px 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 업체 상세페이지 */
.lh-company-detail {
    padding: 38px 0 60px;
}

.lh-company-detail-card {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid #e1e4e8;
    background: #fff;
    box-sizing: border-box;
}

.lh-company-detail-category {
    margin: 0 0 20px;
}

.lh-company-detail-category a {
    display: inline-block;
    padding: 7px 12px;
    background: #f0f2f4;
    color: #4d535a;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.lh-company-detail-category a:hover,
.lh-company-detail-category a:focus {
    background: #e5e8eb;
    color: #111;
}

.lh-company-detail-logo {
    display: flex;
    min-height: 150px;
    align-items: center;
    justify-content: center;
    margin: 0 0 28px;
    padding: 24px;
    border: 1px solid #eceef1;
    background: #f8f9fa;
    box-sizing: border-box;
}

.lh-company-detail-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.lh-company-detail-title {
    margin: 0 0 24px;
    color: #181818;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
    word-break: keep-all;
}

.lh-company-detail-content {
    color: #3d4248;
    font-size: 16px;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.lh-company-detail-actions {
    margin-top: 32px;
}

.lh-company-detail-visit {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background: #202328;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.lh-company-detail-visit:hover,
.lh-company-detail-visit:focus {
    background: #000;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .lh-company-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .lh-company-grid-section {
        margin-bottom: 22px;
        padding: 16px;
    }

    .lh-company-grid-title {
        margin-bottom: 14px;
        font-size: 18px;
    }

    .lh-company-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .lh-company-grid-logo {
        height: 76px;
        padding: 9px;
    }

    .lh-company-grid-name {
        padding: 9px 6px;
        font-size: 13px;
    }

    .lh-company-detail {
        padding: 24px 0 42px;
    }

    .lh-company-detail-card {
        padding: 24px;
    }

    .lh-company-detail-logo {
        min-height: 120px;
        margin-bottom: 22px;
        padding: 18px;
    }

    .lh-company-detail-logo img {
        max-height: 140px;
    }

    .lh-company-detail-title {
        margin-bottom: 18px;
        font-size: 24px;
    }

    .lh-company-detail-content {
        font-size: 15px;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .lh-company-grid-section {
        padding: 12px;
    }

    .lh-company-grid-logo {
        height: 68px;
        padding: 7px;
    }

    .lh-company-detail-card {
        padding: 18px;
    }

    .lh-company-detail-title {
        font-size: 21px;
    }

    .lh-company-detail-visit {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
}


/* =========================================================
   LinkHub 업체 상세 새 레이아웃
   ========================================================= */

.lh-company-detail {
    padding: 34px 0 64px;
}

.lh-company-category-bar {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 12px;
}

.lh-company-category-bar a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid #dfe3e8;
    border-radius: 3px;
    background: #f7f8f9;
    color: #50565d;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.lh-company-category-bar a:hover,
.lh-company-category-bar a:focus {
    border-color: #bfc5cc;
    background: #eef1f4;
    color: #111;
    text-decoration: none;
}

.lh-company-detail-card {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 40px 48px;
    border: 1px solid #dde1e5;
    background: #fff;
    box-sizing: border-box;
}

.lh-company-detail-title {
    margin: 0 0 24px;
    color: #181a1d;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

.lh-company-summary {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 180px;
    gap: 24px;
    align-items: center;
    min-height: 112px;
    padding: 20px;
    border: 1px solid #e5e8eb;
    background: #fafbfc;
    box-sizing: border-box;
}

.lh-company-summary-logo {
    display: flex;
    width: 180px;
    height: 90px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #e3e6e9;
    background: #fff;
    box-sizing: border-box;
}

.lh-company-summary-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 68px;
    object-fit: contain;
}

.lh-company-summary-main {
    min-width: 0;
}

.lh-company-summary-url {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 13px;
}

.lh-company-summary-url > a:first-child {
    overflow: hidden;
    max-width: 100%;
    color: #2467c9;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-company-summary-url > a:first-child:hover,
.lh-company-summary-url > a:first-child:focus {
    text-decoration: underline;
}

.lh-company-summary-visit {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    border: 1px solid #b9c2cc;
    border-radius: 3px;
    background: #fff;
    color: #3b424a;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.lh-company-summary-visit:hover,
.lh-company-summary-visit:focus {
    border-color: #767f89;
    background: #f3f5f7;
    color: #111;
    text-decoration: none;
}

.lh-company-summary-updated {
    color: #747b83;
    font-size: 13px;
    line-height: 1.6;
}

.lh-company-summary-updated strong {
    color: #4c535b;
    font-weight: 600;
}

.lh-company-page-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-end;
    color: #757c84;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
}

.lh-company-page-info > strong {
    margin-bottom: 2px;
    color: #33383e;
    font-size: 13px;
    font-weight: 700;
}

.lh-company-board-content {
    margin-top: 32px;
    padding-top: 34px;
    border-top: 1px solid #dfe3e7;
    color: #30343a;
    font-size: 16px;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.lh-company-board-content > :first-child {
    margin-top: 0;
}

.lh-company-board-content > :last-child {
    margin-bottom: 0;
}

.lh-company-board-content p {
    margin: 0 0 20px;
}

.lh-company-board-content h2 {
    margin: 38px 0 16px;
    color: #17191c;
    font-size: 25px;
    line-height: 1.45;
}

.lh-company-board-content h3 {
    margin: 30px 0 14px;
    color: #202328;
    font-size: 21px;
    line-height: 1.5;
}

.lh-company-board-content img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 22px auto;
}

.lh-company-board-content a {
    color: #2467c9;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lh-company-board-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.lh-company-board-content th,
.lh-company-board-content td {
    padding: 11px 13px;
    border: 1px solid #cfd4da;
    text-align: left;
    vertical-align: top;
}

.lh-company-board-content th {
    background: #f4f5f6;
    color: #25292e;
    font-weight: 700;
}

@media (max-width: 768px) {
    .lh-company-detail {
        padding: 22px 0 42px;
    }

    .lh-company-detail-card {
        padding: 24px 20px 34px;
    }

    .lh-company-detail-title {
        margin-bottom: 18px;
        font-size: 24px;
    }

    .lh-company-summary {
        grid-template-columns: 140px minmax(0, 1fr);
        gap: 16px;
        padding: 16px;
    }

    .lh-company-summary-logo {
        width: 140px;
        height: 76px;
    }

    .lh-company-summary-logo img {
        max-height: 56px;
    }

    .lh-company-page-info {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 7px 16px;
        align-items: center;
        padding-top: 13px;
        border-top: 1px solid #e3e6e9;
    }

    .lh-company-page-info > strong {
        width: 100%;
        margin: 0;
    }

    .lh-company-board-content {
        margin-top: 26px;
        padding-top: 27px;
        font-size: 15px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .lh-company-detail-card {
        padding: 20px 15px 30px;
    }

    .lh-company-detail-title {
        font-size: 21px;
    }

    .lh-company-summary {
        display: block;
    }

    .lh-company-summary-logo {
        width: 100%;
        height: 78px;
        margin-bottom: 16px;
    }

    .lh-company-summary-url > a:first-child {
        width: 100%;
        white-space: normal;
        word-break: break-all;
    }

    .lh-company-page-info {
        margin-top: 15px;
    }

    .lh-company-board-content h2 {
        font-size: 21px;
    }

    .lh-company-board-content h3 {
        font-size: 18px;
    }
}


/* =========================================================
   LinkHub 서브페이지 카테고리 메뉴
   ========================================================= */

.lh-sub-category-nav {
    order: 3;
    width: 100%;
    overflow: hidden;
    border: 1px solid #e1e5ea;
    background: #fff;
    box-sizing: border-box;
}

.lh-sub-category-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    width: 100%;
}

.lh-sub-category-grid a {
    display: flex;
    min-width: 0;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    border-right: 1px solid #e7e9ed;
    background: #fff;
    color: #20242a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    word-break: keep-all;
    box-sizing: border-box;
    transition:
        color 0.18s ease,
        background-color 0.18s ease;
}

.lh-sub-category-grid a:last-child {
    border-right: 0;
}

.lh-sub-category-grid a:hover,
.lh-sub-category-grid a:focus-visible {
    background: #f0f5ff;
    color: #2563eb;
    text-decoration: none;
}

.lh-sub-category-grid a.is-active {
    background: #2563eb;
    color: #fff;
}

@media (max-width: 1024px) {
    .lh-sub-category-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .lh-sub-category-grid a {
        border-bottom: 1px solid #e7e9ed;
    }

    .lh-sub-category-grid a:nth-child(5n) {
        border-right: 0;
    }

    .lh-sub-category-grid a:nth-last-child(-n + 5) {
        border-bottom: 0;
    }
}

@media (max-width: 768px) {
    .lh-sub-category-nav {
        order: 3;
    }

    .lh-sub-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lh-sub-category-grid a {
        min-height: 46px;
        padding: 7px 4px;
        font-size: 13px;
        border-right: 1px solid #e7e9ed;
        border-bottom: 1px solid #e7e9ed;
    }

    .lh-sub-category-grid a:nth-child(5n) {
        border-right: 1px solid #e7e9ed;
    }

    .lh-sub-category-grid a:nth-child(2n) {
        border-right: 0;
    }

    .lh-sub-category-grid a:nth-last-child(-n + 5) {
        border-bottom: 1px solid #e7e9ed;
    }

    .lh-sub-category-grid a:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
}

/* LINKHUB COMPANY GRID FULL WIDTH 2026
 * 게시판 내부 패딩을 상쇄하여 상단 카테고리 메뉴와 좌우선 일치
 */
.lh-board-container .lh-company-grid-section {
    width: calc(100% + 64px);
    margin-right: -32px;
    margin-left: -32px;
}

@media (max-width: 1024px) {
    .lh-board-container .lh-company-grid-section {
        width: calc(100% + 40px);
        margin-right: -20px;
        margin-left: -20px;
    }
}

@media (max-width: 768px) {
    .lh-board-container .lh-company-grid-section {
        width: calc(100% + 24px);
        margin-right: -12px;
        margin-left: -12px;
    }
}

/* LinkHub company description and post title */
.lh-company-description {
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid #e2e6ea;
    border-radius: 3px;
    background: #f8fafc;
    color: #3d434a;
    font-size: 15px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.lh-company-post-title {
    margin: 34px 0 0;
    padding: 0 0 14px;
    border-bottom: 1px solid #dfe3e7;
    color: #17191c;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.45;
    word-break: keep-all;
}

.lh-company-post-title + .lh-company-board-content {
    margin-top: 0;
    padding-top: 24px;
    border-top: 0;
}

@media (max-width: 768px) {
    .lh-company-description {
        margin-top: 22px;
        padding: 15px 16px;
        font-size: 14px;
        line-height: 1.7;
    }

    .lh-company-post-title {
        margin-top: 28px;
        padding-bottom: 12px;
        font-size: 21px;
    }

    .lh-company-post-title + .lh-company-board-content {
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .lh-company-description {
        padding: 14px;
    }

    .lh-company-post-title {
        font-size: 20px;
    }
}

/* LINKHUB_COMPANY_GRID_VIEWS_20260805
 * PC 5열 / 태블릿 3열 / 모바일 2열
 * 업체명과 상세페이지 조회수 표시
 */
.lh-company-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lh-company-grid-item {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
}

.lh-company-grid-item:hover,
.lh-company-grid-item:focus-within {
    border-color: #888;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}

.lh-company-grid-link {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    color: #222;
    text-align: center;
    text-decoration: none;
}

.lh-company-grid-link:hover,
.lh-company-grid-link:focus {
    color: #111;
    text-decoration: none;
}

.lh-company-grid-meta {
    display: flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 9px;
    background: #f4f5f8;
    box-sizing: border-box;
}

.lh-company-grid-name {
    display: block;
    overflow: hidden;
    min-width: 0;
    flex: 1 1 auto;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-company-grid-views {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 4px;
    align-items: center;
    color: #e96800;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.lh-company-grid-views .fa {
    color: #e32b3a;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .lh-company-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .lh-company-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lh-company-grid-meta {
        min-height: 40px;
        gap: 5px;
        padding: 8px 7px;
    }

    .lh-company-grid-name {
        font-size: 13px;
    }

    .lh-company-grid-views {
        gap: 3px;
        font-size: 12px;
    }

    .lh-company-grid-views .fa {
        font-size: 12px;
    }
}

/* LINKHUB_COMPANY_FAVORITE_STYLE_20260805 */
.lh-company-favorite-button {
    position: absolute;
    z-index: 4;
    top: 8px;
    right: 8px;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(30, 35, 40, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
    color: #737b84;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        background-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.lh-company-favorite-button:hover,
.lh-company-favorite-button:focus-visible {
    border-color: #ef476f;
    background: #fff;
    color: #ef476f;
    outline: 0;
    transform: scale(1.07);
}

.lh-company-favorite-button.is-favorited {
    border-color: #ef476f;
    background: #fff0f3;
    color: #e92f5d;
}

.lh-company-favorite-button.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

@media (max-width: 768px) {
    .lh-company-favorite-button {
        top: 6px;
        right: 6px;
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
}



/* LINKHUB PC ACCOUNT PANEL 20260805 */
.lh-pc-account-panel,
.lh-pc-account-overlay {
    display: none;
}

@media (min-width: 769px) {
    body.lh-pc-panel-open {
        overflow: hidden;
    }

    .lh-pc-account-panel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1301;
        display: block;
        width: 390px;
        max-width: 90vw;
        background: #fff;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.22);
        visibility: hidden;
        transform: translateX(100%);
        transition:
            transform 0.28s ease,
            visibility 0.28s ease;
    }

    .lh-pc-account-panel.is-open {
        visibility: visible;
        transform: translateX(0);
    }

    .lh-pc-account-header {
        display: flex;
        min-height: 64px;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        background: #111827;
        color: #fff;
    }

    .lh-pc-account-header strong {
        font-size: 18px;
    }

    .lh-pc-account-header button {
        width: 42px;
        height: 42px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 23px;
        cursor: pointer;
    }

    .lh-pc-account-content {
        height: calc(100% - 64px);
        padding: 20px;
        overflow-y: auto;
        background: #f5f6f8;
        box-sizing: border-box;
    }

    .lh-pc-account-overlay {
        position: fixed;
        inset: 0;
        z-index: 1300;
        display: block;
        border: 0;
        background: rgba(0, 0, 0, 0.52);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition:
            opacity 0.28s ease,
            visibility 0.28s ease;
    }

    body.lh-pc-panel-open .lh-pc-account-overlay {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}

/* LINKHUB PC ACCOUNT CONTENT 20260805 */
@media (min-width: 769px) {
    .lh-pc-login-form,
    .lh-pc-member-box {
        display: grid;
        gap: 12px;
        padding: 20px;
        border: 1px solid #e1e5ea;
        border-radius: 8px;
        background: #fff;
    }

    .lh-pc-login-form input[type="text"],
    .lh-pc-login-form input[type="password"] {
        width: 100%;
        height: 46px;
        padding: 0 13px;
        border: 1px solid #d5dae0;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .lh-pc-login-form button {
        height: 46px;
        border: 0;
        border-radius: 5px;
        background: #2563eb;
        color: #fff;
        font-weight: 700;
        cursor: pointer;
    }

    .lh-pc-login-links {
        display: flex;
        justify-content: space-between;
        margin-top: 14px;
        padding: 0 4px;
    }

    .lh-pc-login-links a,
    .lh-pc-member-box a {
        color: #4b5563;
        text-decoration: none;
    }

    .lh-pc-member-box > strong {
        color: #111827;
        font-size: 19px;
    }

    .lh-pc-member-box > span {
        color: #7b8490;
        font-size: 13px;
    }
}

/* LINKHUB PC FAVORITE LIST 20260805 */
@media (min-width: 769px) {
    .lh-pc-favorite-summary {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 12px;
        border-radius: 6px;
        background: #fff1f4;
        color: #d92d55;
        font-weight: 700;
    }

    .lh-pc-favorite-summary strong {
        margin-left: auto;
    }

    .lh-pc-favorite-list {
        margin: 0;
        padding: 0;
        border: 1px solid #e1e5ea;
        border-radius: 6px;
        background: #fff;
        list-style: none;
    }

    .lh-pc-favorite-list li + li {
        border-top: 1px solid #edf0f3;
    }

    .lh-pc-favorite-list a {
        display: flex;
        min-height: 44px;
        align-items: center;
        gap: 8px;
        padding: 0 12px;
        color: #333b44;
        text-decoration: none;
    }

    .lh-pc-favorite-list a:hover {
        background: #f8f9fb;
        color: #d92d55;
    }

    .lh-pc-favorite-list .fa {
        color: #e92f5d;
    }
}

/* LINKHUB PC SUBCATEGORY ONLY 20260805 */
@media (max-width: 768px) {
    .lh-desktop-sub-category-nav {
        display: none !important;
    }
}

/* ===== 로고 크기 조정 ===== */
.lh-logo-image {
    width: auto;
    height: 56px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .lh-logo-image {
        height: 40px;
    }
}

/* =========================================================
   LINKHUB UNIFIED ACCOUNT PANEL 20260806
   PC · 모바일 공용 로그인 / 마이메뉴
   ========================================================= */

:root {
    --lh-account-accent: #2563eb;
    --lh-account-accent-dark: #1d4ed8;
    --lh-account-text: #20242a;
    --lh-account-muted: #7b838d;
    --lh-account-line: #dde2e7;
    --lh-account-bg: #f3f5f7;
}

body.lh-pc-panel-open {
    overflow: hidden;
}

.lh-pc-account-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1301;
    display: flex;
    width: min(92vw, 390px);
    max-width: 100%;
    flex-direction: column;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.22);
    visibility: hidden;
    transform: translateX(100%);
    transition:
        transform 0.28s ease,
        visibility 0.28s ease;
}

.lh-pc-account-panel.is-open {
    visibility: visible;
    transform: translateX(0);
}

.lh-pc-account-header {
    display: flex;
    min-height: 64px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px 10px 18px;
    color: #fff;
    background: var(--lh-account-accent);
}

.lh-account-brand {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.lh-account-brand > span {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-account-brand > strong {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.lh-pc-account-header button {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    font-size: 23px;
}

.lh-pc-account-content {
    flex: 1 1 auto;
    height: auto;
    padding: 14px;
    background: var(--lh-account-bg);
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    overscroll-behavior: contain;
}

.lh-pc-account-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(0, 0, 0, 0.52);
    border: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
}

body.lh-pc-panel-open .lh-pc-account-overlay {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.lh-account-member-card,
.lh-account-login-card,
.lh-account-favorite-card,
.lh-account-category-card {
    margin: 0 0 12px;
    background: #fff;
    border: 1px solid var(--lh-account-line);
    border-radius: 6px;
    overflow: hidden;
}

.lh-account-profile,
.lh-account-login-intro {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
}

.lh-account-avatar {
    display: inline-flex;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    color: #a4abb4;
    background: #eef0f2;
    border-radius: 50%;
    font-size: 26px;
}

.lh-account-profile-text,
.lh-account-login-intro > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.lh-account-profile-text strong,
.lh-account-login-intro strong {
    overflow: hidden;
    color: var(--lh-account-text);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-account-profile-text span,
.lh-account-login-intro span {
    color: var(--lh-account-muted);
    font-size: 12px;
    line-height: 1.45;
}

.lh-account-member-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--lh-account-line);
}

.lh-account-member-actions a {
    display: flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    color: #fff;
    background: var(--lh-account-accent);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.lh-account-member-actions a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.lh-account-member-actions a:hover,
.lh-account-member-actions a:focus-visible {
    color: #fff;
    background: var(--lh-account-accent-dark);
}

.lh-account-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    background: #f7f8fa;
    border-top: 1px solid var(--lh-account-line);
}

.lh-account-stats a {
    display: flex;
    min-width: 0;
    min-height: 66px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 4px;
    color: #434a53;
    background: #fff;
    border: 1px solid var(--lh-account-line);
    border-radius: 5px;
    text-align: center;
}

.lh-account-stats span {
    font-size: 12px;
    font-weight: 600;
}

.lh-account-stats strong {
    overflow: hidden;
    max-width: 100%;
    color: var(--lh-account-accent-dark);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-account-section-title {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 14px;
    color: var(--lh-account-text);
    border-bottom: 1px solid var(--lh-account-line);
}

.lh-account-section-title strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 800;
}

.lh-account-section-title .fa-heart {
    color: #e92f5d;
}

.lh-account-section-title > span {
    color: #e92f5d;
    font-size: 13px;
    font-weight: 800;
}

.lh-pc-favorite-list {
    margin: 0;
    padding: 0;
    background: #fff;
    border: 0;
    border-radius: 0;
    list-style: none;
}

.lh-pc-favorite-list li + li {
    border-top: 1px solid #edf0f3;
}

.lh-pc-favorite-list a {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: #333b44;
    font-size: 13px;
    text-decoration: none;
}

.lh-pc-favorite-list a span {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-pc-favorite-list a:hover {
    color: #d92d55;
    background: #f8f9fb;
}

.lh-pc-favorite-list .fa {
    flex: 0 0 auto;
    color: #e92f5d;
}

.lh-account-empty {
    padding: 18px 14px;
    color: var(--lh-account-muted);
    font-size: 13px;
    text-align: center;
}

.lh-account-login-intro {
    border-bottom: 1px solid var(--lh-account-line);
}

.lh-pc-login-form {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 0;
    border-radius: 0;
    background: #fff;
}

.lh-pc-login-form input[type="text"],
.lh-pc-login-form input[type="password"] {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    color: var(--lh-account-text);
    background: #fff;
    border: 1px solid #cfd5dc;
    border-radius: 4px;
    box-sizing: border-box;
}

.lh-account-login-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 24px;
    color: #5f6873;
    font-size: 12px;
}

.lh-account-login-option label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.lh-account-login-option a {
    color: #5f6873;
}

.lh-pc-login-form button[type="submit"] {
    width: 100%;
    height: 44px;
    color: #fff;
    background: var(--lh-account-accent);
    border: 0;
    border-radius: 4px;
    font-weight: 800;
}

.lh-pc-login-form button[type="submit"]:hover,
.lh-pc-login-form button[type="submit"]:focus-visible {
    background: var(--lh-account-accent-dark);
}

.lh-pc-login-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 12px 14px;
    color: var(--lh-account-muted);
    border-top: 1px solid var(--lh-account-line);
    font-size: 12px;
}

.lh-pc-login-links a {
    color: var(--lh-account-accent-dark);
    font-weight: 800;
}

.lh-account-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
}

.lh-account-category-grid a {
    display: flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    color: #252a30;
    background: #fff;
    border: 1px solid #d7dce2;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    word-break: keep-all;
}

.lh-account-category-grid a:hover,
.lh-account-category-grid a:focus-visible,
.lh-account-category-grid a.is-active {
    color: #fff;
    background: var(--lh-account-accent);
    border-color: var(--lh-account-accent);
}

.lh-account-bottom-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 2px;
}

.lh-account-bottom-actions a {
    display: flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: #fff;
    background: #2f3338;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.lh-account-bottom-actions a:first-child {
    background: var(--lh-account-accent);
}

.lh-account-bottom-actions a:hover,
.lh-account-bottom-actions a:focus-visible {
    filter: brightness(0.94);
}

.lh-pc-menu-trigger {
    gap: 5px;
}

@media (max-width: 768px) {
    .lh-pc-account-panel {
        width: min(92vw, 360px);
    }

    .lh-pc-account-header {
        min-height: 58px;
        padding-left: 14px;
    }

    .lh-account-brand > strong {
        font-size: 16px;
    }

    .lh-pc-account-content {
        padding: 10px;
    }

    .lh-account-member-card,
    .lh-account-login-card,
    .lh-account-favorite-card,
    .lh-account-category-card {
        margin-bottom: 10px;
    }

    .lh-account-category-grid {
        gap: 7px;
        padding: 10px;
    }

    .lh-account-category-grid a {
        min-height: 40px;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .lh-account-profile,
    .lh-account-login-intro {
        padding: 14px 12px;
    }

    .lh-account-avatar {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 23px;
    }

    .lh-account-stats {
        gap: 6px;
        padding: 10px;
    }

    .lh-account-stats a {
        min-height: 62px;
    }
}

/* LINKHUB MOBILE LOGIN TOUCH FIX 20260806 */
.lh-pc-login-form {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.lh-pc-login-form button[type="submit"] {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* LINKHUB ACCOUNT FINAL BOTTOM LAYOUT 20260806 */

/* 링크등록/배너문의: 전체 폭 한 칸 */
.lh-account-inquiry-links {
    display: block;
    width: 100%;
    margin: 0;
    border-top: 1px solid var(--lh-account-line);
    border-bottom: 1px solid var(--lh-account-line);
    background: #fff;
}

.lh-account-inquiry-links a {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 0;
    color: var(--lh-account-text);
    background: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}

.lh-account-inquiry-links a:hover,
.lh-account-inquiry-links a:focus-visible {
    color: #fff;
    background: var(--lh-account-accent);
}

/* 공지사항·평생주소: 세로 전체 폭 두 칸 */
.lh-account-bottom-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 9px;
    width: 100%;
    margin: 16px 0 0;
    padding: 0;
}

.lh-account-bottom-actions a {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}

.lh-account-bottom-actions a:first-child {
    background: #2f3338;
}

.lh-account-bottom-actions a:nth-child(2) {
    background: var(--lh-account-accent);
}

.lh-account-bottom-actions a:hover,
.lh-account-bottom-actions a:focus-visible {
    color: #fff;
    filter: brightness(0.92);
}

/* 전체 방문자 */
.lh-account-visitor-total {
    display: flex;
    width: 100%;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 10px;
    padding: 14px 16px;
    border: 1px solid var(--lh-account-line);
    border-radius: 5px;
    background: #fff;
    box-sizing: border-box;
}

.lh-account-visitor-total span {
    color: #4b5563;
    font-size: 14px;
    font-weight: 700;
}

.lh-account-visitor-total strong {
    color: var(--lh-account-accent);
    font-size: 16px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .lh-account-inquiry-links a {
        min-height: 48px;
        font-size: 14px;
    }

    .lh-account-bottom-actions a {
        min-height: 48px;
        font-size: 14px;
    }

    .lh-account-visitor-total {
        min-height: 58px;
        padding: 13px 14px;
    }

    .lh-account-visitor-total span {
        font-size: 13px;
    }

    .lh-account-visitor-total strong {
        font-size: 15px;
    }
}

/* LINKHUB MEMBER REGISTER CONTAINER 20260806 */
.lh-main > .register {
    width: min(calc(100% - 32px), 1280px);
    margin: 32px auto 48px;
    box-sizing: border-box;
}

.lh-main > .register #fregister,
.lh-main > .register #fregisterform {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .lh-main > .register {
        width: min(calc(100% - 20px), 720px);
        margin-top: 18px;
        margin-bottom: 32px;
    }
}

/* LINKHUB FAVORITE SUMMARY AND PAGE 20260806 */

/* 마이메뉴 찜목록 요약 링크 */
.lh-account-favorite-link {
    display: flex;
    width: 100%;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 20px;
    border: 1px solid var(--lh-account-line);
    border-radius: 8px;
    background: #fff;
    color: var(--lh-account-text);
    text-decoration: none;
    box-sizing: border-box;
    transition:
        border-color 0.18s ease,
        background-color 0.18s ease;
}

.lh-account-favorite-link:hover,
.lh-account-favorite-link:focus-visible {
    border-color: #f43f5e;
    background: #fff7f8;
    color: var(--lh-account-text);
}

.lh-account-favorite-link-label,
.lh-account-favorite-link-count {
    display: inline-flex;
    align-items: center;
}

.lh-account-favorite-link-label {
    gap: 10px;
    min-width: 0;
    font-size: 16px;
}

.lh-account-favorite-link-label .fa {
    color: #f43f5e;
    font-size: 20px;
}

.lh-account-favorite-link-count {
    flex: 0 0 auto;
    gap: 10px;
    color: #f43f5e;
    font-size: 16px;
    font-weight: 800;
}

.lh-account-favorite-link-count .fa {
    color: #9ca3af;
}

/* 찜목록 전용 페이지 */
.lh-favorite-page {
    padding: 32px 0 56px;
}

.lh-favorite-page-panel {
    padding: 24px;
    border: 1px solid #e1e5ea;
    background: #fff;
    box-sizing: border-box;
}

.lh-favorite-page-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 2px solid #2563eb;
}

.lh-favorite-page-heading h1 {
    color: #111827;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
}

.lh-favorite-page-heading p {
    margin-top: 5px;
    color: #6b7280;
    font-size: 14px;
}

.lh-favorite-page-heading > strong {
    flex: 0 0 auto;
    color: #2563eb;
    font-size: 16px;
}

.lh-favorite-page-empty {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6b7280;
    text-align: center;
}

.lh-favorite-page-empty .fa {
    color: #f43f5e;
    font-size: 34px;
}

.lh-favorite-page-empty strong {
    color: #374151;
    font-size: 18px;
}

@media (max-width: 768px) {
    .lh-account-favorite-link {
        min-height: 64px;
        padding: 0 16px;
    }

    .lh-favorite-page {
        padding: 18px 0 34px;
    }

    .lh-favorite-page-panel {
        padding: 16px;
    }

    .lh-favorite-page-heading {
        align-items: flex-start;
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .lh-favorite-page-heading h1 {
        font-size: 22px;
    }

    .lh-favorite-page-heading p {
        font-size: 13px;
    }

    .lh-favorite-page-heading > strong {
        font-size: 14px;
    }
}

/* LINKHUB_FAVORITE_PAGE_REMOVE_STYLE_20260806 */
.lh-favorite-page .lh-company-grid-item {
    position: relative;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.lh-favorite-page .lh-company-grid-item.is-removing {
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
}

.lh-favorite-page-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 6;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
    border: 1px solid #f4b400;
    border-radius: 18px;
    background: #fff8d6;
    color: #9a6700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.lh-favorite-page-remove .fa {
    color: #f4b400;
    font-size: 16px;
}

.lh-favorite-page-remove:hover,
.lh-favorite-page-remove:focus-visible {
    border-color: #ef4444;
    background: #fff;
    color: #dc2626;
}

.lh-favorite-page-remove:hover .fa,
.lh-favorite-page-remove:focus-visible .fa {
    color: #ef4444;
}

.lh-favorite-page-remove.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

@media (max-width: 768px) {
    .lh-favorite-page-remove {
        top: 6px;
        right: 6px;
        min-height: 30px;
        padding: 0 8px;
        font-size: 11px;
    }

    .lh-favorite-page-remove .fa {
        font-size: 14px;
    }
}

/* LINKHUB MOBILE ACCOUNT BUTTON RIGHT 20260806 */
@media (max-width: 768px) {
    .lh-mobile-menu-toggle {
        left: auto;
        right: 0;
    }
}

/* LINKHUB RANK TYPOGRAPHY 20260806 START */

/* PC 카테고리 제목: 기존 상태 유지 */
.lh-rank-card-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
}

/* 업체명: 기존 상태 유지 */
.lh-rank-site-name {
    font-size: 14px;
}

@media (max-width: 768px) {
    /* 모바일에서만 1px 확대하고 한 단계 굵게 */
    .lh-rank-card-title {
        font-size: 15px;
        font-weight: 700;
    }

    .lh-rank-site-name {
        font-size: 13px;
    }
}

/* LINKHUB RANK TYPOGRAPHY 20260806 END */

/* LINKHUB MOBILE BANNER FULL WIDTH 20260806 START */

@media (max-width: 768px) {
    /* 모바일에서 배너 영역만 화면 좌우 끝까지 확장 */
    .lh-banner-section > .lh-container {
        width: 100%;
        max-width: none;
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
    }

    /* 제목은 기존처럼 좌우 여백 유지 */
    .lh-banner-section .lh-section-heading {
        padding-right: 16px;
        padding-left: 16px;
    }

    .lh-banner-section .lh-banner-grid {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

/* LINKHUB MOBILE BANNER FULL WIDTH 20260806 END */

/* LINKHUB UTILITY RIGHT ONLY 20260806 START */

/* 공식 채널·즐겨찾기 삭제 후 회원 메뉴 우측 정렬 */
.lh-utility-inner {
    justify-content: flex-end;
}

.lh-utility-right {
    margin-left: auto;
}

/* LINKHUB UTILITY RIGHT ONLY 20260806 END */

/* LINKHUB PC LOGO + SEARCH ROW 20260807 */
@media (min-width: 769px) {
    .lh-main-header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

    .lh-logo {
        width: auto;
        flex: 0 0 auto;
        text-align: left;
    }

    .lh-search {
        width: min(100%, 560px);
        margin: 0;
    }
}

/* LINKHUB PC HEADER ROW FIX 20260807 */
@media (min-width: 769px) {
    .lh-main-header-inner {
        flex-wrap: wrap;
    }

    .lh-search {
        flex: 0 1 560px;
        min-width: 0;
    }

    .lh-portal-links {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* LINKHUB PC PORTAL 9 COLUMN 20260807 */
@media (min-width: 769px) {
    .lh-portal-links {
        display: block;
        padding: 8px 10px;
    }

    .lh-portal-buttons {
        display: grid;
        grid-template-columns: repeat(9, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        margin: 0;
    }

    .lh-portal-buttons a {
        width: 100%;
        min-width: 0;
        justify-content: center;
        text-align: center;
    }
}

/* LINKHUB MOBILE HOME UTILITY HIDE 20260807 */
@media (max-width: 768px) {
    .lh-home-utility {
        display: none;
    }
}


/* LINKHUB MOBILE PORTAL ONE ROW 20260807 */
@media (max-width: 768px) {
    .lh-portal-buttons {
        display: grid;
        grid-template-columns: repeat(9, minmax(0, 1fr));
        gap: 2px;
        width: 100%;
        margin: 0;
        overflow: hidden;
    }

    .lh-portal-links a {
        width: 100%;
        min-width: 0;
        min-height: 28px;
        padding: 0 1px;
        font-size: 8px;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }
}

/* LINKHUB PC PORTAL COMPACT HEIGHT 20260807 */
@media (min-width: 769px) {
    .lh-portal-links {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .lh-portal-links a {
        min-height: 34px;
    }
}

/* LINKHUB BANNER SECTION TOP GAP COMPACT 20260807 */
@media (min-width: 769px) {
    .lh-banner-section {
        padding-top: 16px;
    }
}

@media (max-width: 768px) {
    .lh-banner-section {
        padding-top: 12px;
    }
}

/* LINKHUB MOBILE RANK TOP GAP COMPACT 20260807 */
@media (max-width: 768px) {
    .lh-rank-section {
        padding-top: 8px;
    }
}

/* LINKHUB MAIN SECTION EXTERNAL GAP REMOVE 20260807 */
.lh-banner-section,
.lh-rank-section {
    margin-top: 0;
}

/* LINKHUB MOBILE HOME HEADER BOTTOM GAP REMOVE 20260808 */
@media (max-width: 768px) {
    .lh-home-main-header .lh-main-header-inner {
        padding-bottom: 0;
    }
}

/* LINKHUB PC HOME HEADER BOTTOM GAP REMOVE 20260808 */
@media (min-width: 769px) {
    .lh-home-main-header .lh-main-header-inner {
        padding-bottom: 0;
    }
}
