/* Public Insights/blog experience: index cards, pagination, article page furniture.
   Deliberately reuses the portfolio's existing visual language (colors, spacing, fonts)
   rather than introducing a separate blog theme. */

.insights-card-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.insights-card-meta {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0;
}

.insights-article-meta {
    font-size: 15px;
    opacity: 0.85;
}

.insights-article-image {
    margin-bottom: 40px;
}

.insights-article-image img {
    width: 100%;
    border-radius: 12px;
}

.insights-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0;
}

.insights-tag-chip {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid currentColor;
    font-size: 13px;
    opacity: 0.8;
    text-decoration: none;
}

.insights-tag-chip:hover {
    opacity: 1;
}

.insights-linkedin-note {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 32px;
}

.insights-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin: 40px 0;
}

.insights-author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.insights-author-name {
    margin-bottom: 6px;
}

.insights-author-bio {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.85;
}

.insights-related-area {
    margin: 48px 0;
}

.insights-related-heading {
    margin-bottom: 24px;
}

.insights-article-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

/* Pagination */
.insights-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-link {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    text-decoration: none;
}

.pagination-link.active {
    font-weight: 700;
    border-color: currentColor;
}

.pagination-link.disabled {
    opacity: 0.4;
    pointer-events: none;
}
