/* AI Summary Widget Styles */
.ai-summary-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 10px 0;
    padding: 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #f8faff 100%);
    border: 1px solid #dbeafe;
    border-radius: 16px;
}

/* Left side: icon + text */
.ai-summary-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-summary-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.ai-summary-icon-circle svg {
    width: 24px;
    height: 24px;
}

.ai-summary-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ai-summary-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
}

.ai-summary-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* Right side: button */
.ai-summary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    background: #fff;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.ai-summary-btn:hover {
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.ai-summary-btn:active {
    transform: scale(0.97);
}

.ai-btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ai-summary-widget {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 16px;
    }

    .ai-summary-info {
        align-self: flex-start;
    }

    .ai-summary-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

/* Reading time */
.reading-time {
    text-transform: lowercase;
}
