/* static/personal_tools/css/hokuou_shinwa_zukan.css */
/* 北欧神話図鑑ツール専用のスタイル(他ツールとは共用しない)。 */

/* ---------- トップページ: 入り口(神々/怪物/家系図/ラグナロク) ---------- */
.pt-hs-entry-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0 1.5rem;
}

/* ---------- 一覧ページ: 神・怪物のカードグリッド ---------- */
.pt-hs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0 1.5rem;
}

.pt-hs-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    padding: 1rem 0.6rem;
    border: 0.0625rem solid #cfe0e8;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, #f4fbfd 0%, #e6f3f7 100%);
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.pt-hs-card:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
    border-color: #8fb9c9;
}

.pt-hs-card__icon {
    font-size: 2rem;
    line-height: 1;
}

.pt-hs-card__name {
    font-weight: 700;
    font-size: 1rem;
    color: #223a45;
}

.pt-hs-card__role {
    font-size: 0.78rem;
    color: #4e6b78;
    line-height: 1.5;
}

/* ---------- 詳細ページ ---------- */
.pt-hs-detail-role {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

.pt-hs-episodes {
    padding-left: 1.25rem;
}

.pt-hs-episodes li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

/* ---------- 9つの世界 ---------- */
.pt-hs-worlds {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0 1.5rem;
}

.pt-hs-world-card {
    padding: 0.85rem 1rem;
    border: 0.0625rem solid #cfe0e8;
    border-radius: 0.75rem;
    background: #f4fbfd;
}

.pt-hs-world-card__name {
    display: block;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #223a45;
}

.pt-hs-world-card__desc {
    font-size: 0.82rem;
    color: #4e6b78;
    line-height: 1.6;
}

/* ---------- 家系図: 縦に伸びるアウトライン(箇条書き)型ツリー ---------- */
.pt-hs-tree {
    padding: 1rem 0 1.5rem;
}

.pt-hs-tree-root {
    margin-bottom: 1rem;
}

.pt-hs-node__box {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    column-gap: 0.5rem;
    padding: 0.3rem 0.75rem;
    border: 0.0625rem solid #8fb9c9;
    border-radius: 62.5rem;
    background: #f4fbfd;
}

.pt-hs-node__icon {
    font-size: 0.95rem;
    line-height: 1;
}

.pt-hs-node__name {
    font-weight: 700;
    font-size: 0.92rem;
    color: #223a45;
}

.pt-hs-node__name--link {
    color: var(--pt-blue);
    text-decoration: none;
}

.pt-hs-node__name--link:hover {
    text-decoration: underline;
}

.pt-hs-node__note {
    font-size: 0.75rem;
    color: #5c7986;
}

.pt-hs-node__children {
    list-style: none;
    margin: 0.4rem 0 0;
    padding: 0 0 0 1.1rem;
    border-left: 0.0625rem solid #8fb9c9;
}

.pt-hs-node__children > li {
    position: relative;
    padding: 0.4rem 0 0.4rem 0.9rem;
}

.pt-hs-node__children > li::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 0;
    width: 0.75rem;
    height: 0.0625rem;
    background: #8fb9c9;
}

/* ---------- ラグナロクページ ---------- */
.pt-hs-battle-list {
    display: grid;
    gap: 0.6rem;
    margin: 1rem 0 1.5rem;
}

.pt-hs-battle-card {
    padding: 0.75rem 1rem;
    border: 0.0625rem solid #cfe0e8;
    border-radius: 0.75rem;
    background: #f4fbfd;
}

.pt-hs-battle-card__title {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #223a45;
}
