/**
 * Tatsujin Blog Card – Front-end & Editor Styles
 * Pattern B: アクセントボーダー（左赤ライン）
 * テーマの CSS 変数 (--panel, --line, --brand, --ink 等) を使用
 */

/* ─── カード共通 ───────────────────────────── */
.tbc-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line, #e9edf5);
    border-left: 4px solid var(--brand, #f93800);
    border-radius: 14px;
    background: var(--panel, #ffffff);
    color: var(--ink, #111319);
    text-decoration: none;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
    margin: 20px 0;
    max-width: 100%;
}

.tbc-card:hover {
    box-shadow: 0 6px 24px rgba(249, 56, 0, 0.12);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--ink, #111319);
}

/* ─── サムネイル ─────────────────────────── */
.tbc-thumb {
    flex-shrink: 0;
    width: 140px;
    min-height: 100px;
    overflow: hidden;
}

.tbc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    margin: 0;
}

/* ─── テキストエリア ─────────────────────── */
.tbc-body {
    flex: 1;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

/* カテゴリバッジ */
.tbc-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--brand, #f93800);
    border: 1px solid var(--brand, #f93800);
    border-radius: 999px;
    padding: 1px 8px;
    width: fit-content;
    line-height: 1.6;
}

/* タイトル */
.tbc-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--ink, #111319);
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 説明文 */
.tbc-desc {
    font-size: 12px;
    color: var(--ink-dim, #344159);
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ドメイン/ファビコン行 */
.tbc-domain {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--muted, #8a94a6);
    margin: 4px 0 0;
}

.tbc-favicon {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    display: inline-block;
}

.tbc-external-badge {
    font-size: 11px;
    opacity: 0.6;
}

/* ─── 空の状態 ──────────────────────────── */
.tbc-empty {
    border-left-color: var(--muted, #8a94a6);
    padding: 12px 16px;
    color: var(--muted, #8a94a6);
    font-size: 14px;
}

/* ─── エディター用プレースホルダー ─────── */
.tbc-placeholder .components-placeholder__label {
    font-size: 16px;
}

.tbc-insert-form {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    width: 100%;
    max-width: 520px;
}

.tbc-url-input {
    flex: 1;
}

/* ─── スマホ対応 ──────────────────────── */
@media (max-width: 600px) {
    .tbc-card {
        flex-direction: column;
    }

    .tbc-thumb {
        width: 100%;
        height: 160px;
    }

    .tbc-body {
        padding: 12px;
    }
}