/* css/hunter/lore.css */

/* =========================
   Hunter Lore
========================= */

.hunter-lore-card {
    margin: 14px 0 18px;
    padding: 0;

    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, .16), transparent 34%),
        linear-gradient(180deg, #fff7ed, #ffffff);

    border: 2px solid #f3d58b;

    color: #78350f;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .9),
        0 3px 0 #d6a94f,
        0 8px 18px rgba(15, 23, 42, .08);
}

.hunter-lore-card summary {
    cursor: pointer;

    padding: 13px 15px;

    color: #92400e;
    font-size: 14px;
    font-weight: 900;

    list-style: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hunter-lore-card summary::-webkit-details-marker {
    display: none;
}

.hunter-lore-card summary::after {
    content: "展開";

    padding: 2px 8px;
    border-radius: 999px;

    background: #fef3c7;
    color: #92400e;

    font-size: 11px;
    font-weight: 900;

    flex: 0 0 auto;
}

.hunter-lore-card summary:focus {
    outline: none;
}

.hunter-lore-card summary:focus-visible {
    outline: 3px solid rgba(245, 158, 11, .35);
    outline-offset: -3px;
}

.hunter-lore-card[open] summary::after {
    content: "收合";
}

.hunter-lore-content {
    padding: 0 15px 14px;
}

.hunter-lore-content p {
    max-width: none;
    width: 100%;

    margin: 0 0 10px;

    color: #78350f;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
}

.hunter-lore-content p:last-child {
    margin-bottom: 0;
}