/**
 * Ocasta AI Chat Links — Blog "Summarise with" Strip
 *
 * Compact inline layout that sits at the top of blog posts.
 * Follows the reference pattern: label + row of pill-shaped links.
 */

.ocasta-ai-summarise {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 0;
}

/* ---------------------------------------------------------------
   Label
--------------------------------------------------------------- */
.ocasta-ai-summarise__label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4b5563;
    white-space: nowrap;
}

/* ---------------------------------------------------------------
   Individual link pill
--------------------------------------------------------------- */
.ocasta-ai-summarise__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    line-height: 1;
    transition: border-color 0.15s ease,
                box-shadow 0.15s ease;
    white-space: nowrap;
}

.ocasta-ai-summarise__link:hover,
.ocasta-ai-summarise__link:focus-visible {
    border-color: #9ca3af;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    outline: none;
    text-decoration: none;
    color: #1f2937;
}

.ocasta-ai-summarise__link:active {
    box-shadow: none;
}

/* ---------------------------------------------------------------
   Favicon inside link
--------------------------------------------------------------- */
.ocasta-ai-summarise__link img {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ---------------------------------------------------------------
   Responsive
--------------------------------------------------------------- */
@media (max-width: 480px) {
    .ocasta-ai-summarise {
        gap: 6px;
    }

    .ocasta-ai-summarise__link {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}
