/* ==========================================================================
   AI企業ページ — 提供AI（Accordion-like）
   ========================================================================== */

.aind-ptools {
    margin: 56px 0 40px;
}

.aind-ptools__label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--brand, #3b82f6);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin: 0 0 8px;
}

.aind-ptools__title {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--c-navy, #0a1628) !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    line-height: 1.4 !important;
}

/* ── List ── */
.aind-ptools__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ── Card ── */
.aind-ptools__card {
    display: block;
    background: #fff;
    border: 1px solid var(--c-border, #e2e8f0);
    border-radius: 12px;
    padding: 20px 22px;
    text-decoration: none;
    color: inherit;
    transition: border-color .25s, box-shadow .25s;
}

.aind-ptools__card:hover {
    border-color: var(--brand, #3b82f6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
    color: inherit;
}

/* Head layout */
.aind-ptools__head {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Icon */
.aind-ptools__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--c-bg, #f8fafc);
    border: 1px solid var(--c-border, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aind-ptools__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Body */
.aind-ptools__body {
    flex: 1;
    min-width: 0;
}

.aind-ptools__name {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text, #1e293b);
    margin: 0 0 2px;
    border: none;
    background: none;
    padding: 0;
    line-height: 1.3;
}

.aind-ptools__desc {
    font-size: 12px;
    color: var(--c-sub, #475569);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category tags */
.aind-ptools__cats {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.aind-ptools__cat {
    font-size: 10px;
    font-weight: 600;
    color: var(--brand, #3b82f6);
    background: color-mix(in srgb, var(--brand, #3b82f6) 8%, transparent);
    border-radius: 4px;
    padding: 2px 8px;
    white-space: nowrap;
}

/* Toggle circle */
.aind-ptools__toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--c-bg, #f8fafc);
    border: 1px solid var(--c-border, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-muted, #94a3b8);
    transition: all .25s;
}

.aind-ptools__card:hover .aind-ptools__toggle {
    background: var(--brand, #3b82f6);
    border-color: var(--brand, #3b82f6);
    color: #fff;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .aind-ptools {
        margin: 40px 0 32px;
    }

    .aind-ptools__title {
        font-size: 19px !important;
    }

    .aind-ptools__head {
        gap: 12px;
    }

    .aind-ptools__cats {
        display: none;
    }

    .aind-ptools__card {
        padding: 16px 18px;
    }
}
