/* info_share 목록 — 갤러리 카드 (유튜브 썸네일) */
#bo_list.info-share-gallery {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 20px;
    box-sizing: border-box;
}

.info-share-gallery__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin-bottom: 14px;
    flex-wrap: nowrap;
    box-sizing: border-box;
}

.info-share-gallery__toolbar .btn_bo_user {
    float: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;
}

.info-share-gallery__toolbar .btn_bo_user > li {
    float: none;
    width: 40px;
    margin-left: 5px;
    text-align: center;
    background: #fff;
}

.info-share-gallery__total {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.4;
}

.info-share-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-share-gallery__card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    min-width: 0;
}

.info-share-gallery__card.is-notice {
    grid-column: 1 / -1;
}

.info-share-gallery__chk {
    position: absolute;
    top: 8px;
    left: 6px;
    z-index: 2;
}

.info-share-gallery__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.4;
    color: #9ca3af;
}

.info-share-gallery__date,
.info-share-gallery__hit {
    margin: 0;
    white-space: nowrap;
}

.info-share-gallery__allchk {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.info-share-gallery__thumb-link {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
    background: #f3f4f6;
    text-decoration: none;
}

.info-share-gallery__thumb {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate(-50%, -50%);
    transform-origin: center center;
}

/* 첨부 가로 이미지 — 가장자리 1px 틈 방지 */
.info-share-gallery__thumb.is-horizontal:not([data-is-youtube="1"]) {
    transform: translate(-50%, -50%) scale(1.01);
}

/* 첨부 세로 이미지 */
.info-share-gallery__thumb.is-vertical:not([data-is-youtube="1"]) {
    transform: translate(-50%, -50%) scale(1.35);
}

/*
 * 유튜브 썸네일 확대 배율
 * - 가로형(16:9) → scale(1.01) 끝 검정선(서브픽셀 틈) 방지
 * - 세로형(Shorts) / 비율 안맞음(h-crop) → scale(1.2)
 */
.info-share-gallery__thumb.is-horizontal[data-is-youtube="1"] {
    transform: translate(-50%, -50%) scale(1.01);
}

.info-share-gallery__thumb.is-vertical[data-is-youtube="1"],
.info-share-gallery__thumb.is-crop[data-is-youtube="1"] {
    transform: translate(-50%, -50%) scale(1.19);
}

.info-share-gallery__thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(160deg, #f3f4f6 0%, #e5e7eb 100%);
}

.info-share-gallery__body {
    padding: 10px 2px 4px;
}

.info-share-gallery__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.info-share-gallery__title a {
    color: inherit;
    text-decoration: none;
}

.info-share-gallery__title a:hover {
    text-decoration: underline;
}

.info-share-gallery__foot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

.info-share-gallery__foot-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.info-share-gallery__foot-item i {
    font-size: 15px;
}

.info-share-gallery__badge {
    display: inline-block;
    margin-right: 4px;
    padding: 2px 6px;
    border-radius: 4px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 14px;
    font-weight: 700;
    vertical-align: middle;
}

.info-share-gallery__badge--notice {
    background: #fff6fa;
    color: #f9267f;
}

.info-share-gallery__new {
    display: inline-block;
    margin-left: 4px;
    color: #ef4444;
    font-size: 14px;
    font-weight: 800;
    vertical-align: middle;
}

.info-share-gallery__empty {
    grid-column: 1 / -1;
    padding: 48px 16px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    background: #f9fafb;
    border-radius: 8px;
}

@media (max-width: 450px) {
    .info-share-gallery__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .info-share-gallery__title {
        font-size: 14px;
    }
}
